phonic 0.32.25 → 0.32.27

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.
Files changed (26) hide show
  1. package/dist/cjs/BaseClient.js +2 -2
  2. package/dist/cjs/api/resources/responses/client/Client.d.ts +1 -0
  3. package/dist/cjs/api/resources/responses/client/Client.js +1 -0
  4. package/dist/cjs/api/resources/responses/client/requests/GenerateResponsesRequest.d.ts +12 -0
  5. package/dist/cjs/api/resources/responses/client/requests/GenerateResponsesRequest.js +10 -0
  6. package/dist/cjs/api/resources/responses/client/requests/index.d.ts +1 -1
  7. package/dist/cjs/api/resources/responses/client/requests/index.js +3 -0
  8. package/dist/cjs/api/resources/tools/client/requests/CreateToolRequest.d.ts +3 -3
  9. package/dist/cjs/api/resources/tools/client/requests/UpdateToolRequest.d.ts +2 -2
  10. package/dist/cjs/api/types/Tool.d.ts +2 -2
  11. package/dist/cjs/version.d.ts +1 -1
  12. package/dist/cjs/version.js +1 -1
  13. package/dist/esm/BaseClient.mjs +2 -2
  14. package/dist/esm/api/resources/responses/client/Client.d.mts +1 -0
  15. package/dist/esm/api/resources/responses/client/Client.mjs +1 -0
  16. package/dist/esm/api/resources/responses/client/requests/GenerateResponsesRequest.d.mts +12 -0
  17. package/dist/esm/api/resources/responses/client/requests/GenerateResponsesRequest.mjs +9 -1
  18. package/dist/esm/api/resources/responses/client/requests/index.d.mts +1 -1
  19. package/dist/esm/api/resources/responses/client/requests/index.mjs +1 -1
  20. package/dist/esm/api/resources/tools/client/requests/CreateToolRequest.d.mts +3 -3
  21. package/dist/esm/api/resources/tools/client/requests/UpdateToolRequest.d.mts +2 -2
  22. package/dist/esm/api/types/Tool.d.mts +2 -2
  23. package/dist/esm/version.d.mts +1 -1
  24. package/dist/esm/version.mjs +1 -1
  25. package/package.json +1 -1
  26. package/reference.md +1 -0
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "phonic",
46
- "X-Fern-SDK-Version": "0.32.25",
47
- "User-Agent": "phonic/0.32.25",
46
+ "X-Fern-SDK-Version": "0.32.27",
47
+ "User-Agent": "phonic/0.32.27",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -77,6 +77,7 @@ export declare class ResponsesClient {
77
77
  * additionalProperties: false
78
78
  * }
79
79
  * }],
80
+ * phonic_model: "phonic_v1",
80
81
  * num_responses: 2
81
82
  * })
82
83
  *
@@ -122,6 +122,7 @@ class ResponsesClient {
122
122
  * additionalProperties: false
123
123
  * }
124
124
  * }],
125
+ * phonic_model: "phonic_v1",
125
126
  * num_responses: 2
126
127
  * })
127
128
  *
@@ -25,6 +25,7 @@ import type * as Phonic from "../../../../index.js";
25
25
  * additionalProperties: false
26
26
  * }
27
27
  * }],
28
+ * phonic_model: "phonic_v1",
28
29
  * num_responses: 2
29
30
  * }
30
31
  *
@@ -62,6 +63,17 @@ export interface GenerateResponsesRequest {
62
63
  project?: string;
63
64
  /** Tools the assistant may call that already exist - a built-in tool, or a transfer tool stored in `project`, referenced by name. Names must be unique and must not repeat a name in `tool_definitions`. Stored tools that are not transfer tools cannot be referenced here yet; define them inline as `tool_definitions` instead. */
64
65
  tools?: Phonic.ResponsesTool[];
66
+ /** The Phonic speech-to-speech model to generate with. Omit it to use the current default model. */
67
+ phonic_model?: GenerateResponsesRequest.PhonicModel;
65
68
  /** Number of alternative responses to generate. */
66
69
  num_responses?: number;
67
70
  }
