@letta-ai/letta-client 0.1.129 → 0.1.131
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.
- package/api/resources/agents/client/Client.js +10 -10
- package/api/resources/agents/resources/blocks/client/Client.js +5 -5
- package/api/resources/agents/resources/context/client/Client.js +1 -1
- package/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
- package/api/resources/agents/resources/groups/client/Client.js +1 -1
- package/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
- package/api/resources/agents/resources/messages/client/Client.d.ts +11 -9
- package/api/resources/agents/resources/messages/client/Client.js +23 -15
- package/api/resources/agents/resources/messages/client/requests/MessagesCreateAsyncRequest.d.ts +25 -0
- package/api/resources/agents/resources/messages/client/requests/index.d.ts +1 -0
- package/api/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +1 -1
- package/api/resources/agents/resources/passages/client/Client.js +4 -4
- package/api/resources/agents/resources/sources/client/Client.js +3 -3
- package/api/resources/agents/resources/templates/client/Client.js +3 -3
- package/api/resources/agents/resources/tools/client/Client.js +3 -3
- package/api/resources/batches/client/Client.js +4 -4
- package/api/resources/blocks/client/Client.js +6 -6
- package/api/resources/blocks/resources/agents/client/Client.js +1 -1
- package/api/resources/clientSideAccessTokens/client/Client.js +2 -2
- package/api/resources/embeddingModels/client/Client.js +1 -1
- package/api/resources/groups/client/Client.js +6 -6
- package/api/resources/groups/resources/messages/client/Client.js +5 -5
- package/api/resources/health/client/Client.js +1 -1
- package/api/resources/identities/client/Client.js +7 -7
- package/api/resources/identities/resources/properties/client/Client.js +1 -1
- package/api/resources/index.d.ts +1 -2
- package/api/resources/index.js +2 -3
- package/api/resources/jobs/client/Client.js +4 -4
- package/api/resources/messages/client/Client.js +1 -1
- package/api/resources/models/client/Client.js +1 -1
- package/api/resources/projects/client/Client.js +1 -1
- package/api/resources/providers/client/Client.js +5 -5
- package/api/resources/runs/client/Client.js +4 -4
- package/api/resources/runs/resources/messages/client/Client.js +1 -1
- package/api/resources/runs/resources/steps/client/Client.js +1 -1
- package/api/resources/runs/resources/usage/client/Client.js +1 -1
- package/api/resources/sources/client/Client.js +7 -7
- package/api/resources/sources/resources/files/client/Client.js +3 -3
- package/api/resources/sources/resources/passages/client/Client.js +1 -1
- package/api/resources/steps/client/Client.js +2 -2
- package/api/resources/tags/client/Client.js +1 -1
- package/api/resources/telemetry/client/Client.js +1 -1
- package/api/resources/templates/client/Client.js +1 -1
- package/api/resources/templates/resources/agents/client/Client.js +1 -1
- package/api/resources/tools/client/Client.js +17 -17
- package/api/resources/tools/client/requests/ToolRunFromSource.d.ts +3 -0
- package/api/resources/tools/client/requests/ToolUpdate.d.ts +3 -0
- package/api/resources/voice/client/Client.d.ts +1 -5
- package/api/resources/voice/client/Client.js +3 -7
- package/api/resources/voice/client/requests/CreateVoiceChatCompletionsRequest.d.ts +2 -7
- package/api/resources/voice/index.d.ts +0 -1
- package/api/resources/voice/index.js +0 -1
- package/api/types/BatchJob.d.ts +2 -0
- package/api/types/Job.d.ts +2 -0
- package/api/types/LettaResponse.d.ts +1 -0
- package/api/types/LettaStopReason.d.ts +13 -0
- package/api/types/McpServerType.d.ts +2 -1
- package/api/types/McpServerType.js +1 -0
- package/api/types/McpTool.d.ts +2 -0
- package/api/types/Run.d.ts +2 -0
- package/api/types/SseServerConfig.d.ts +16 -0
- package/api/types/StopReasonType.d.ts +12 -0
- package/api/types/StopReasonType.js +14 -0
- package/api/types/Tool.d.ts +2 -0
- package/api/types/ToolAnnotations.d.ts +22 -0
- package/api/types/ToolAnnotations.js +5 -0
- package/api/types/ToolCreate.d.ts +3 -0
- package/api/types/index.d.ts +3 -0
- package/api/types/index.js +3 -0
- package/dist/api/resources/agents/client/Client.js +10 -10
- package/dist/api/resources/agents/resources/blocks/client/Client.js +5 -5
- package/dist/api/resources/agents/resources/context/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/groups/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/messages/client/Client.d.ts +11 -9
- package/dist/api/resources/agents/resources/messages/client/Client.js +23 -15
- package/dist/api/resources/agents/resources/messages/client/requests/MessagesCreateAsyncRequest.d.ts +25 -0
- package/dist/api/resources/agents/resources/messages/client/requests/MessagesCreateAsyncRequest.js +5 -0
- package/dist/api/resources/agents/resources/messages/client/requests/index.d.ts +1 -0
- package/dist/api/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +1 -1
- package/dist/api/resources/agents/resources/passages/client/Client.js +4 -4
- package/dist/api/resources/agents/resources/sources/client/Client.js +3 -3
- package/dist/api/resources/agents/resources/templates/client/Client.js +3 -3
- package/dist/api/resources/agents/resources/tools/client/Client.js +3 -3
- package/dist/api/resources/batches/client/Client.js +4 -4
- package/dist/api/resources/blocks/client/Client.js +6 -6
- package/dist/api/resources/blocks/resources/agents/client/Client.js +1 -1
- package/dist/api/resources/clientSideAccessTokens/client/Client.js +2 -2
- package/dist/api/resources/embeddingModels/client/Client.js +1 -1
- package/dist/api/resources/groups/client/Client.js +6 -6
- package/dist/api/resources/groups/resources/messages/client/Client.js +5 -5
- package/dist/api/resources/health/client/Client.js +1 -1
- package/dist/api/resources/identities/client/Client.js +7 -7
- package/dist/api/resources/identities/resources/properties/client/Client.js +1 -1
- package/dist/api/resources/index.d.ts +1 -2
- package/dist/api/resources/index.js +2 -3
- package/dist/api/resources/jobs/client/Client.js +4 -4
- package/dist/api/resources/messages/client/Client.js +1 -1
- package/dist/api/resources/models/client/Client.js +1 -1
- package/dist/api/resources/projects/client/Client.js +1 -1
- package/dist/api/resources/providers/client/Client.js +5 -5
- package/dist/api/resources/runs/client/Client.js +4 -4
- package/dist/api/resources/runs/resources/messages/client/Client.js +1 -1
- package/dist/api/resources/runs/resources/steps/client/Client.js +1 -1
- package/dist/api/resources/runs/resources/usage/client/Client.js +1 -1
- package/dist/api/resources/sources/client/Client.js +7 -7
- package/dist/api/resources/sources/resources/files/client/Client.js +3 -3
- package/dist/api/resources/sources/resources/passages/client/Client.js +1 -1
- package/dist/api/resources/steps/client/Client.js +2 -2
- package/dist/api/resources/tags/client/Client.js +1 -1
- package/dist/api/resources/telemetry/client/Client.js +1 -1
- package/dist/api/resources/templates/client/Client.js +1 -1
- package/dist/api/resources/templates/resources/agents/client/Client.js +1 -1
- package/dist/api/resources/tools/client/Client.js +17 -17
- package/dist/api/resources/tools/client/requests/ToolRunFromSource.d.ts +3 -0
- package/dist/api/resources/tools/client/requests/ToolUpdate.d.ts +3 -0
- package/dist/api/resources/voice/client/Client.d.ts +1 -5
- package/dist/api/resources/voice/client/Client.js +3 -7
- package/dist/api/resources/voice/client/requests/CreateVoiceChatCompletionsRequest.d.ts +2 -7
- package/dist/api/resources/voice/index.d.ts +0 -1
- package/dist/api/resources/voice/index.js +0 -1
- package/dist/api/types/BatchJob.d.ts +2 -0
- package/dist/api/types/Job.d.ts +2 -0
- package/dist/api/types/LettaResponse.d.ts +1 -0
- package/dist/api/types/LettaStopReason.d.ts +13 -0
- package/dist/api/types/LettaStopReason.js +5 -0
- package/dist/api/types/McpServerType.d.ts +2 -1
- package/dist/api/types/McpServerType.js +1 -0
- package/dist/api/types/McpTool.d.ts +2 -0
- package/dist/api/types/Run.d.ts +2 -0
- package/dist/api/types/SseServerConfig.d.ts +16 -0
- package/dist/api/types/StopReasonType.d.ts +12 -0
- package/dist/api/types/StopReasonType.js +14 -0
- package/dist/api/types/Tool.d.ts +2 -0
- package/dist/api/types/ToolAnnotations.d.ts +22 -0
- package/dist/api/types/ToolAnnotations.js +5 -0
- package/dist/api/types/ToolCreate.d.ts +3 -0
- package/dist/api/types/index.d.ts +3 -0
- package/dist/api/types/index.js +3 -0
- package/dist/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +2 -1
- package/dist/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.js +2 -0
- package/dist/serialization/resources/index.d.ts +1 -2
- package/dist/serialization/resources/index.js +2 -3
- package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +2 -0
- package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.js +2 -0
- package/dist/serialization/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
- package/dist/serialization/resources/tools/client/requests/ToolUpdate.js +2 -0
- package/dist/serialization/resources/voice/client/createVoiceChatCompletions.d.ts +9 -0
- package/dist/serialization/resources/voice/{types/CreateVoiceChatCompletionsRequestBody.js → client/createVoiceChatCompletions.js} +2 -4
- package/dist/serialization/resources/voice/client/index.d.ts +1 -0
- package/dist/serialization/resources/voice/client/index.js +37 -0
- package/dist/serialization/resources/voice/index.d.ts +1 -1
- package/dist/serialization/resources/voice/index.js +1 -1
- package/dist/serialization/types/BatchJob.d.ts +1 -0
- package/dist/serialization/types/BatchJob.js +1 -0
- package/dist/serialization/types/Job.d.ts +1 -0
- package/dist/serialization/types/Job.js +1 -0
- package/dist/serialization/types/LettaResponse.d.ts +2 -0
- package/dist/serialization/types/LettaResponse.js +2 -0
- package/dist/serialization/types/LettaStopReason.d.ts +14 -0
- package/dist/serialization/types/LettaStopReason.js +45 -0
- package/dist/serialization/types/McpServerType.d.ts +1 -1
- package/dist/serialization/types/McpServerType.js +1 -1
- package/dist/serialization/types/McpTool.d.ts +2 -0
- package/dist/serialization/types/McpTool.js +2 -0
- package/dist/serialization/types/Run.d.ts +1 -0
- package/dist/serialization/types/Run.js +1 -0
- package/dist/serialization/types/SseServerConfig.d.ts +3 -0
- package/dist/serialization/types/SseServerConfig.js +3 -0
- package/dist/serialization/types/StopReasonType.d.ts +10 -0
- package/dist/serialization/types/StopReasonType.js +41 -0
- package/dist/serialization/types/Tool.d.ts +2 -0
- package/dist/serialization/types/Tool.js +2 -0
- package/dist/serialization/types/ToolAnnotations.d.ts +17 -0
- package/dist/serialization/types/ToolAnnotations.js +49 -0
- package/dist/serialization/types/ToolCreate.d.ts +2 -0
- package/dist/serialization/types/ToolCreate.js +2 -0
- package/dist/serialization/types/index.d.ts +3 -0
- package/dist/serialization/types/index.js +3 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +15 -19
- package/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +2 -1
- package/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.js +2 -0
- package/serialization/resources/index.d.ts +1 -2
- package/serialization/resources/index.js +2 -3
- package/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +2 -0
- package/serialization/resources/tools/client/requests/ToolRunFromSource.js +2 -0
- package/serialization/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
- package/serialization/resources/tools/client/requests/ToolUpdate.js +2 -0
- package/serialization/resources/voice/client/createVoiceChatCompletions.d.ts +9 -0
- package/serialization/resources/voice/{types/CreateVoiceChatCompletionsRequestBody.js → client/createVoiceChatCompletions.js} +2 -4
- package/serialization/resources/voice/client/index.d.ts +1 -0
- package/serialization/resources/voice/client/index.js +37 -0
- package/serialization/resources/voice/index.d.ts +1 -1
- package/serialization/resources/voice/index.js +1 -1
- package/serialization/types/BatchJob.d.ts +1 -0
- package/serialization/types/BatchJob.js +1 -0
- package/serialization/types/Job.d.ts +1 -0
- package/serialization/types/Job.js +1 -0
- package/serialization/types/LettaResponse.d.ts +2 -0
- package/serialization/types/LettaResponse.js +2 -0
- package/serialization/types/LettaStopReason.d.ts +14 -0
- package/serialization/types/LettaStopReason.js +45 -0
- package/serialization/types/McpServerType.d.ts +1 -1
- package/serialization/types/McpServerType.js +1 -1
- package/serialization/types/McpTool.d.ts +2 -0
- package/serialization/types/McpTool.js +2 -0
- package/serialization/types/Run.d.ts +1 -0
- package/serialization/types/Run.js +1 -0
- package/serialization/types/SseServerConfig.d.ts +3 -0
- package/serialization/types/SseServerConfig.js +3 -0
- package/serialization/types/StopReasonType.d.ts +10 -0
- package/serialization/types/StopReasonType.js +41 -0
- package/serialization/types/Tool.d.ts +2 -0
- package/serialization/types/Tool.js +2 -0
- package/serialization/types/ToolAnnotations.d.ts +17 -0
- package/serialization/types/ToolAnnotations.js +49 -0
- package/serialization/types/ToolCreate.d.ts +2 -0
- package/serialization/types/ToolCreate.js +2 -0
- package/serialization/types/index.d.ts +3 -0
- package/serialization/types/index.js +3 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/resources/voice/types/CreateVoiceChatCompletionsRequestBody.d.ts +0 -5
- package/api/resources/voice/types/index.d.ts +0 -1
- package/api/resources/voice/types/index.js +0 -17
- package/dist/api/resources/voice/types/CreateVoiceChatCompletionsRequestBody.d.ts +0 -5
- package/dist/api/resources/voice/types/index.d.ts +0 -1
- package/dist/api/resources/voice/types/index.js +0 -17
- package/dist/serialization/resources/voice/types/CreateVoiceChatCompletionsRequestBody.d.ts +0 -12
- package/dist/serialization/resources/voice/types/index.d.ts +0 -1
- package/dist/serialization/resources/voice/types/index.js +0 -17
- package/serialization/resources/voice/types/CreateVoiceChatCompletionsRequestBody.d.ts +0 -12
- package/serialization/resources/voice/types/index.d.ts +0 -1
- package/serialization/resources/voice/types/index.js +0 -17
- /package/api/resources/{voice/types/CreateVoiceChatCompletionsRequestBody.js → agents/resources/messages/client/requests/MessagesCreateAsyncRequest.js} +0 -0
- /package/{dist/api/resources/voice/types/CreateVoiceChatCompletionsRequestBody.js → api/types/LettaStopReason.js} +0 -0
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
import * as serializers from "../index";
|
|
5
5
|
import * as Letta from "../../api/index";
|
|
6
6
|
import * as core from "../../core";
|
|
7
|
+
import { PipRequirement } from "./PipRequirement";
|
|
7
8
|
export declare const ToolCreate: core.serialization.ObjectSchema<serializers.ToolCreate.Raw, Letta.ToolCreate>;
|
|
8
9
|
export declare namespace ToolCreate {
|
|
9
10
|
interface Raw {
|
|
@@ -14,5 +15,6 @@ export declare namespace ToolCreate {
|
|
|
14
15
|
json_schema?: Record<string, unknown> | null;
|
|
15
16
|
args_json_schema?: Record<string, unknown> | null;
|
|
16
17
|
return_char_limit?: number | null;
|
|
18
|
+
pip_requirements?: PipRequirement.Raw[] | null;
|
|
17
19
|
}
|
|
18
20
|
}
|
|
@@ -38,6 +38,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
exports.ToolCreate = void 0;
|
|
40
40
|
const core = __importStar(require("../../core"));
|
|
41
|
+
const PipRequirement_1 = require("./PipRequirement");
|
|
41
42
|
exports.ToolCreate = core.serialization.object({
|
|
42
43
|
description: core.serialization.string().optional(),
|
|
43
44
|
tags: core.serialization.list(core.serialization.string()).optional(),
|
|
@@ -46,4 +47,5 @@ exports.ToolCreate = core.serialization.object({
|
|
|
46
47
|
jsonSchema: core.serialization.property("json_schema", core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional()),
|
|
47
48
|
argsJsonSchema: core.serialization.property("args_json_schema", core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional()),
|
|
48
49
|
returnCharLimit: core.serialization.property("return_char_limit", core.serialization.number().optional()),
|
|
50
|
+
pipRequirements: core.serialization.property("pip_requirements", core.serialization.list(PipRequirement_1.PipRequirement).optional()),
|
|
49
51
|
});
|
|
@@ -130,6 +130,7 @@ export * from "./LettaImage";
|
|
|
130
130
|
export * from "./LettaRequest";
|
|
131
131
|
export * from "./LettaRequestConfig";
|
|
132
132
|
export * from "./LettaResponse";
|
|
133
|
+
export * from "./LettaStopReason";
|
|
133
134
|
export * from "./LettaStreamingRequest";
|
|
134
135
|
export * from "./LettaUsageStatistics";
|
|
135
136
|
export * from "./LocalSandboxConfig";
|
|
@@ -185,6 +186,7 @@ export * from "./SleeptimeManagerUpdate";
|
|
|
185
186
|
export * from "./Source";
|
|
186
187
|
export * from "./StdioServerConfig";
|
|
187
188
|
export * from "./Step";
|
|
189
|
+
export * from "./StopReasonType";
|
|
188
190
|
export * from "./SupervisorManager";
|
|
189
191
|
export * from "./SupervisorManagerUpdate";
|
|
190
192
|
export * from "./SystemMessage";
|
|
@@ -193,6 +195,7 @@ export * from "./TerminalToolRule";
|
|
|
193
195
|
export * from "./TextContent";
|
|
194
196
|
export * from "./TextResponseFormat";
|
|
195
197
|
export * from "./Tool";
|
|
198
|
+
export * from "./ToolAnnotations";
|
|
196
199
|
export * from "./ToolCall";
|
|
197
200
|
export * from "./ToolCallContent";
|
|
198
201
|
export * from "./ToolCallDelta";
|
|
@@ -146,6 +146,7 @@ __exportStar(require("./LettaImage"), exports);
|
|
|
146
146
|
__exportStar(require("./LettaRequest"), exports);
|
|
147
147
|
__exportStar(require("./LettaRequestConfig"), exports);
|
|
148
148
|
__exportStar(require("./LettaResponse"), exports);
|
|
149
|
+
__exportStar(require("./LettaStopReason"), exports);
|
|
149
150
|
__exportStar(require("./LettaStreamingRequest"), exports);
|
|
150
151
|
__exportStar(require("./LettaUsageStatistics"), exports);
|
|
151
152
|
__exportStar(require("./LocalSandboxConfig"), exports);
|
|
@@ -201,6 +202,7 @@ __exportStar(require("./SleeptimeManagerUpdate"), exports);
|
|
|
201
202
|
__exportStar(require("./Source"), exports);
|
|
202
203
|
__exportStar(require("./StdioServerConfig"), exports);
|
|
203
204
|
__exportStar(require("./Step"), exports);
|
|
205
|
+
__exportStar(require("./StopReasonType"), exports);
|
|
204
206
|
__exportStar(require("./SupervisorManager"), exports);
|
|
205
207
|
__exportStar(require("./SupervisorManagerUpdate"), exports);
|
|
206
208
|
__exportStar(require("./SystemMessage"), exports);
|
|
@@ -209,6 +211,7 @@ __exportStar(require("./TerminalToolRule"), exports);
|
|
|
209
211
|
__exportStar(require("./TextContent"), exports);
|
|
210
212
|
__exportStar(require("./TextResponseFormat"), exports);
|
|
211
213
|
__exportStar(require("./Tool"), exports);
|
|
214
|
+
__exportStar(require("./ToolAnnotations"), exports);
|
|
212
215
|
__exportStar(require("./ToolCall"), exports);
|
|
213
216
|
__exportStar(require("./ToolCallContent"), exports);
|
|
214
217
|
__exportStar(require("./ToolCallDelta"), exports);
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.1.
|
|
1
|
+
export declare const SDK_VERSION = "0.1.131";
|
package/version.js
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./CreateVoiceChatCompletionsRequestBody";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./CreateVoiceChatCompletionsRequestBody"), exports);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./CreateVoiceChatCompletionsRequestBody";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./CreateVoiceChatCompletionsRequestBody"), exports);
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "../../../index";
|
|
5
|
-
import * as Letta from "../../../../api/index";
|
|
6
|
-
import * as core from "../../../../core";
|
|
7
|
-
import { CompletionCreateParamsNonStreaming } from "../../../types/CompletionCreateParamsNonStreaming";
|
|
8
|
-
import { CompletionCreateParamsStreaming } from "../../../types/CompletionCreateParamsStreaming";
|
|
9
|
-
export declare const CreateVoiceChatCompletionsRequestBody: core.serialization.Schema<serializers.CreateVoiceChatCompletionsRequestBody.Raw, Letta.CreateVoiceChatCompletionsRequestBody>;
|
|
10
|
-
export declare namespace CreateVoiceChatCompletionsRequestBody {
|
|
11
|
-
type Raw = CompletionCreateParamsNonStreaming.Raw | CompletionCreateParamsStreaming.Raw;
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./CreateVoiceChatCompletionsRequestBody";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./CreateVoiceChatCompletionsRequestBody"), exports);
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "../../../index";
|
|
5
|
-
import * as Letta from "../../../../api/index";
|
|
6
|
-
import * as core from "../../../../core";
|
|
7
|
-
import { CompletionCreateParamsNonStreaming } from "../../../types/CompletionCreateParamsNonStreaming";
|
|
8
|
-
import { CompletionCreateParamsStreaming } from "../../../types/CompletionCreateParamsStreaming";
|
|
9
|
-
export declare const CreateVoiceChatCompletionsRequestBody: core.serialization.Schema<serializers.CreateVoiceChatCompletionsRequestBody.Raw, Letta.CreateVoiceChatCompletionsRequestBody>;
|
|
10
|
-
export declare namespace CreateVoiceChatCompletionsRequestBody {
|
|
11
|
-
type Raw = CompletionCreateParamsNonStreaming.Raw | CompletionCreateParamsStreaming.Raw;
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./CreateVoiceChatCompletionsRequestBody";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./CreateVoiceChatCompletionsRequestBody"), exports);
|
|
File without changes
|
|
File without changes
|