telnyx-ai-assistants-c…
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
Collect DTMF input and speech from callers using standard gather or AI-powered gather. Build interactive voice menus and AI voice assistants. This skill provides Go SDK examples.
$ npx -y skills add team-telnyx/ai --skill telnyx-voice-gather-go --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/telnyx-voice-gather-goContext preview
The summary Claude sees to decide when to auto-load this skill.
Collect DTMF input and speech from callers using standard gather or AI-powered gather. Build interactive voice menus and AI voice assistants. This skill provides Go SDK examples.
name: telnyx-voice-gather-go description: >- Collect DTMF input and speech from callers using standard gather or AI-powered gather. Build interactive voice menus and AI voice assistants. This skill provides Go SDK examples. metadata: author: telnyx product: voice-gather language: go generated_by: telnyx-openapi-pipeline
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
go get github.com/team-telnyx/telnyx-go
import (
"context"
"fmt"
"os"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
client := telnyx.NewClient(
option.WithAPIKey(os.Getenv("TELNYX_API_KEY")),
)All examples below assume `client` is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
import "errors"
result, err := client.Messages.Send(ctx, params)
if err != nil {
var apiErr *telnyx.Error
if errors.As(err, &apiErr) {
switch apiErr.StatusCode {
case 422:
fmt.Println("Validation error — check required fields and formats")
case 429:
// Rate limited — wait and retry with exponential backoff
fmt.Println("Rate limited, retrying...")
default:
fmt.Printf("API error %d: %s\n", apiErr.StatusCode, apiErr.Error())
}
} else {
fmt.Println("Network error — check connectivity and retry")
}
}Common error codes: `401` invalid API key, `403` insufficient permissions, `404` resource not found, `422` validation error (check field formats), `429` rate limited (retry with exponential backoff).
Add messages to the conversation started by an AI assistant on the call.
`POST /calls/{call_control_id}/actions/ai_assistant_add_messages`
Optional: `client_state` (string), `command_id` (string), `messages` (array[object])
response, err := client.Calls.Actions.AddAIAssistantMessages(
context.Background(),
"call_control_id",
telnyx.CallActionAddAIAssistantMessagesParams{},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Returns: `result` (string)
Start an AI assistant on the call. **Expected Webhooks:**
`POST /calls/{call_control_id}/actions/ai_assistant_start`
Optional: `assistant` (object), `client_state` (string), `command_id` (string), `greeting` (string), `interruption_settings` (object), `message_history` (array[object]), `participants` (array[object]), `send_message_history_updates` (boolean), `transcription` (object), `voice` (string), `voice_settings` (object)
response, err := client.Calls.Actions.StartAIAssistant(
context.Background(),
"call_control_id",
telnyx.CallActionStartAIAssistantParams{},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Returns: `conversation_id` (uuid), `result` (string)
Stop an AI assistant on the call.
`POST /calls/{call_control_id}/actions/ai_assistant_stop`
Optional: `client_state` (string), `command_id` (string)
response, err := client.Calls.Actions.StopAIAssistant(
context.Background(),
"call_control_id",
telnyx.CallActionStopAIAssistantParams{},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Returns: `result` (string)
Gather DTMF signals to build interactive menus. You can pass a list of valid digits. The `Answer` command must be issued before the `gather` command.
`POST /calls/{call_control_id}/actions/gather`
Optional: `client_state` (string), `command_id` (string), `gather_id` (string), `initial_timeout_millis` (int32), `inter_digit_timeout_millis` (int32), `maximum_digits` (int32), `minimum_digits` (int32), `terminating_digit` (string), `timeout_millis` (int32), `valid_digits` (string)
response, err := client.Calls.Actions.Gather(
context.Background(),
"call_control_id",
telnyx.CallActionGatherParams{
MinimumDigits: 1,
MaximumDigits: 4,
},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Returns: `result` (string)
Stop current gather. **Expected Webhooks:**
`POST /calls/{call_control_id}/actions/gather_stop`
Optional: `client_state` (string), `command_id` (string)
response, err := client.Calls.Actions.StopGather(
context.Background(),
"call_control_id",
telnyx.CallActionStopGatherParams{},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Returns: `result` (string)
Gather parameters defined in the request payload using a voice assistant. You can pass parameters described as a JSON Schema object and the voice assistant will attempt to gather these informations.
`POST /calls/{call_control_id}/actions/gather_using_ai` — Required: `parameters`
Optional: `assistant` (object), `client_state` (string), `command_id` (string), `gather_ended_speech` (string), `greeting` (string), `interruption_settings` (object), `language` (object), `message_history` (array[object]), `send_message_history_updates` (boolean), `send_partial_results` (boolean), `transcription` (object), `user_response_timeout_ms` (integer), `voice` (string), `voice_settings` (object)
response, err := client.Calls.Actions.GatherUsingAI(
context.Background(),
"call_control_id",
telnyx.CallActionGatherUsingAIParams{
Parameters: map[string]any{
"properties": "bar",
"required": "bar",
"type": "bar",
},
},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Returns: `conversation_id` (uuid), `result` (string)
Play an audio file on the call until the required DTMF signals are gathered to build interactive menus. You
This repo is the one-stop shop for AI Agents and AI-first developers building with Telnyx — everything an agent needs to build production-grade applications and manage its account, from signup to funding.
Repo: team-telnyx/ai
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.