71
+ export declare namespace GenerateResponsesRequest {
72
+ /** The Phonic speech-to-speech model to generate with. Omit it to use the current default model. */
73
+ const PhonicModel: {
74
+ readonly PhonicV05: "phonic_v0_5";
75
+ readonly PhonicV1: "phonic_v1";
76
+ readonly PhonicV11: "phonic_v1_1";
77
+ };
78
+ type PhonicModel = (typeof PhonicModel)[keyof typeof PhonicModel];
79
+ }
@@ -1,3 +1,13 @@
1
1
  "use strict";
2
2
  // This file was auto-generated by Fern from our API Definition.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.GenerateResponsesRequest = void 0;
5
+ var GenerateResponsesRequest;
6
+ (function (GenerateResponsesRequest) {
7
+ /** The Phonic speech-to-speech model to generate with. Omit it to use the current default model. */
8
+ GenerateResponsesRequest.PhonicModel = {
9
+ PhonicV05: "phonic_v0_5",
10
+ PhonicV1: "phonic_v1",
11
+ PhonicV11: "phonic_v1_1",
12
+ };
13
+ })(GenerateResponsesRequest || (exports.GenerateResponsesRequest = GenerateResponsesRequest = {}));
@@ -1 +1 @@
1
- export type { GenerateResponsesRequest } from "./GenerateResponsesRequest.js";
1
+ export { GenerateResponsesRequest } from "./GenerateResponsesRequest.js";
@@ -1,2 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GenerateResponsesRequest = void 0;
4
+ var GenerateResponsesRequest_js_1 = require("./GenerateResponsesRequest.js");
5
+ Object.defineProperty(exports, "GenerateResponsesRequest", { enumerable: true, get: function () { return GenerateResponsesRequest_js_1.GenerateResponsesRequest; } });
@@ -205,15 +205,15 @@ export interface CreateToolRequest {
205
205
  phone_number?: string | null;
206
206
  /** DTMF digits to send after the transfer connects (e.g., "1234"). Defaults to null. Ignored when dynamic_dtmf is true. */
207
207
  dtmf?: string | null;
208
- /** Fixed line the agent speaks into the bridged call once the transfer connects. Defaults to null, meaning no announcement. Must be null when keep_listening is false, since a SIP REFER transfer has no bridged call to speak it on. Only available for built_in_transfer_to_phone_number tools. */
208
+ /** Fixed line the agent speaks into the bridged call once the transfer connects. Defaults to null, meaning no announcement. Must be null when keep_listening is false, since Phonic drops out of the call and has no line to speak it on. Only available for built_in_transfer_to_phone_number tools. */
209
209
  post_transfer_message?: string | null;
210
- /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. Only sent when use_agent_phone_number is true (not on a SIP REFER transfer). */
210
+ /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. */
211
211
  dynamic_dtmf?: boolean;
212
212
  /** When true, Phonic will transfer the call using the agent's phone number. When false, Phonic will transfer the call using the phone number of the party to whom the agent is connected. This is only available for built_in_transfer_to_phone_number tools. */
213
213
  use_agent_phone_number?: boolean;
214
214
  /** When true, Phonic will listen in and tell the user if the transfer hits voicemail. This is only available for built_in_transfer_to_phone_number tools when use_agent_phone_number is true. */
215
215
  detect_voicemail?: boolean;
216
- /** When true, Phonic bridges the transfer and stays on the call. When false, the call is handed off with a SIP REFER and Phonic drops out, which requires use_agent_phone_number and detect_voicemail to be false, dtmf and post_transfer_message to be null and dynamic_dtmf to be false. Only available for built_in_transfer_to_phone_number tools. Defaults to the value of use_agent_phone_number. */
216
+ /** When true, Phonic bridges the transfer and stays on the call. When false, Phonic drops out once the transfer connects, which requires use_agent_phone_number and detect_voicemail to be false and post_transfer_message to be null. Without DTMF the call is handed off with a SIP REFER; with DTMF (static or dynamic) Phonic bridges the call to send the digits and then detaches, leaving the two parties connected. Only available for built_in_transfer_to_phone_number tools. Defaults to the value of use_agent_phone_number. */
217
217
  keep_listening?: boolean;
218
218
  /** Array of agent names that the LLM can choose from when transferring. Required for built_in_transfer_to_agent tools. All agents must exist in the same project as the tool. */
219
219
  agents_to_transfer_to?: string[];
@@ -47,13 +47,13 @@ export interface UpdateToolRequest {
47
47
  dtmf?: string | null;
48
48
  /** Fixed line the agent speaks into the bridged call once the transfer connects. Can be set to null to remove the announcement. Must be null when the resulting keep_listening is false. Only applicable to built_in_transfer_to_phone_number tools. */
49
49
  post_transfer_message?: string | null;
50
- /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. Only sent when use_agent_phone_number is true (not on a SIP REFER transfer). */
50
+ /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. */
51
51
  dynamic_dtmf?: boolean;
52
52
  /** When true, Phonic will transfer the call using the agent's phone number. When false, Phonic will transfer the call using the phone number of the party to whom the agent is connected. This is only available for built_in_transfer_to_phone_number tools. */
53
53
  use_agent_phone_number?: boolean;
54
54
  /** When true, Phonic will listen in and tell the user if the transfer hits voicemail. This is only available for built_in_transfer_to_phone_number tools when use_agent_phone_number is true. */
55
55
  detect_voicemail?: boolean;
56
- /** When true, Phonic bridges the transfer and stays on the call. When false, the call is handed off with a SIP REFER and Phonic drops out, which requires the resulting use_agent_phone_number and detect_voicemail to be false, dtmf and post_transfer_message to be null and dynamic_dtmf to be false. Only applicable to built_in_transfer_to_phone_number tools. */
56
+ /** When true, Phonic bridges the transfer and stays on the call. When false, Phonic drops out once the transfer connects, which requires the resulting use_agent_phone_number and detect_voicemail to be false and post_transfer_message to be null. Without DTMF the call is handed off with a SIP REFER; with DTMF (static or dynamic) Phonic bridges the call to send the digits and then detaches, leaving the two parties connected. Only applicable to built_in_transfer_to_phone_number tools. */
57
57
  keep_listening?: boolean;
58
58
  /** Array of agent names that the LLM can choose from when transferring. All agents must exist in the same project as the tool. */
59
59
  agents_to_transfer_to?: string[];
@@ -38,13 +38,13 @@ export interface Tool {
38
38
  dtmf?: (string | null) | undefined;
39
39
  /** Fixed line the agent speaks into the bridged call once the transfer connects. Defaults to null, meaning no announcement. Always null when keep_listening is false. Only returned for built_in_transfer_to_phone_number tools. */
40
40
  post_transfer_message?: (string | null) | undefined;
41
- /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. Only sent when use_agent_phone_number is true (not on a SIP REFER transfer). */
41
+ /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. */
42
42
  dynamic_dtmf?: boolean | undefined;
43
43
  /** When true, Phonic will transfer the call using the agent's phone number. When false, Phonic will transfer the call using the phone number of the party to whom the agent is connected. This is only available for built_in_transfer_to_phone_number tools. */
44
44
  use_agent_phone_number?: boolean | undefined;
45
45
  /** When true, Phonic will listen in and tell the user if the transfer hits voicemail. This is only available for built_in_transfer_to_phone_number tools when use_agent_phone_number is true. */
46
46
  detect_voicemail?: boolean | undefined;
47
- /** When true, Phonic bridges the transfer and stays on the call. When false, the call is handed off with a SIP REFER and Phonic drops out, so use_agent_phone_number, detect_voicemail and dynamic_dtmf are false and dtmf and post_transfer_message are null. Only returned for built_in_transfer_to_phone_number tools. */
47
+ /** When true, Phonic bridges the transfer and stays on the call. When false, Phonic drops out once the transfer connects, so use_agent_phone_number and detect_voicemail are false and post_transfer_message is null. Without DTMF the call is handed off with a SIP REFER; with DTMF (static or dynamic) Phonic bridges the call to send the digits and then detaches, leaving the two parties connected. Only returned for built_in_transfer_to_phone_number tools. */
48
48
  keep_listening?: boolean | undefined;
49
49
  /** Array of agent names that the LLM can choose from when transferring. Required for built_in_transfer_to_agent tools. */
50
50
  agents_to_transfer_to?: string[] | undefined;
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.32.25";
1
+ export declare const SDK_VERSION = "0.32.27";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.32.25";
4
+ exports.SDK_VERSION = "0.32.27";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "phonic",
9
- "X-Fern-SDK-Version": "0.32.25",
10
- "User-Agent": "phonic/0.32.25",
9
+ "X-Fern-SDK-Version": "0.32.27",
10
+ "User-Agent": "phonic/0.32.27",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -77,6 +77,7 @@ export declare class ResponsesClient {
77
77
  * additionalProperties: false
78
78
  * }
79
79
  * }],
80
+ * phonic_model: "phonic_v1",
80
81
  * num_responses: 2
81
82
  * })
