telnyx-mcp 6.60.0 → 6.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3070,13 +3070,13 @@ const EMBEDDED_METHODS = [
3070
3070
  name: 'create_response',
3071
3071
  endpoint: '/ai/responses',
3072
3072
  httpMethod: 'post',
3073
- summary: 'Create a openai response',
3074
- description: "Chat with a language model. This endpoint is consistent with the [OpenAI Chat Completions API](https://developers.openai.com/api/reference/resources/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.",
3073
+ summary: 'Create a response',
3074
+ description: "**Deprecated**: Use `POST /v2/ai/openai/responses` instead. Chat with a language model. This endpoint is consistent with the [OpenAI Responses API](https://platform.openai.com/docs/api-reference/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.",
3075
3075
  stainlessPath: '(resource) ai > (method) create_response',
3076
3076
  qualified: 'client.ai.createResponse',
3077
3077
  params: ['body: object;'],
3078
3078
  response: 'object',
3079
- markdown: "## create_response\n\n`client.ai.createResponse(body: object): object`\n\n**post** `/ai/responses`\n\nChat with a language model. This endpoint is consistent with the [OpenAI Chat Completions API](https://developers.openai.com/api/reference/resources/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.\n\n### Parameters\n\n- `body: object`\n\n### Returns\n\n- `object`\n\n### Example\n\n```typescript\nimport Telnyx from 'telnyx';\n\nconst client = new Telnyx();\n\nconst response = await client.ai.createResponse({ body: { model: 'bar', input: 'bar' } });\n\nconsole.log(response);\n```",
3079
+ markdown: "## create_response\n\n`client.ai.createResponse(body: object): object`\n\n**post** `/ai/responses`\n\n**Deprecated**: Use `POST /v2/ai/openai/responses` instead. Chat with a language model. This endpoint is consistent with the [OpenAI Responses API](https://platform.openai.com/docs/api-reference/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.\n\n### Parameters\n\n- `body: object`\n\n### Returns\n\n- `object`\n\n### Example\n\n```typescript\nimport Telnyx from 'telnyx';\n\nconst client = new Telnyx();\n\nconst response = await client.ai.createResponse({ body: { model: 'bar', input: 'bar' } });\n\nconsole.log(response);\n```",
3080
3080
  perLanguage: {
3081
3081
  typescript: {
3082
3082
  method: 'client.ai.createResponse',
@@ -9296,13 +9296,13 @@ const EMBEDDED_METHODS = [
9296
9296
  name: 'create_response',
9297
9297
  endpoint: '/ai/openai/responses',
9298
9298
  httpMethod: 'post',
9299
- summary: 'Create a openai response',
9300
- description: "Chat with a language model. This endpoint is consistent with the [OpenAI Chat Completions API](https://developers.openai.com/api/reference/resources/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.",
9299
+ summary: 'Create an OpenAI-compatible response',
9300
+ description: "Chat with a language model. This endpoint is consistent with the [OpenAI Responses API](https://platform.openai.com/docs/api-reference/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.",
9301
9301
  stainlessPath: '(resource) ai.openai > (method) create_response',
9302
9302
  qualified: 'client.ai.openai.createResponse',
9303
9303
  params: ['body: object;'],
9304
9304
  response: 'object',
9305
- markdown: "## create_response\n\n`client.ai.openai.createResponse(body: object): object`\n\n**post** `/ai/openai/responses`\n\nChat with a language model. This endpoint is consistent with the [OpenAI Chat Completions API](https://developers.openai.com/api/reference/resources/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.\n\n### Parameters\n\n- `body: object`\n\n### Returns\n\n- `object`\n\n### Example\n\n```typescript\nimport Telnyx from 'telnyx';\n\nconst client = new Telnyx();\n\nconst response = await client.ai.openai.createResponse({ body: { model: 'bar', input: 'bar' } });\n\nconsole.log(response);\n```",
9305
+ markdown: "## create_response\n\n`client.ai.openai.createResponse(body: object): object`\n\n**post** `/ai/openai/responses`\n\nChat with a language model. This endpoint is consistent with the [OpenAI Responses API](https://platform.openai.com/docs/api-reference/responses) and may be used with the OpenAI JS or Python SDK. Response id parameter is not supported at the moment. Use 'conversation' parameter to leverage persistent conversations feature.\n\n### Parameters\n\n- `body: object`\n\n### Returns\n\n- `object`\n\n### Example\n\n```typescript\nimport Telnyx from 'telnyx';\n\nconst client = new Telnyx();\n\nconst response = await client.ai.openai.createResponse({ body: { model: 'bar', input: 'bar' } });\n\nconsole.log(response);\n```",
9306
9306
  perLanguage: {
9307
9307
  typescript: {
9308
9308
  method: 'client.ai.openai.createResponse',