deepgram-python-management-api
Installation
SKILL.md
Using Deepgram Management API (Python SDK)
Administrative REST endpoints at api.deepgram.com/v1/projects, /v1/models, and reusable agent configuration storage. Project-scoped resources live under client.manage.v1.projects.* (keys, members, members.invites, usage, billing, models, requests). Global models at client.manage.v1.models. Think-model discovery at client.agent.v1.settings.think.models. Reusable agent configs at client.voice_agent.configurations.*.
When to use this product
- Discover / pin models:
client.manage.v1.models.list()returns the active STT/TTS set. - Project admin: list/get/update/delete/leave projects.
- API key lifecycle: list/create/delete project keys.
- Member + invite management: add/remove members, manage roles, send/revoke invites.
- Usage + billing: query request volume, balances.
- Reusable Voice Agent configs: persist the
agentblock of a Settings message on the server, reference byagent_id. The stored blob is theagentobject only (listen / think / speak providers + prompt), not the fullAgentV1Settings.
Use a different skill when:
- You want to actually talk to an agent →
deepgram-python-voice-agent. - You want to transcribe or synthesize → STT/TTS skills.