82
83
  *
@@ -86,6 +86,7 @@ export class ResponsesClient {
86
86
  * additionalProperties: false
87
87
  * }
88
88
  * }],
89
+ * phonic_model: "phonic_v1",
89
90
  * num_responses: 2
90
91
  * })
91
92
  *
@@ -25,6 +25,7 @@ import type * as Phonic from "../../../../index.mjs";
25
25
  * additionalProperties: false
26
26
  * }
27
27
  * }],
28
+ * phonic_model: "phonic_v1",
28
29
  * num_responses: 2
29
30
  * }
30
31
  *
@@ -62,6 +63,17 @@ export interface GenerateResponsesRequest {
62
63
  project?: string;
63
64
  /** Tools the assistant may call that already exist - a built-in tool, or a transfer tool stored in `project`, referenced by name. Names must be unique and must not repeat a name in `tool_definitions`. Stored tools that are not transfer tools cannot be referenced here yet; define them inline as `tool_definitions` instead. */
64
65
  tools?: Phonic.ResponsesTool[];
66
+ /** The Phonic speech-to-speech model to generate with. Omit it to use the current default model. */
67
+ phonic_model?: GenerateResponsesRequest.PhonicModel;
65
68
  /** Number of alternative responses to generate. */
66
69
  num_responses?: number;
67
70
  }
