Abhishek Kumar
fe90b30427
chore: run formatter
2026-06-03 17:25:45 +05:30
developer603
acc2ef9e96
fix: make email lookup case-insensitive in get_user_by_email ( #397 )
...
* fix: make email lookup case-insensitive in get_user_by_email
Email addresses are case-insensitive in practice, but get_user_by_email
compared with an exact `UserModel.email == email` predicate. A user who
signed up as "User@example.com" could not be found when logging in as
"user@example.com" (and vice-versa), so the same person could fail to log
in — or be treated as a brand-new account — depending only on how their
client capitalized the address.
Compare on `func.lower(UserModel.email) == func.lower(email)` so lookups
are robust to capitalization. Minimal and backwards-compatible: it works
with existing mixed-case rows immediately, with no migration required.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* fix: enforce case-insensitive user emails
---------
Co-authored-by: developer603 <vrramsolutions@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Abhishek Kumar <abhishek@a6k.me>
2026-06-02 13:43:20 +05:30
Abhishek Kumar
ad2fa07058
feat: add google stt and tts. add folders to organize agents
2026-05-22 14:36:50 +05:30
Abhishek
d97d1d72cd
feat: add chat based testing for voice agent ( #308 )
...
* feat: add backend foundations
* feat: add text chat UI
* chore: simplify the reload behaviour
* fix: fix upgrade banner to be triggered after package upload
* feat: simplify TesterPanel design
* chore: fix formatting and generate client
* chore: fix tracing for text chat mode
* fix: fix revert and edit CTA
* refactor: refactor TesterPanel into smaller components
* feat: enable runtime transition of nodes
* fix: fix review comments
2026-05-21 15:20:02 +05:30
Abhishek
151bf77e40
feat: add agent skills to review PR ( #320 )
2026-05-19 17:02:26 +05:30
Paulo Busato Favarato
75839f9de5
feat(mcp): generic MCP tool source with per-node function filtering ( #301 )
...
* feat(mcp): generic MCP tool source with per-node function filtering
Adds a Model Context Protocol tool category: connect a customer MCP
server and expose its tools to the agent, with optional per-node
allow-listing of individual MCP functions.
- ToolCategory.MCP enum + alembic migration
- MCP definition validator and collision-safe function-name namespacing
- McpToolSession wrapper: graceful-degrade, per-call open/close lifecycle
- CustomToolManager MCP branch (schemas + proxy handlers)
- Per-node mcp_tool_filters threaded through DTO/graph/engine
- Best-effort discovered_tools catalog cache + POST /tools/{uuid}/mcp/refresh
- UI: MCP create/edit config, tabbed ToolSelector with per-node toggles
* feat: refactor for code standardisation and documentation
---------
Co-authored-by: Abhishek Kumar <abhishek@a6k.me>
2026-05-19 16:10:00 +05:30
Abhishek
45b00cd5d0
chore: remove looptalk ( #299 )
...
* chore: remove looptalk
Remove looptalk in the current version. We will be rethinking looptalk in a fresh way.
* chore: formatting fix
2026-05-16 17:45:12 +05:30
Abhishek
d4b6afb020
feat: add logs in campaigns for failure or pausing ( #265 )
...
* feat: add logs in campaigns on failure
* chore: bump pipecat
* chore: update format.sh
* chore: fix github workflow
* fix: fix formatting errors
2026-05-05 19:23:50 +05:30
Abhishek
0e12c41fc7
chore: bump pipecat version and fix tests ( #263 )
...
* chore: bump pipecat version and fix tests
* chore: add github workflow to run tests
* fix: install reqirements.dev.txt in test script
* fix: fix api-test action
* feat: add integration test
* test: add integration tests
* test: add test for function call mute strategy
2026-05-04 21:35:37 +05:30
Abhishek
e16f6438bd
feat: refactor telephony to support multiple telephony configurations ( #251 )
...
Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
2026-04-29 11:39:57 +05:30
Abhishek Kumar
2f860e7f6d
Merge branch 'main' of https://github.com/dograh-hq/dograh
2026-04-25 20:43:41 +05:30
dilipevents2007-cpu
2218ba8ad9
feat: add Plivo telephony provider support ( #245 )
...
* Add Plivo telephony provider support
* add Plivo telephony UI, fix audio config, and improve inbound call handling
---------
Co-authored-by: Dilip Tiwari <digitalapache20@gmail.com>
Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
Co-authored-by: Abhishek <abhishek@a6k.me>
2026-04-25 20:41:46 +05:30
Abhishek Kumar
a1d4a1fab2
fix: make trigger paths globally unique
2026-04-25 19:44:44 +05:30
Abhishek Kumar
74dbafb055
feat: allow recordings in tool transitions
2026-04-10 16:18:01 +05:30
Abhishek Kumar
65c76ca7ff
feat: allow uploading recording as part of node transition
2026-04-10 11:54:00 +05:30
Abhishek Kumar
87c8c5e2c8
feat: add full document mode in knowledge base
2026-04-09 13:49:20 +05:30
Abhishek
38d1d928b7
feat: agent versioning and model configurations override ( #227 )
...
* feat: add tests and migrations
* feat: workflow versioning among published and draft
* feat: add a new settings page to simplify workflow detail page
* fix: fix tsclient generation
2026-04-08 19:20:31 +05:30
Abhishek Kumar
f368fe5134
feat: set calculator as custom tool on demand
2026-04-02 14:07:03 +05:30
Sabiha Khan
5b820cb0ba
feat: integrate Telnyx telephony for outbound and inbound calling ( #206 )
...
* feat: integrate Telnyx telephony for outbound and inbound calling
* chore: remove redundant code
---------
Co-authored-by: Abhishek <abhishek@a6k.me>
2026-03-25 18:01:41 +05:30
Abhishek
494c60d774
feat: add hybrid text + recording functionality in agents ( #191 )
...
* feat: add recording feature in agents
* chore: pin pipecat version
* feat: show usage in UI
* chore: update pipecat
2026-03-16 15:04:08 +05:30
Abhishek
642cc34e8c
feat: add authentication for OSS ( #167 )
...
* feat: add authentication for OSS
Fixes #157 and #156
* fix: fix token generation
* fix: limit fastapi workers to 1
2026-02-20 18:21:24 +05:30
Abhishek
7552b6c819
feat: add asterisk ARI websocket interface ( #159 )
...
* chore: remove old files
* feat: ari outbound dialing
* feat: add websocket configuration for ARI
* feat: handling inbound calls
* delete ext channel from redis on stasis end
* fix: add lock in workflow run update, refactor _handle_stasis_start
* chore: update submodule
---------
Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
2026-02-17 19:32:03 +05:30
Sabiha Khan
c711920165
feat: telephony call transfer ( #155 )
...
* transfer call
* fix: ignore completed call status
* chore: refactor telephony
* chore: refactor pipecat engine custom tools and other telephony services
* chore: code refactor
* chore: put back office ambient sound files
* chore: remove transport from engine
* fix: fix alembic revision
* chore: remove set_transferring_call from engine
* fix: send OutputAudio frame and let transport chunk it
* fix: reinstate docker compose
* chore: remove unused transfer-twmil route for caller
* chore: update pipecat submodule
---------
Co-authored-by: Abhishek Kumar <abhishek@a6k.me>
2026-02-16 14:33:33 +05:30
Abhishek
6827744327
fix: make campaign process batch thread safe ( #141 )
...
* fix: dont schedule new batch on resume
* fix: make process_batch thread safe
2026-01-30 14:48:00 +05:30
Abhishek Kumar
e9c5da16c5
fix: add error in cloudonix cdr report
2026-01-29 20:43:53 +05:30
Abhishek
b1c982a52e
fix: add cloudonix CDR handling ( #140 )
...
* feat: add cloudonix cdr
* fix: remove org check
---------
Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
2026-01-29 19:06:52 +05:30
Sabiha Khan
2aedb839ff
fix: remove duplicate index addition in migration ( #129 )
2026-01-26 15:04:24 +05:30
Abhishek
911c5ed416
fix: changes to update pipecat version to 0.0.100 ( #122 )
...
* feat: add stt evals
* add smart turn as provider
* chore: remove deprecations
* chore: format files
* fix: remove deprecated UserIdleProcessor
* fix: remove deprecated TranscriptProcessor
* chore: update pipecat submodule
* feat: add evals visualisation
* fix: trigger llm generation on client connected and pipeline started
* chore: update pipecat
* chore: update pipecat submodule
* Add tests
* fix: slow loading of workflow page
* chore: update pipecat submodule
* Show version after release
* Fixes #99
* fix: provider check for websocket connection
* Fixes #107
* Fix #96
* chore: fix documentation
* fix: cloudonix campaign call error
---------
Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
2026-01-23 18:53:59 +05:30
Abhishek
ef5b9e40a9
feat: knowledge base functionality for the voice agent ( #120 )
...
* feat: upload file and store embedding
* feat: add documents in nodes
* feat: add openai embedding service
2026-01-17 14:37:03 +05:30
Abhishek
a172db8022
feat: add end_call tool ( #118 )
...
* feat: add end_call tool
* chore: remove run_llm=True from properties
2026-01-14 16:40:40 +05:30
Sabiha Khan
97fbd9b37b
Feat/inbound telephony ( #113 )
...
* feat: inbound telephony (twilio & vobiz)
* chore: add ruff and lint formatting
* fix: add missing cloudonix interface compliance implementation
2026-01-12 10:10:30 +05:30
Abhishek Kumar
05ead4dc86
feat: enable api key access to routes
2026-01-05 19:41:38 +05:30
Abhishek Kumar
9adc766f3c
fix: fix migration version
2026-01-03 18:09:03 +05:30
Nir Simionovich
90b690efff
feat: add cloudonix outbound telephony ( #101 )
...
Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
2026-01-03 12:02:21 +05:30
Abhishek
3e55af9256
feat: user defined custom tools as part of workflow execution ( #94 )
...
* feat: add custom tools functionality
* Show tools in nodes
* integrate tool calling with pipeline engine
2026-01-02 13:11:02 +05:30
Abhishek
55b727a872
Feat/Add API Trigger and Webhooks in Agent Builder ( #83 )
...
* feat: add api trigger node for agent runs
* feat: add webhook node
* Execute webhook nodes post workflow run
* Add hint to go to API keys
2025-12-22 14:08:30 +05:30
Sabiha Khan
c99bd29ef1
fix: call_id and stream_id for vobiz pipeline, add workflow run state ( #78 )
...
* fix: add workflow run state for pipeline
* fix: call and stream id for vobiz pipeline
2025-12-11 17:12:28 +07:00
Abhishek
a7f2238044
feat: Update Dograh's UI Design ( #67 )
...
* feat: create app sidebar and update layout
* fix: fix loading errors
* fix: fix stack auth hydration issue
* fix: fix design for create-workflow
* fix: fix service configuration page design
* Add header for workflow detail
* feat: fix workflow editor design
* Fix css classes
* Fix callback status parsing for Vobiz
* Fix filter and remove gender service
2025-11-29 15:39:57 +05:30
Piyush Sahoo
09897cb5d8
feat: added vobiz telephony ( #65 )
...
* feat: added vobiz telephony
* chore: run formatter
* chore: add migration
* Add tsclient
---------
Co-authored-by: Abhishek Kumar <abhishek@a6k.me>
2025-11-28 09:36:04 +05:30
Abhishek
99a768f291
feat: enable workflows to be embedded in websites as a script tag ( #47 )
...
* feat: add deployment configuration options
* Simplify EmbedDialog
* Add options for inline vs floating embedding of agent
2025-11-15 17:32:37 +05:30
Sabiha Khan
d58f37ff42
fix: telephony bugs and improve code structure ( #38 )
...
- improved code structure for touch points
- corrected db migrations
2025-11-04 18:12:06 +05:30
Sabiha Khan
4cfdc3d420
feat: add vonage telephony ( #35 )
...
* refactor: telephony integration
* feat: add vonage telephony
2025-10-27 15:58:20 +05:30
Abhishek Kumar
4f2a629340
Initial Commit 🚀 🚀
2025-09-09 14:37:32 +05:30