{"id":"1e4213fb-d48d-49ef-8259-b24e7473194c","shortId":"GVQvHX","kind":"skill","title":"telnyx-ai-assistants-java","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx AI Assistants - Java\n\n## Installation\n\n```text\n<!-- Maven -->\n<dependency>\n    <groupId>com.telnyx.sdk</groupId>\n    <artifactId>telnyx</artifactId>\n    <version>6.36.0</version>\n</dependency>\n\n// Gradle\nimplementation(\"com.telnyx.sdk:telnyx:6.36.0\")\n```\n\n## Setup\n\n```java\nimport com.telnyx.sdk.client.TelnyxClient;\nimport com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;\n\nTelnyxClient client = TelnyxOkHttpClient.fromEnv();\n```\n\nAll examples below assume `client` is already initialized as shown above.\n\n## Error Handling\n\nAll API calls can fail with network errors, rate limits (429), validation errors (422),\nor authentication errors (401). Always handle errors in production code:\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.AssistantCreateParams;\nimport com.telnyx.sdk.models.ai.assistants.InferenceEmbedding;\nAssistantCreateParams params = AssistantCreateParams.builder()\n    .instructions(\"You are a helpful assistant.\")\n    .model(\"openai/gpt-4o\")\n    .name(\"my-resource\")\n    .build();\nInferenceEmbedding assistant = client.ai().assistants().create(params);\n```\n\nCommon error codes: `401` invalid API key, `403` insufficient permissions,\n`404` resource not found, `422` validation error (check field formats),\n`429` rate limited (retry with exponential backoff).\n\n## Important Notes\n\n- **Phone numbers** must be in E.164 format (e.g., `+13125550001`). Include the `+` prefix and country code. No spaces, dashes, or parentheses.\n- **Pagination:** List methods return a page. Use `.autoPager()` for automatic iteration: `for (var item : page.autoPager()) { ... }`. For manual control, use `.hasNextPage()` and `.nextPage()`.\n\n## Reference Use Rules\n\nDo not invent Telnyx parameters, enums, response fields, or webhook fields.\n\n- If the parameter, enum, or response field you need is not shown inline in this skill, read [references/api-details.md](references/api-details.md) before writing code.\n- Before using any operation in `## Additional Operations`, read [the optional-parameters section](references/api-details.md#optional-parameters) and [the response-schemas section](references/api-details.md#response-schemas).\n\n## Core Tasks\n\n### Create an assistant\n\nAssistant creation is the entrypoint for any AI assistant integration. Agents need the exact creation method and the top-level fields returned by the SDK.\n\n`client.ai().assistants().create()` — `POST /ai/assistants`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `name` | string | Yes |  |\n| `model` | string | Yes | ID of the model to use. |\n| `instructions` | string | Yes | System instructions for the assistant. |\n| `tools` | array[object] | No | The tools that the assistant can use. |\n| `toolIds` | array[string] | No |  |\n| `description` | string | No |  |\n| ... | | | +12 optional params in [references/api-details.md](references/api-details.md) |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.AssistantCreateParams;\nimport com.telnyx.sdk.models.ai.assistants.InferenceEmbedding;\n\nAssistantCreateParams params = AssistantCreateParams.builder()\n    .instructions(\"You are a helpful assistant.\")\n    .model(\"openai/gpt-4o\")\n    .name(\"my-resource\")\n    .build();\nInferenceEmbedding assistant = client.ai().assistants().create(params);\n```\n\nPrimary response fields:\n- `assistant.id`\n- `assistant.name`\n- `assistant.model`\n- `assistant.instructions`\n- `assistant.createdAt`\n- `assistant.description`\n\n### Chat with an assistant\n\nChat is the primary runtime path. Agents need the exact assistant method and the response content field.\n\n`client.ai().assistants().chat()` — `POST /ai/assistants/{assistant_id}/chat`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `content` | string | Yes | The message content sent by the client to the assistant |\n| `conversationId` | string (UUID) | Yes | A unique identifier for the conversation thread, used to mai... |\n| `assistantId` | string (UUID) | Yes |  |\n| `name` | string | No | The optional display name of the user sending the message |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.AssistantChatParams;\nimport com.telnyx.sdk.models.ai.assistants.AssistantChatResponse;\n\nAssistantChatParams params = AssistantChatParams.builder()\n    .assistantId(\"550e8400-e29b-41d4-a716-446655440000\")\n    .content(\"Tell me a joke about cats\")\n    .conversationId(\"42b20469-1215-4a9a-8964-c36f66b406f4\")\n    .build();\nAssistantChatResponse response = client.ai().assistants().chat(params);\n```\n\nPrimary response fields:\n- `response.content`\n\n### Create an assistant test\n\nTest creation is the main validation path for production assistant behavior before deployment.\n\n`client.ai().assistants().tests().create()` — `POST /ai/assistants/tests`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `name` | string | Yes | A descriptive name for the assistant test. |\n| `destination` | string | Yes | The target destination for the test conversation. |\n| `instructions` | string | Yes | Detailed instructions that define the test scenario and what... |\n| `rubric` | array[object] | Yes | Evaluation criteria used to assess the assistant's performan... |\n| `description` | string | No | Optional detailed description of what this test evaluates an... |\n| `telnyxConversationChannel` | object | No | The communication channel through which the test will be con... |\n| `maxDurationSeconds` | integer | No | Maximum duration in seconds that the test conversation shoul... |\n| ... | | | +1 optional params in [references/api-details.md](references/api-details.md) |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.tests.AssistantTest;\nimport com.telnyx.sdk.models.ai.assistants.tests.TestCreateParams;\n\nTestCreateParams params = TestCreateParams.builder()\n    .destination(\"+15551234567\")\n    .instructions(\"Act as a frustrated customer who received a damaged product. Ask for a refund and escalate if not satisfied with the initial response.\")\n    .name(\"Customer Support Bot Test\")\n    .addRubric(TestCreateParams.Rubric.builder()\n        .criteria(\"Assistant responds within 30 seconds\")\n        .name(\"Response Time\")\n        .build())\n    .addRubric(TestCreateParams.Rubric.builder()\n        .criteria(\"Provides correct product information\")\n        .name(\"Accuracy\")\n        .build())\n    .build();\nAssistantTest assistantTest = client.ai().assistants().tests().create(params);\n```\n\nPrimary response fields:\n- `assistantTest.testId`\n- `assistantTest.name`\n- `assistantTest.destination`\n- `assistantTest.createdAt`\n- `assistantTest.instructions`\n- `assistantTest.description`\n\n---\n\n## Important Supporting Operations\n\nUse these when the core tasks above are close to your flow, but you need a common variation or follow-up step.\n\n### Get an assistant\n\nFetch the current state before updating, deleting, or making control-flow decisions.\n\n`client.ai().assistants().retrieve()` — `GET /ai/assistants/{assistant_id}`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `assistantId` | string (UUID) | Yes |  |\n| `callControlId` | string (UUID) | No |  |\n| `fetchDynamicVariablesFromWebhook` | boolean | No |  |\n| `from` | string (E.164) | No |  |\n| ... | | | +1 optional params in [references/api-details.md](references/api-details.md) |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.AssistantRetrieveParams;\nimport com.telnyx.sdk.models.ai.assistants.InferenceEmbedding;\n\nInferenceEmbedding assistant = client.ai().assistants().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nPrimary response fields:\n- `assistant.id`\n- `assistant.name`\n- `assistant.createdAt`\n- `assistant.description`\n- `assistant.dynamicVariables`\n- `assistant.dynamicVariablesWebhookUrl`\n\n### Update an assistant\n\nCreate or provision an additional resource when the core tasks do not cover this flow.\n\n`client.ai().assistants().update()` — `POST /ai/assistants/{assistant_id}`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `assistantId` | string (UUID) | Yes |  |\n| `name` | string | No |  |\n| `model` | string | No | ID of the model to use. |\n| `instructions` | string | No | System instructions for the assistant. |\n| ... | | | +16 optional params in [references/api-details.md](references/api-details.md) |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.AssistantUpdateParams;\nimport com.telnyx.sdk.models.ai.assistants.InferenceEmbedding;\n\nInferenceEmbedding assistant = client.ai().assistants().update(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nPrimary response fields:\n- `assistant.id`\n- `assistant.name`\n- `assistant.createdAt`\n- `assistant.description`\n- `assistant.dynamicVariables`\n- `assistant.dynamicVariablesWebhookUrl`\n\n### List assistants\n\nInspect available resources or choose an existing resource before mutating it.\n\n`client.ai().assistants().list()` — `GET /ai/assistants`\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.AssistantListParams;\nimport com.telnyx.sdk.models.ai.assistants.AssistantsList;\n\nAssistantsList assistantsList = client.ai().assistants().list();\n```\n\nResponse wrapper:\n- items: `assistantsList.data`\n\nPrimary item fields:\n- `id`\n- `name`\n- `createdAt`\n- `description`\n- `dynamicVariables`\n- `dynamicVariablesWebhookUrl`\n\n### Import assistants from external provider\n\nImport existing assistants from an external provider instead of creating from scratch.\n\n`client.ai().assistants().imports()` — `POST /ai/assistants/import`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `provider` | enum (elevenlabs, vapi, retell) | Yes | The external provider to import assistants from. |\n| `apiKeyRef` | string | Yes | Integration secret pointer that refers to the API key for th... |\n| `importIds` | array[string] | No | Optional list of assistant IDs to import from the external p... |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.AssistantImportsParams;\nimport com.telnyx.sdk.models.ai.assistants.AssistantsList;\n\nAssistantImportsParams params = AssistantImportsParams.builder()\n    .apiKeyRef(\"my-openai-key\")\n    .provider(AssistantImportsParams.Provider.ELEVENLABS)\n    .build();\nAssistantsList assistantsList = client.ai().assistants().imports(params);\n```\n\nResponse wrapper:\n- items: `assistantsList.data`\n\nPrimary item fields:\n- `id`\n- `name`\n- `createdAt`\n- `description`\n- `dynamicVariables`\n- `dynamicVariablesWebhookUrl`\n\n### Get All Tags\n\nInspect available resources or choose an existing resource before mutating it.\n\n`client.ai().assistants().tags().list()` — `GET /ai/assistants/tags`\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.tags.TagListParams;\nimport com.telnyx.sdk.models.ai.assistants.tags.TagListResponse;\n\nTagListResponse tags = client.ai().assistants().tags().list();\n```\n\nPrimary response fields:\n- `tags.tags`\n\n### List assistant tests with pagination\n\nInspect available resources or choose an existing resource before mutating it.\n\n`client.ai().assistants().tests().list()` — `GET /ai/assistants/tests`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `testSuite` | string | No | Filter tests by test suite name |\n| `telnyxConversationChannel` | string | No | Filter tests by communication channel (e.g., 'web_chat', 'sm... |\n| `destination` | string | No | Filter tests by destination (phone number, webhook URL, etc.... |\n| ... | | | +1 optional params in [references/api-details.md](references/api-details.md) |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.tests.TestListPage;\nimport com.telnyx.sdk.models.ai.assistants.tests.TestListParams;\n\nTestListPage page = client.ai().assistants().tests().list();\n```\n\nResponse wrapper:\n- items: `page.data`\n- pagination: `page.meta`\n\nPrimary item fields:\n- `name`\n- `createdAt`\n- `description`\n- `destination`\n- `instructions`\n- `maxDurationSeconds`\n\n### Get all test suite names\n\nInspect available resources or choose an existing resource before mutating it.\n\n`client.ai().assistants().tests().testSuites().list()` — `GET /ai/assistants/tests/test-suites`\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.tests.testsuites.TestSuiteListParams;\nimport com.telnyx.sdk.models.ai.assistants.tests.testsuites.TestSuiteListResponse;\n\nTestSuiteListResponse testSuites = client.ai().assistants().tests().testSuites().list();\n```\n\nResponse wrapper:\n- items: `testSuites.data`\n\nPrimary item fields:\n- `data`\n\n### Get test suite run history\n\nFetch the current state before updating, deleting, or making control-flow decisions.\n\n`client.ai().assistants().tests().testSuites().runs().list()` — `GET /ai/assistants/tests/test-suites/{suite_name}/runs`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `suiteName` | string | Yes |  |\n| `testSuiteRunId` | string (UUID) | No | Filter runs by specific suite execution batch ID |\n| `status` | string | No | Filter runs by execution status (pending, running, completed... |\n| `page` | object | No | Consolidated page parameter (deepObject style). |\n\n```java\nimport com.telnyx.sdk.models.ai.assistants.tests.testsuites.runs.RunListPage;\nimport com.telnyx.sdk.models.ai.assistants.tests.testsuites.runs.RunListParams;\n\nRunListPage page = client.ai().assistants().tests().testSuites().runs().list(\"suite_name\");\n```\n\nResponse wrapper:\n- items: `page.data`\n- pagination: `page.meta`\n\nPrimary item fields:\n- `status`\n- `createdAt`\n- `updatedAt`\n- `completedAt`\n- `conversationId`\n- `conversationInsightsId`\n\n---\n\n## Additional Operations\n\nUse the core tasks above first. The operations below are indexed here with exact SDK methods and required params; use [references/api-details.md](references/api-details.md) for full optional params, response schemas, and lower-frequency webhook payloads.\nBefore using any operation below, read [the optional-parameters section](references/api-details.md#optional-parameters) and [the response-schemas section](references/api-details.md#response-schemas) so you do not guess missing fields.\n\n| Operation | SDK method | Endpoint | Use when | Required params |\n|-----------|------------|----------|----------|-----------------|\n| Trigger test suite execution | `client.ai().assistants().tests().testSuites().runs().trigger()` | `POST /ai/assistants/tests/test-suites/{suite_name}/runs` | Trigger a follow-up action in an existing workflow rather than creating a new top-level resource. | `suiteName` |\n| Get assistant test by ID | `client.ai().assistants().tests().retrieve()` | `GET /ai/assistants/tests/{test_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `testId` |\n| Update an assistant test | `client.ai().assistants().tests().update()` | `PUT /ai/assistants/tests/{test_id}` | Modify an existing resource without recreating it. | `testId` |\n| Delete an assistant test | `client.ai().assistants().tests().delete()` | `DELETE /ai/assistants/tests/{test_id}` | Remove, detach, or clean up an existing resource. | `testId` |\n| Get test run history for a specific test | `client.ai().assistants().tests().runs().list()` | `GET /ai/assistants/tests/{test_id}/runs` | Fetch the current state before updating, deleting, or making control-flow decisions. | `testId` |\n| Trigger a manual test run | `client.ai().assistants().tests().runs().trigger()` | `POST /ai/assistants/tests/{test_id}/runs` | Trigger a follow-up action in an existing workflow rather than creating a new top-level resource. | `testId` |\n| Get specific test run details | `client.ai().assistants().tests().runs().retrieve()` | `GET /ai/assistants/tests/{test_id}/runs/{run_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `testId`, `runId` |\n| Delete an assistant | `client.ai().assistants().delete()` | `DELETE /ai/assistants/{assistant_id}` | Remove, detach, or clean up an existing resource. | `assistantId` |\n| Get Canary Deploy | `client.ai().assistants().canaryDeploys().retrieve()` | `GET /ai/assistants/{assistant_id}/canary-deploys` | Fetch the current state before updating, deleting, or making control-flow decisions. | `assistantId` |\n| Create Canary Deploy | `client.ai().assistants().canaryDeploys().create()` | `POST /ai/assistants/{assistant_id}/canary-deploys` | Create or provision an additional resource when the core tasks do not cover this flow. | `versions`, `assistantId` |\n| Update Canary Deploy | `client.ai().assistants().canaryDeploys().update()` | `PUT /ai/assistants/{assistant_id}/canary-deploys` | Modify an existing resource without recreating it. | `versions`, `assistantId` |\n| Delete Canary Deploy | `client.ai().assistants().canaryDeploys().delete()` | `DELETE /ai/assistants/{assistant_id}/canary-deploys` | Remove, detach, or clean up an existing resource. | `assistantId` |\n| Assistant Sms Chat | `client.ai().assistants().sendSms()` | `POST /ai/assistants/{assistant_id}/chat/sms` | Run assistant chat over SMS instead of direct API chat. | `from`, `to`, `assistantId` |\n| Clone Assistant | `client.ai().assistants().clone()` | `POST /ai/assistants/{assistant_id}/clone` | Trigger a follow-up action in an existing workflow rather than creating a new top-level resource. | `assistantId` |\n| List scheduled events | `client.ai().assistants().scheduledEvents().list()` | `GET /ai/assistants/{assistant_id}/scheduled_events` | Fetch the current state before updating, deleting, or making control-flow decisions. | `assistantId` |\n| Create a scheduled event | `client.ai().assistants().scheduledEvents().create()` | `POST /ai/assistants/{assistant_id}/scheduled_events` | Create or provision an additional resource when the core tasks do not cover this flow. | `telnyxConversationChannel`, `telnyxEndUserTarget`, `telnyxAgentTarget`, `scheduledAtFixedDatetime`, +1 more |\n| Get a scheduled event | `client.ai().assistants().scheduledEvents().retrieve()` | `GET /ai/assistants/{assistant_id}/scheduled_events/{event_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `assistantId`, `eventId` |\n| Delete a scheduled event | `client.ai().assistants().scheduledEvents().delete()` | `DELETE /ai/assistants/{assistant_id}/scheduled_events/{event_id}` | Remove, detach, or clean up an existing resource. | `assistantId`, `eventId` |\n| Add Assistant Tag | `client.ai().assistants().tags().add()` | `POST /ai/assistants/{assistant_id}/tags` | Create or provision an additional resource when the core tasks do not cover this flow. | `tag`, `assistantId` |\n| Remove Assistant Tag | `client.ai().assistants().tags().remove()` | `DELETE /ai/assistants/{assistant_id}/tags/{tag}` | Remove, detach, or clean up an existing resource. | `assistantId`, `tag` |\n| Get assistant texml | `client.ai().assistants().getTexml()` | `GET /ai/assistants/{assistant_id}/texml` | Fetch the current state before updating, deleting, or making control-flow decisions. | `assistantId` |\n| Add Assistant Tool | `client.ai().assistants().tools().add()` | `PUT /ai/assistants/{assistant_id}/tools/{tool_id}` | Modify an existing resource without recreating it. | `assistantId`, `toolId` |\n| Remove Assistant Tool | `client.ai().assistants().tools().remove()` | `DELETE /ai/assistants/{assistant_id}/tools/{tool_id}` | Remove, detach, or clean up an existing resource. | `assistantId`, `toolId` |\n| Test Assistant Tool | `client.ai().assistants().tools().test()` | `POST /ai/assistants/{assistant_id}/tools/{tool_id}/test` | Trigger a follow-up action in an existing workflow rather than creating a new top-level resource. | `assistantId`, `toolId` |\n| Get all versions of an assistant | `client.ai().assistants().versions().list()` | `GET /ai/assistants/{assistant_id}/versions` | Fetch the current state before updating, deleting, or making control-flow decisions. | `assistantId` |\n| Get a specific assistant version | `client.ai().assistants().versions().retrieve()` | `GET /ai/assistants/{assistant_id}/versions/{version_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `assistantId`, `versionId` |\n| Update a specific assistant version | `client.ai().assistants().versions().update()` | `POST /ai/assistants/{assistant_id}/versions/{version_id}` | Create or provision an additional resource when the core tasks do not cover this flow. | `assistantId`, `versionId` |\n| Delete a specific assistant version | `client.ai().assistants().versions().delete()` | `DELETE /ai/assistants/{assistant_id}/versions/{version_id}` | Remove, detach, or clean up an existing resource. | `assistantId`, `versionId` |\n| Promote an assistant version to main | `client.ai().assistants().versions().promote()` | `POST /ai/assistants/{assistant_id}/versions/{version_id}/promote` | Trigger a follow-up action in an existing workflow rather than creating a new top-level resource. | `assistantId`, `versionId` |\n| List MCP Servers | `client.ai().mcpServers().list()` | `GET /ai/mcp_servers` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Create MCP Server | `client.ai().mcpServers().create()` | `POST /ai/mcp_servers` | Create or provision an additional resource when the core tasks do not cover this flow. | `name`, `type`, `url` |\n| Get MCP Server | `client.ai().mcpServers().retrieve()` | `GET /ai/mcp_servers/{mcp_server_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `mcpServerId` |\n| Update MCP Server | `client.ai().mcpServers().update()` | `PUT /ai/mcp_servers/{mcp_server_id}` | Modify an existing resource without recreating it. | `mcpServerId` |\n| Delete MCP Server | `client.ai().mcpServers().delete()` | `DELETE /ai/mcp_servers/{mcp_server_id}` | Remove, detach, or clean up an existing resource. | `mcpServerId` |\n| List Tools | `client.ai().tools().list()` | `GET /ai/tools` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Create Tool | `client.ai().tools().create()` | `POST /ai/tools` | Create or provision an additional resource when the core tasks do not cover this flow. | `type`, `displayName` |\n| Get Tool | `client.ai().tools().retrieve()` | `GET /ai/tools/{tool_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `toolId` |\n| Update Tool | `client.ai().tools().update()` | `PATCH /ai/tools/{tool_id}` | Modify an existing resource without recreating it. | `toolId` |\n| Delete Tool | `client.ai().tools().delete()` | `DELETE /ai/tools/{tool_id}` | Remove, detach, or clean up an existing resource. | `toolId` |\n\n---\n\nFor exhaustive optional parameters, full response schemas, and complete webhook payloads, see [references/api-details.md](references/api-details.md).","tags":["telnyx","assistants","java","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-ai-assistants-java","topic-agent-skills","topic-ai-coding-agent","topic-claude-code","topic-cpaas","topic-cursor","topic-iot","topic-llm","topic-sdk","topic-sip","topic-sms","topic-speech-to-text","topic-telephony"],"categories":["ai"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/team-telnyx/ai/telnyx-ai-assistants-java","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add team-telnyx/ai","source_repo":"https://github.com/team-telnyx/ai","install_from":"skills.sh"}},"qualityScore":"0.533","qualityRationale":"deterministic score 0.53 from registry signals: · indexed on github topic:agent-skills · 167 github stars · SKILL.md body (22,847 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T12:54:43.531Z","embedding":null,"createdAt":"2026-04-18T22:06:14.401Z","updatedAt":"2026-04-22T12:54:43.531Z","lastSeenAt":"2026-04-22T12:54:43.531Z","tsv":"'+1':573,725,1078,1756 '+12':305 '+13125550001':130 '+15551234567':588 '+16':809 '-1215':448 '-4':449 '-8964':451 '/ai/assistants':262,372,703,778,857,1535,1555,1581,1610,1631,1651,1674,1706,1733,1767,1797,1821,1850,1872,1898,1921,1945,1984,2012,2043,2076,2103 '/ai/assistants/import':902 '/ai/assistants/tags':1003 '/ai/assistants/tests':486,1040,1371,1397,1417,1443,1472,1507 '/ai/assistants/tests/test-suites':1132,1178,1337 '/ai/mcp_servers':2138,2158,2184,2209,2228 '/ai/tools':2247,2266,2290,2313,2330 '/canary-deploys':1558,1584,1613,1634 '/chat':375 '/chat/sms':1654 '/clone':1677 '/promote':2109 '/runs':1181,1340,1446,1475,1510 '/scheduled_events':1709,1736,1770,1800 '/tags':1824,1853 '/test':1951 '/texml':1875 '/tools':1901,1924,1948 '/versions':1987,2015,2046,2079,2106 '30':624 '401':59,96 '403':100 '404':103 '41d4':436,744,828 '422':55,107 '429':52,113 '42b20469':447 '446655440000':438,746,830 '550e8400':433,741,825 '6.36.0':14,19 'a716':437,745,829 'a9a':450 'accuraci':638 'act':590 'action':1346,1481,1683,1957,2115 'add':1813,1819,1890,1896 'addit':205,763,1250,1589,1741,1829,2053,2163,2271 'addrubr':618,630 'agent':242,357 'ai':3,7,239 'alreadi':35 'alway':60 'api':43,98,930,1663 'apikeyref':920,957 'array':288,299,524,935 'ask':600 'assess':531 'assist':4,8,79,88,90,231,232,240,259,286,295,324,333,335,350,361,369,373,392,457,466,477,482,499,533,621,644,685,700,704,737,739,758,775,779,808,821,823,841,854,866,882,888,899,918,941,968,999,1012,1020,1036,1092,1127,1141,1172,1228,1331,1362,1367,1390,1393,1410,1413,1438,1467,1502,1530,1532,1536,1551,1556,1577,1582,1606,1611,1627,1632,1644,1648,1652,1656,1669,1671,1675,1702,1707,1729,1734,1763,1768,1793,1798,1814,1817,1822,1843,1846,1851,1866,1869,1873,1891,1894,1899,1914,1917,1922,1938,1941,1946,1978,1980,1985,2005,2008,2013,2036,2039,2044,2069,2072,2077,2094,2099,2104 'assistant.createdat':345,752,836 'assistant.description':346,753,837 'assistant.dynamicvariables':754,838 'assistant.dynamicvariableswebhookurl':755,839 'assistant.id':341,750,834 'assistant.instructions':344 'assistant.model':343 'assistant.name':342,751,835 'assistantchatparam':429 'assistantchatparams.builder':431 'assistantchatrespons':454 'assistantcreateparam':71,316 'assistantcreateparams.builder':73,318 'assistantid':407,432,710,785,1546,1572,1601,1622,1643,1667,1697,1723,1786,1811,1841,1863,1889,1911,1935,1971,2001,2031,2064,2090,2129 'assistantimportsparam':954 'assistantimportsparams.builder':956 'assistantimportsparams.provider.elevenlabs':963 'assistantslist':863,864,965,966 'assistantslist.data':871,974 'assistanttest':641,642 'assistanttest.createdat':654 'assistanttest.description':656 'assistanttest.destination':653 'assistanttest.instructions':655 'assistanttest.name':652 'assistanttest.testid':651 'assum':32 'authent':57 'automat':151 'autopag':149 'avail':843,988,1025,1116,2140,2249 'backoff':119 'batch':1199 'behavior':478 'boolean':719 'bot':616 'build':86,331,453,629,639,640,964 'c36f66b406f4':452 'call':44 'callcontrolid':714 'canari':1548,1574,1603,1624 'canarydeploy':1552,1578,1607,1628 'cat':445 'channel':553,1061 'chat':347,351,370,458,1064,1646,1657,1664 'check':110 'choos':846,991,1028,1119,2143,2252 'clean':1423,1541,1638,1806,1858,1930,2085,2235,2336 'client':27,33,389 'client.ai':89,258,334,368,456,481,643,699,738,774,822,853,865,898,967,998,1011,1035,1091,1126,1140,1171,1227,1330,1366,1392,1412,1437,1466,1501,1531,1550,1576,1605,1626,1647,1670,1701,1728,1762,1792,1816,1845,1868,1893,1916,1940,1979,2007,2038,2071,2098,2134,2154,2180,2205,2224,2243,2262,2286,2309,2326 'clone':1668,1672 'close':668 'code':65,95,136,199 'com.telnyx.sdk':12,17 'com.telnyx.sdk.client.okhttp.telnyxokhttpclient':25 'com.telnyx.sdk.client.telnyxclient':23 'com.telnyx.sdk.models.ai.assistants.assistantchatparams':426 'com.telnyx.sdk.models.ai.assistants.assistantchatresponse':428 'com.telnyx.sdk.models.ai.assistants.assistantcreateparams':68,313 'com.telnyx.sdk.models.ai.assistants.assistantimportsparams':951 'com.telnyx.sdk.models.ai.assistants.assistantlistparams':860 'com.telnyx.sdk.models.ai.assistants.assistantretrieveparams':733 'com.telnyx.sdk.models.ai.assistants.assistantslist':862,953 'com.telnyx.sdk.models.ai.assistants.assistantupdateparams':817 'com.telnyx.sdk.models.ai.assistants.inferenceembedding':70,315,735,819 'com.telnyx.sdk.models.ai.assistants.tags.taglistparams':1006 'com.telnyx.sdk.models.ai.assistants.tags.taglistresponse':1008 'com.telnyx.sdk.models.ai.assistants.tests.assistanttest':581 'com.telnyx.sdk.models.ai.assistants.tests.testcreateparams':583 'com.telnyx.sdk.models.ai.assistants.tests.testlistpage':1086 'com.telnyx.sdk.models.ai.assistants.tests.testlistparams':1088 'com.telnyx.sdk.models.ai.assistants.tests.testsuites.runs.runlistpage':1222 'com.telnyx.sdk.models.ai.assistants.tests.testsuites.runs.runlistparams':1224 'com.telnyx.sdk.models.ai.assistants.tests.testsuites.testsuitelistparams':1135 'com.telnyx.sdk.models.ai.assistants.tests.testsuites.testsuitelistresponse':1137 'common':93,676 'communic':552,1060 'complet':1211,2350 'completedat':1247 'con':560 'consolid':1215 'content':366,380,385,439 'control':159,696,1168,1384,1457,1523,1569,1720,1783,1886,1998,2028,2198,2303 'control-flow':695,1167,1383,1456,1522,1568,1719,1782,1885,1997,2027,2197,2302 'convers':402,510,571 'conversationid':393,446,1248 'conversationinsightsid':1249 'core':227,664,767,1254,1593,1745,1833,2057,2167,2275 'correct':634 'countri':135 'cover':771,1597,1749,1837,2061,2171,2279 'creat':91,229,260,336,464,484,646,759,895,1353,1488,1573,1579,1585,1690,1724,1731,1737,1825,1964,2049,2122,2151,2156,2159,2260,2264,2267 'createdat':877,980,1105,1245 'creation':233,246,469 'criteria':528,620,632 'current':688,1160,1376,1449,1515,1561,1712,1775,1878,1990,2020,2190,2295 'custom':594,614 'damag':598 'dash':139 'data':1152 'decis':698,1170,1386,1459,1525,1571,1722,1785,1888,2000,2030,2200,2305 'deepobject':1218 'defin':517 'delet':692,1164,1380,1408,1415,1416,1453,1519,1528,1533,1534,1565,1623,1629,1630,1716,1779,1788,1795,1796,1849,1882,1920,1994,2024,2066,2074,2075,2194,2221,2226,2227,2299,2324,2328,2329 'deploy':480,1549,1575,1604,1625 'descript':266,302,379,490,495,536,541,709,784,878,906,981,1044,1106,1185 'destin':501,506,587,1066,1072,1107 'detach':1421,1539,1636,1804,1856,1928,2083,2233,2334 'detail':514,540,1500 'direct':1662 'display':416 'displaynam':2283 'durat':565 'dynamicvari':879,982 'dynamicvariableswebhookurl':880,983 'e.164':127,723 'e.g':129,1062 'e29b':435,743,827 'e29b-41d4-a716':434,742,826 'elevenlab':909 'endpoint':1321 'entrypoint':236 'enum':172,181,908 'error':40,49,54,58,62,94,109 'escal':605 'etc':1077 'evalu':527,546 'event':1700,1727,1761,1771,1791,1801 'eventid':1787,1812 'exact':245,360,1265 'exampl':30 'execut':1198,1207,1329 'exhaust':2343 'exist':848,887,993,1030,1121,1349,1402,1426,1484,1544,1616,1641,1686,1809,1861,1906,1933,1960,2088,2118,2145,2215,2238,2254,2318,2339 'exponenti':118 'extern':884,891,914,947 'fail':46 'fetch':686,1158,1374,1447,1513,1559,1710,1773,1876,1988,2018,2188,2293 'fetchdynamicvariablesfromwebhook':718 'field':111,174,177,184,253,340,367,462,650,749,833,874,977,1017,1103,1151,1243,1317 'filter':1048,1057,1069,1193,1204 'first':1257 'flow':671,697,773,1169,1385,1458,1524,1570,1599,1721,1751,1784,1839,1887,1999,2029,2063,2173,2199,2281,2304 'follow':680,1344,1479,1681,1955,2113 'follow-up':679,1343,1478,1680,1954,2112 'format':112,128 'found':106 'frequenc':1283 'frustrat':593 'full':1275,2346 'get':683,702,856,984,1002,1039,1110,1131,1153,1177,1361,1370,1429,1442,1496,1506,1547,1554,1705,1758,1766,1865,1871,1973,1983,2002,2011,2137,2177,2183,2246,2284,2289 'gettexml':1870 'gradl':15 'guess':1315 'handl':41,61 'hasnextpag':161 'help':78,323 'histori':1157,1432 'id':273,374,705,780,795,875,942,978,1200,1365,1373,1399,1419,1445,1474,1509,1512,1537,1557,1583,1612,1633,1653,1676,1708,1735,1769,1772,1799,1802,1823,1852,1874,1900,1903,1923,1926,1947,1950,1986,2014,2017,2045,2048,2078,2081,2105,2108,2187,2212,2231,2292,2315,2332 'identifi':399 'implement':16 'import':22,24,67,69,120,312,314,425,427,580,582,657,732,734,816,818,859,861,881,886,900,917,944,950,952,969,1005,1007,1085,1087,1134,1136,1221,1223 'importid':934 'includ':131 'index':1262 'inferenceembed':87,332,736,820 'inform':636 'initi':36,611 'inlin':190 'inspect':842,987,1024,1115,2139,2248 'instal':10 'instead':893,1660 'instruct':74,279,283,319,511,515,589,801,805,1108 'insuffici':101 'integ':562 'integr':241,923 'invalid':97 'invent':169 'item':155,870,873,973,976,1097,1102,1147,1150,1237,1242 'iter':152 'java':5,9,21,66,311,424,579,731,815,858,949,1004,1084,1133,1220 'joke':443 'key':99,931,961 'level':252,1358,1493,1695,1969,2127 'limit':51,115 'list':143,840,855,867,939,1001,1014,1019,1038,1094,1130,1144,1176,1232,1441,1698,1704,1982,2131,2136,2241,2245 'lower':1282 'lower-frequ':1281 'mai':406 'main':472,2097 'make':694,1166,1382,1455,1521,1567,1718,1781,1884,1996,2026,2196,2301 'manual':158,1463 'maxdurationsecond':561,1109 'maximum':564 'mcp':2132,2152,2178,2185,2203,2210,2222,2229 'mcpserver':2135,2155,2181,2206,2225 'mcpserverid':2201,2220,2240 'messag':384,423 'method':144,247,362,1267,1320 'miss':1316 'model':80,270,276,325,792,798 'modifi':1400,1614,1904,2213,2316 'must':124 'mutat':851,996,1033,1124,2148,2257 'my-openai-key':958 'my-resourc':83,328 'name':82,267,327,411,417,491,496,613,626,637,789,876,979,1053,1104,1114,1180,1234,1339,2174 'need':186,243,358,674 'network':48 'new':1355,1490,1692,1966,2124 'nextpag':163 'none':2150,2259 'note':121 'number':123,1074 'object':289,525,549,1213 'openai':960 'openai/gpt-4o':81,326 'oper':203,206,659,1251,1259,1289,1318 'option':210,215,306,415,539,574,726,810,938,1079,1276,1294,1299,2344 'optional-paramet':209,214,1293,1298 'p':948 'page':147,1090,1212,1216,1226 'page.autopager':156 'page.data':1098,1238 'page.meta':1100,1240 'pagin':142,1023,1099,1239 'param':72,92,307,317,337,430,459,575,585,647,727,811,955,970,1080,1270,1277,1325 'paramet':171,180,211,216,263,376,487,706,781,903,1041,1182,1217,1295,1300,2345 'parenthes':141 'patch':2312 'path':356,474 'payload':1285,2352 'pend':1209 'performan':535 'permiss':102 'phone':122,1073 'pointer':925 'post':261,371,485,777,901,1336,1471,1580,1650,1673,1732,1820,1944,2042,2102,2157,2265 'prefix':133 'primari':338,354,460,648,747,831,872,975,1015,1101,1149,1241 'product':64,476,599,635 'promot':2092,2101 'provid':633,885,892,907,915,962 'provis':761,1587,1739,1827,2051,2161,2269 'put':1396,1609,1897,2208 'rate':50,114 'rather':1351,1486,1688,1962,2120 'read':194,207,1291 'receiv':596 'recreat':1405,1619,1909,2218,2321 'refer':164,927 'references/api-details.md':195,196,213,223,309,310,577,578,729,730,813,814,1082,1083,1272,1273,1297,1307,2354,2355 'refund':603 'remov':1420,1538,1635,1803,1842,1848,1855,1913,1919,1927,2082,2232,2333 'requir':265,378,489,708,783,905,1043,1184,1269,1324 'resourc':85,104,330,764,844,849,989,994,1026,1031,1117,1122,1359,1403,1427,1494,1545,1590,1617,1642,1696,1742,1810,1830,1862,1907,1934,1970,2054,2089,2128,2141,2146,2164,2216,2239,2250,2255,2272,2319,2340 'respond':622 'respons':173,183,220,225,339,365,455,461,612,627,649,748,832,868,971,1016,1095,1145,1235,1278,1304,1309,2347 'response-schema':219,224,1303,1308 'response.content':463 'retel':911 'retri':116 'retriev':701,740,1369,1505,1553,1765,2010,2182,2288 'return':145,254 'rubric':523 'rule':166 'run':1156,1175,1194,1205,1210,1231,1334,1431,1440,1465,1469,1499,1504,1511,1655 'runid':1527 'runlistpag':1225 'runtim':355 'satisfi':608 'scenario':520 'schedul':1699,1726,1760,1790 'scheduledatfixeddatetim':1755 'scheduledev':1703,1730,1764,1794 'schema':221,226,1279,1305,1310,2348 'scratch':897 'sdk':257,1266,1319 'second':567,625 'secret':924 'section':212,222,1296,1306 'see':2353 'send':421 'sendsm':1649 'sent':386 'server':2133,2153,2179,2186,2204,2211,2223,2230 'setup':20 'shoul':572 'shown':38,189 'skill':193 'skill-telnyx-ai-assistants-java' 'sm':1065 'sms':1645,1659 'source-team-telnyx' 'space':138 'specif':1196,1435,1497,2004,2035,2068 'state':689,1161,1377,1450,1516,1562,1713,1776,1879,1991,2021,2191,2296 'status':1201,1208,1244 'step':682 'string':268,271,280,300,303,381,394,408,412,492,502,512,537,711,715,722,786,790,793,802,921,936,1046,1055,1067,1187,1190,1202 'style':1219 'suit':1052,1113,1155,1179,1197,1233,1328,1338 'suitenam':1186,1360 'support':615,658 'system':282,804 'tag':986,1000,1010,1013,1815,1818,1840,1844,1847,1854,1864 'taglistrespons':1009 'tags.tags':1018 'target':505 'task':228,665,768,1255,1594,1746,1834,2058,2168,2276 'tell':440 'telnyx':2,6,13,18,170 'telnyx-ai-assistants-java':1 'telnyxagenttarget':1754 'telnyxcli':26 'telnyxconversationchannel':548,1054,1752 'telnyxendusertarget':1753 'telnyxokhttpclient.fromenv':28 'test':467,468,483,500,509,519,545,557,570,617,645,1021,1037,1049,1051,1058,1070,1093,1112,1128,1142,1154,1173,1229,1327,1332,1363,1368,1372,1391,1394,1398,1411,1414,1418,1430,1436,1439,1444,1464,1468,1473,1498,1503,1508,1937,1943 'testcreateparam':584 'testcreateparams.builder':586 'testcreateparams.rubric.builder':619,631 'testid':1387,1407,1428,1460,1495,1526 'testlistpag':1089 'testsuit':1045,1129,1139,1143,1174,1230,1333 'testsuitelistrespons':1138 'testsuiterunid':1189 'testsuites.data':1148 'texml':1867 'text':11 'th':933 'thread':403 'time':628 'tool':287,292,1892,1895,1902,1915,1918,1925,1939,1942,1949,2242,2244,2261,2263,2285,2287,2291,2308,2310,2314,2325,2327,2331 'toolid':298,1912,1936,1972,2306,2323,2341 'top':251,1357,1492,1694,1968,2126 'top-level':250,1356,1491,1693,1967,2125 'topic-agent-skills' 'topic-ai-coding-agent' 'topic-claude-code' 'topic-cpaas' 'topic-cursor' 'topic-iot' 'topic-llm' 'topic-sdk' 'topic-sip' 'topic-sms' 'topic-speech-to-text' 'topic-telephony' 'trigger':1326,1335,1341,1461,1470,1476,1678,1952,2110 'type':264,377,488,707,782,904,1042,1183,2175,2282 'uniqu':398 'updat':691,756,776,824,1163,1379,1388,1395,1452,1518,1564,1602,1608,1715,1778,1881,1993,2023,2033,2041,2193,2202,2207,2298,2307,2311 'updatedat':1246 'url':1076,2176 'use':148,160,165,201,278,297,404,529,660,800,1252,1271,1287,1322 'user':420 'uuid':395,409,712,716,787,1191 'valid':53,108,473 'vapi':910 'var':154 'variat':677 'version':1600,1621,1975,1981,2006,2009,2016,2037,2040,2047,2070,2073,2080,2095,2100,2107 'versionid':2032,2065,2091,2130 'web':1063 'webhook':176,1075,1284,2351 'within':623 'without':1404,1618,1908,2217,2320 'workflow':1350,1485,1687,1961,2119 'wrapper':869,972,1096,1146,1236 'write':198 'yes':269,272,281,382,396,410,493,503,513,526,713,788,912,922,1188","prices":[{"id":"e4737d89-2773-4a5b-8111-bc4da494d752","listingId":"1e4213fb-d48d-49ef-8259-b24e7473194c","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"team-telnyx","category":"ai","install_from":"skills.sh"},"createdAt":"2026-04-18T22:06:14.401Z"}],"sources":[{"listingId":"1e4213fb-d48d-49ef-8259-b24e7473194c","source":"github","sourceId":"team-telnyx/ai/telnyx-ai-assistants-java","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-ai-assistants-java","isPrimary":false,"firstSeenAt":"2026-04-18T22:06:14.401Z","lastSeenAt":"2026-04-22T12:54:43.531Z"}],"details":{"listingId":"1e4213fb-d48d-49ef-8259-b24e7473194c","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-ai-assistants-java","github":{"repo":"team-telnyx/ai","stars":167,"topics":["agent-skills","ai","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk","sip","sms","speech-to-text","telephony","telnyx","tts","twilio-migration","voice-agents","voice-ai","webrtc","windsurf"],"license":"mit","html_url":"https://github.com/team-telnyx/ai","pushed_at":"2026-04-21T22:09:49Z","description":"Official one-stop shop for AI Agents and developers building with Telnyx.","skill_md_sha":"dd0ee10612d80d71fceb3ebfb0b6136d6e7cccf2","skill_md_path":"skills/telnyx-ai-assistants-java/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-ai-assistants-java"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-ai-assistants-java","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-ai-assistants-java"},"updatedAt":"2026-04-22T12:54:43.531Z"}}