71
+ export declare namespace GenerateResponsesRequest {
72
+ /** The Phonic speech-to-speech model to generate with. Omit it to use the current default model. */
73
+ const PhonicModel: {
74
+ readonly PhonicV05: "phonic_v0_5";
75
+ readonly PhonicV1: "phonic_v1";
76
+ readonly PhonicV11: "phonic_v1_1";
77
+ };
78
+ type PhonicModel = (typeof PhonicModel)[keyof typeof PhonicModel];
79
+ }
@@ -1,2 +1,10 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
- export {};
2
+ export var GenerateResponsesRequest;
3
+ (function (GenerateResponsesRequest) {
4
+ /** The Phonic speech-to-speech model to generate with. Omit it to use the current default model. */
5
+ GenerateResponsesRequest.PhonicModel = {
6
+ PhonicV05: "phonic_v0_5",
7
+ PhonicV1: "phonic_v1",
8
+ PhonicV11: "phonic_v1_1",
9
+ };
10
+ })(GenerateResponsesRequest || (GenerateResponsesRequest = {}));
@@ -1 +1 @@
1
- export type { GenerateResponsesRequest } from "./GenerateResponsesRequest.mjs";
1
+ export { GenerateResponsesRequest } from "./GenerateResponsesRequest.mjs";
@@ -1 +1 @@
1
- export {};
1
+ export { GenerateResponsesRequest } from "./GenerateResponsesRequest.mjs";
@@ -205,15 +205,15 @@ export interface CreateToolRequest {
205
205
  phone_number?: string | null;
206
206
  /** DTMF digits to send after the transfer connects (e.g., "1234"). Defaults to null. Ignored when dynamic_dtmf is true. */
207
207
  dtmf?: string | null;
208
- /** Fixed line the agent speaks into the bridged call once the transfer connects. Defaults to null, meaning no announcement. Must be null when keep_listening is false, since a SIP REFER transfer has no bridged call to speak it on. Only available for built_in_transfer_to_phone_number tools. */
208
+ /** Fixed line the agent speaks into the bridged call once the transfer connects. Defaults to null, meaning no announcement. Must be null when keep_listening is false, since Phonic drops out of the call and has no line to speak it on. Only available for built_in_transfer_to_phone_number tools. */
209
209
  post_transfer_message?: string | null;
210
- /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. Only sent when use_agent_phone_number is true (not on a SIP REFER transfer). */
210
+ /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. */
211
211
  dynamic_dtmf?: boolean;
212
212
  /** When true, Phonic will transfer the call using the agent's phone number. When false, Phonic will transfer the call using the phone number of the party to whom the agent is connected. This is only available for built_in_transfer_to_phone_number tools. */
213
213
  use_agent_phone_number?: boolean;
214
214
  /** When true, Phonic will listen in and tell the user if the transfer hits voicemail. This is only available for built_in_transfer_to_phone_number tools when use_agent_phone_number is true. */
215
215
  detect_voicemail?: boolean;
216
- /** When true, Phonic bridges the transfer and stays on the call. When false, the call is handed off with a SIP REFER and Phonic drops out, which requires use_agent_phone_number and detect_voicemail to be false, dtmf and post_transfer_message to be null and dynamic_dtmf to be false. Only available for built_in_transfer_to_phone_number tools. Defaults to the value of use_agent_phone_number. */
216
+ /** When true, Phonic bridges the transfer and stays on the call. When false, Phonic drops out once the transfer connects, which requires use_agent_phone_number and detect_voicemail to be false and post_transfer_message to be null. Without DTMF the call is handed off with a SIP REFER; with DTMF (static or dynamic) Phonic bridges the call to send the digits and then detaches, leaving the two parties connected. Only available for built_in_transfer_to_phone_number tools. Defaults to the value of use_agent_phone_number. */
217
217
  keep_listening?: boolean;
218
218
  /** Array of agent names that the LLM can choose from when transferring. Required for built_in_transfer_to_agent tools. All agents must exist in the same project as the tool. */
219
219
  agents_to_transfer_to?: string[];
@@ -47,13 +47,13 @@ export interface UpdateToolRequest {
47
47
  dtmf?: string | null;
48
48
  /** Fixed line the agent speaks into the bridged call once the transfer connects. Can be set to null to remove the announcement. Must be null when the resulting keep_listening is false. Only applicable to built_in_transfer_to_phone_number tools. */
49
49
  post_transfer_message?: string | null;
50
- /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. Only sent when use_agent_phone_number is true (not on a SIP REFER transfer). */
50
+ /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. */
51
51
  dynamic_dtmf?: boolean;
52
52
  /** When true, Phonic will transfer the call using the agent's phone number. When false, Phonic will transfer the call using the phone number of the party to whom the agent is connected. This is only available for built_in_transfer_to_phone_number tools. */
53
53
  use_agent_phone_number?: boolean;
54
54
  /** When true, Phonic will listen in and tell the user if the transfer hits voicemail. This is only available for built_in_transfer_to_phone_number tools when use_agent_phone_number is true. */
55
55
  detect_voicemail?: boolean;
56
- /** When true, Phonic bridges the transfer and stays on the call. When false, the call is handed off with a SIP REFER and Phonic drops out, which requires the resulting use_agent_phone_number and detect_voicemail to be false, dtmf and post_transfer_message to be null and dynamic_dtmf to be false. Only applicable to built_in_transfer_to_phone_number tools. */
56
+ /** When true, Phonic bridges the transfer and stays on the call. When false, Phonic drops out once the transfer connects, which requires the resulting use_agent_phone_number and detect_voicemail to be false and post_transfer_message to be null. Without DTMF the call is handed off with a SIP REFER; with DTMF (static or dynamic) Phonic bridges the call to send the digits and then detaches, leaving the two parties connected. Only applicable to built_in_transfer_to_phone_number tools. */
57
57
  keep_listening?: boolean;
58
58
  /** Array of agent names that the LLM can choose from when transferring. All agents must exist in the same project as the tool. */
59
59
  agents_to_transfer_to?: string[];
@@ -38,13 +38,13 @@ export interface Tool {
38
38
  dtmf?: (string | null) | undefined;
39
39
  /** Fixed line the agent speaks into the bridged call once the transfer connects. Defaults to null, meaning no announcement. Always null when keep_listening is false. Only returned for built_in_transfer_to_phone_number tools. */
40
40
  post_transfer_message?: (string | null) | undefined;
41
- /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. Only sent when use_agent_phone_number is true (not on a SIP REFER transfer). */
41
+ /** When true, the agent determines the DTMF digits at call time (and may choose to send none); the static dtmf is ignored. */
42
42
  dynamic_dtmf?: boolean | undefined;
43
43
  /** When true, Phonic will transfer the call using the agent's phone number. When false, Phonic will transfer the call using the phone number of the party to whom the agent is connected. This is only available for built_in_transfer_to_phone_number tools. */
44
44
  use_agent_phone_number?: boolean | undefined;
45
45
  /** When true, Phonic will listen in and tell the user if the transfer hits voicemail. This is only available for built_in_transfer_to_phone_number tools when use_agent_phone_number is true. */
46
46
  detect_voicemail?: boolean | undefined;
47
- /** When true, Phonic bridges the transfer and stays on the call. When false, the call is handed off with a SIP REFER and Phonic drops out, so use_agent_phone_number, detect_voicemail and dynamic_dtmf are false and dtmf and post_transfer_message are null. Only returned for built_in_transfer_to_phone_number tools. */
47
+ /** When true, Phonic bridges the transfer and stays on the call. When false, Phonic drops out once the transfer connects, so use_agent_phone_number and detect_voicemail are false and post_transfer_message is null. Without DTMF the call is handed off with a SIP REFER; with DTMF (static or dynamic) Phonic bridges the call to send the digits and then detaches, leaving the two parties connected. Only returned for built_in_transfer_to_phone_number tools. */
48
48
  keep_listening?: boolean | undefined;
49
49
  /** Array of agent names that the LLM can choose from when transferring. Required for built_in_transfer_to_agent tools. */
50
50
  agents_to_transfer_to?: string[] | undefined;
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.32.25";
1
+ export declare const SDK_VERSION = "0.32.27";
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.32.25";
1
+ export const SDK_VERSION = "0.32.27";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phonic",
3
- "version": "0.32.25",
3
+ "version": "0.32.27",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/reference.md CHANGED
@@ -4100,6 +4100,7 @@ await client.responses.create({
4100
4100
  additionalProperties: false
4101
4101
  }
4102
4102
  }],
4103
+ phonic_model: "phonic_v1",
4103
4104
  num_responses: 2
4104
4105
  });
4105
4106