Add dTelecom action provider for decentralized voice services#982
Open
fffilimonov wants to merge 1 commit intocoinbase:mainfrom
Open
Add dTelecom action provider for decentralized voice services#982fffilimonov wants to merge 1 commit intocoinbase:mainfrom
fffilimonov wants to merge 1 commit intocoinbase:mainfrom
Conversation
- New dTelecom action provider with 12 actions for decentralized voice services (WebRTC, STT, TTS) using x402 micropayments - Voice agent example using AgentKit + dTelecom agents-js - Protocol logo added to root README Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
🟡 Heimdall Review Status
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a new dTelecom action provider for decentralized real-time voice infrastructure (WebRTC, speech-to-text, text-to-speech) with x402 micropayments, plus a complete voice agent example.
dTelecom provides decentralized WebRTC infrastructure — SFU routing, STT, and TTS — paid per-use with USDC via the x402 payment protocol. This provider lets AI agents create voice sessions, manage credits, and build real-time voice applications.
Action Provider — 12 actions
buy_creditsget_accountget_transactionsget_sessionscreate_agent_sessionextend_agent_sessioncreate_webrtc_tokenextend_webrtc_tokencreate_stt_sessionextend_stt_sessioncreate_tts_sessionextend_tts_sessionVoice Agent Example
Standalone example (
typescript/examples/dtelecom-voice-agent/):localhost:3000for real-time voice conversationFiles Changed
typescript/agentkit/src/action-providers/dtelecom/— provider, schemas, tests, README (5 files)typescript/agentkit/src/action-providers/index.ts— barrel exporttypescript/agentkit/package.json— added@dtelecom/x402-clientdependencytypescript/examples/dtelecom-voice-agent/— example (6 files)README.md— protocol logoassets/protocols/dtelecom.svg— logotypescript/.changeset/dtelecom-voice-provider.md— changesetTests
Unit tests: 16 tests covering all 12 actions, network support, and error propagation.
End-to-end voice conversation worked with ~2s latency (STT → LLM → TTS).
Checklist