@letta-ai/letta-client 0.1.1 → 0.1.4
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/Client.d.ts +2 -2
- package/Client.js +1 -1
- package/README.md +1 -1
- package/api/resources/agents/client/Client.d.ts +21 -7
- package/api/resources/agents/client/Client.js +245 -60
- package/api/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +1 -1
- package/api/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +1 -1
- package/api/resources/agents/client/requests/AgentsListRequest.d.ts +9 -1
- package/api/resources/agents/client/requests/AgentsMigrateRequest.d.ts +4 -4
- package/api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +1 -1
- package/api/resources/agents/client/requests/CreateAgentRequest.d.ts +20 -16
- package/api/resources/agents/client/requests/UpdateAgent.d.ts +10 -8
- package/api/resources/agents/resources/archivalMemory/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/archivalMemory/client/Client.js +63 -19
- package/api/resources/agents/resources/context/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/context/client/Client.js +21 -7
- package/api/resources/agents/resources/memory/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/memory/client/Client.js +21 -7
- package/api/resources/agents/resources/memory/resources/messages/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/memory/resources/messages/client/Client.js +21 -7
- package/api/resources/agents/resources/memoryBlocks/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/memoryBlocks/client/Client.js +38 -12
- package/api/resources/agents/resources/messages/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/messages/client/Client.js +75 -23
- package/api/resources/agents/resources/messages/client/requests/LettaStreamingRequest.d.ts +12 -3
- package/api/resources/agents/resources/messages/client/requests/MessageUpdate.d.ts +2 -2
- package/api/resources/agents/resources/messages/client/requests/MessagesListRequest.d.ts +3 -3
- package/api/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +24 -1
- package/api/resources/agents/resources/messages/types/MessagesListResponseItem.d.ts +21 -1
- package/api/resources/agents/resources/recallMemory/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/recallMemory/client/Client.js +21 -7
- package/api/resources/agents/resources/sources/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/sources/client/Client.js +21 -7
- package/api/resources/agents/resources/tools/client/Client.d.ts +5 -3
- package/api/resources/agents/resources/tools/client/Client.js +53 -15
- package/api/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +6 -0
- package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +12 -1
- package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +8 -0
- package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemOperatorOperator.d.ts → AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts} +2 -2
- package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOperatorOperator.js → api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js} +2 -2
- package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +8 -0
- package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemDirectionDirection.d.ts → api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts} +2 -2
- package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemDirectionDirection.js → api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js} +2 -2
- package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemDirectionValue.d.ts → AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts} +2 -2
- package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemDirectionValue.js → AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js} +2 -2
- package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemZero.d.ts → api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts} +1 -2
- package/api/resources/agents/types/index.d.ts +7 -6
- package/api/resources/agents/types/index.js +7 -6
- package/api/resources/blocks/client/Client.d.ts +7 -5
- package/api/resources/blocks/client/Client.js +110 -36
- package/api/resources/blocks/client/requests/BlocksListRequest.d.ts +1 -1
- package/api/resources/blocks/client/requests/LinkAgentMemoryBlockRequest.d.ts +2 -2
- package/api/resources/blocks/client/requests/UnlinkAgentMemoryBlockRequest.d.ts +2 -2
- package/api/resources/health/client/Client.d.ts +5 -3
- package/api/resources/health/client/Client.js +14 -6
- package/api/resources/jobs/client/Client.d.ts +5 -3
- package/api/resources/jobs/client/Client.js +70 -20
- package/api/resources/jobs/client/requests/JobsListRequest.d.ts +1 -1
- package/api/resources/models/client/Client.d.ts +5 -3
- package/api/resources/models/client/Client.js +23 -9
- package/api/resources/sources/client/Client.d.ts +7 -5
- package/api/resources/sources/client/Client.js +132 -40
- package/api/resources/sources/client/requests/SourceCreate.d.ts +2 -2
- package/api/resources/sources/client/requests/SourceUpdate.d.ts +2 -2
- package/api/resources/sources/client/requests/SourcesAttachRequest.d.ts +2 -2
- package/api/resources/sources/client/requests/SourcesDetachRequest.d.ts +2 -2
- package/api/resources/sources/resources/files/client/Client.d.ts +5 -3
- package/api/resources/sources/resources/files/client/Client.js +46 -14
- package/api/resources/sources/resources/passages/client/Client.d.ts +5 -3
- package/api/resources/sources/resources/passages/client/Client.js +21 -7
- package/api/resources/tools/client/Client.d.ts +8 -6
- package/api/resources/tools/client/Client.js +197 -57
- package/api/resources/tools/client/requests/ToolRunFromSource.d.ts +3 -3
- package/api/resources/tools/client/requests/ToolUpdate.d.ts +3 -3
- package/api/types/ActionModel.d.ts +1 -1
- package/api/types/AgentEnvironmentVariable.d.ts +25 -0
- package/api/types/AgentState.d.ts +22 -20
- package/api/types/AppAuthScheme.d.ts +8 -8
- package/api/types/AppModel.d.ts +4 -4
- package/api/types/AssistantFile.d.ts +2 -2
- package/api/types/AssistantMessageInput.d.ts +1 -1
- package/api/types/AssistantMessageOutput.d.ts +2 -3
- package/api/types/AuthResponse.d.ts +1 -1
- package/api/types/AuthSchemeField.d.ts +3 -3
- package/api/types/Block.d.ts +14 -14
- package/api/types/BlockUpdate.d.ts +2 -2
- package/api/types/ChatCompletionRequest.d.ts +9 -9
- package/api/types/ChatCompletionResponse.d.ts +2 -2
- package/api/types/ChildToolRule.d.ts +1 -1
- package/api/types/Choice.d.ts +1 -1
- package/api/types/ConditionalToolRule.d.ts +4 -4
- package/api/types/ContextWindowOverview.d.ts +17 -15
- package/api/types/CreateAssistantFileRequest.d.ts +1 -1
- package/api/types/CreateAssistantRequest.d.ts +2 -2
- package/api/types/CreateBlock.d.ts +2 -2
- package/api/types/E2BSandboxConfig.d.ts +1 -1
- package/api/types/EmbeddingConfig.d.ts +16 -16
- package/api/types/FileMetadata.d.ts +11 -11
- package/api/types/InitToolRule.d.ts +1 -1
- package/api/types/Job.d.ts +12 -12
- package/api/types/LettaRequest.d.ts +2 -2
- package/api/types/LettaResponse.d.ts +12 -62
- package/api/types/LettaResponseMessagesItem.d.ts +25 -0
- package/api/types/LettaSchemasLettaMessageToolCall.d.ts +1 -1
- package/api/types/LettaSchemasMessageMessage.d.ts +18 -18
- package/api/types/LettaSchemasOpenaiChatCompletionResponseMessage.d.ts +2 -2
- package/api/types/LettaSchemasToolTool.d.ts +12 -12
- package/api/types/LettaUsageStatistics.d.ts +8 -9
- package/api/types/LlmConfig.d.ts +11 -11
- package/api/types/LocalSandboxConfig.d.ts +3 -3
- package/api/types/Memory.d.ts +1 -1
- package/api/types/MessageContentLogProb.d.ts +1 -1
- package/api/types/OpenAiAssistant.d.ts +2 -2
- package/api/types/Organization.d.ts +1 -1
- package/api/types/Passage.d.ts +19 -19
- package/api/types/ReasoningMessage.d.ts +4 -5
- package/api/types/SandboxConfig.d.ts +5 -5
- package/api/types/SandboxEnvironmentVariable.d.ts +7 -7
- package/api/types/SandboxEnvironmentVariableUpdate.d.ts +0 -3
- package/api/types/Source.d.ts +13 -13
- package/api/types/SystemMessageOutput.d.ts +4 -5
- package/api/types/TerminalToolRule.d.ts +1 -1
- package/api/types/ToolCallDelta.d.ts +1 -1
- package/api/types/ToolCallMessage.d.ts +5 -6
- package/api/types/ToolCreate.d.ts +4 -4
- package/api/types/ToolMessage.d.ts +1 -1
- package/api/types/ToolReturnMessage.d.ts +10 -11
- package/api/types/UsageStatistics.d.ts +3 -3
- package/api/types/User.d.ts +7 -7
- package/api/types/UserCreate.d.ts +1 -1
- package/api/types/UserMessageOutput.d.ts +4 -5
- package/api/types/UserUpdate.d.ts +1 -1
- package/api/types/index.d.ts +2 -13
- package/api/types/index.js +2 -13
- package/core/index.d.ts +1 -1
- package/core/index.js +14 -1
- package/core/schemas/Schema.d.ts +85 -0
- package/core/schemas/Schema.js +22 -0
- package/core/schemas/builders/bigint/bigint.d.ts +2 -0
- package/core/schemas/builders/bigint/bigint.js +50 -0
- package/core/schemas/builders/bigint/index.d.ts +1 -0
- package/core/schemas/builders/bigint/index.js +5 -0
- package/core/schemas/builders/date/date.d.ts +2 -0
- package/core/schemas/builders/date/date.js +63 -0
- package/core/schemas/builders/date/index.d.ts +1 -0
- package/core/schemas/builders/date/index.js +5 -0
- package/core/schemas/builders/enum/enum.d.ts +2 -0
- package/core/schemas/builders/enum/enum.js +39 -0
- package/core/schemas/builders/enum/index.d.ts +1 -0
- package/core/schemas/builders/enum/index.js +5 -0
- package/core/schemas/builders/index.d.ts +14 -0
- package/core/schemas/builders/index.js +30 -0
- package/core/schemas/builders/lazy/index.d.ts +3 -0
- package/core/schemas/builders/lazy/index.js +7 -0
- package/core/schemas/builders/lazy/lazy.d.ts +5 -0
- package/core/schemas/builders/lazy/lazy.js +25 -0
- package/core/schemas/builders/lazy/lazyObject.d.ts +3 -0
- package/core/schemas/builders/lazy/lazyObject.js +12 -0
- package/core/schemas/builders/list/index.d.ts +1 -0
- package/core/schemas/builders/list/index.js +5 -0
- package/core/schemas/builders/list/list.d.ts +2 -0
- package/core/schemas/builders/list/list.js +55 -0
- package/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
- package/core/schemas/builders/literals/booleanLiteral.js +29 -0
- package/core/schemas/builders/literals/index.d.ts +2 -0
- package/core/schemas/builders/literals/index.js +7 -0
- package/core/schemas/builders/literals/stringLiteral.d.ts +2 -0
- package/core/schemas/builders/literals/stringLiteral.js +29 -0
- package/core/schemas/builders/object/index.d.ts +6 -0
- package/core/schemas/builders/object/index.js +11 -0
- package/core/schemas/builders/object/object.d.ts +3 -0
- package/core/schemas/builders/object/object.js +261 -0
- package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
- package/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
- package/core/schemas/builders/object/property.d.ts +8 -0
- package/core/schemas/builders/object/property.js +16 -0
- package/core/schemas/builders/object/types.d.ts +31 -0
- package/core/schemas/builders/object/types.js +2 -0
- package/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +9 -0
- package/core/schemas/builders/object-like/getObjectLikeUtils.js +54 -0
- package/core/schemas/builders/object-like/index.d.ts +2 -0
- package/core/schemas/builders/object-like/index.js +6 -0
- package/core/schemas/builders/object-like/types.d.ts +7 -0
- package/core/schemas/builders/object-like/types.js +2 -0
- package/core/schemas/builders/primitives/any.d.ts +1 -0
- package/core/schemas/builders/primitives/any.js +6 -0
- package/core/schemas/builders/primitives/boolean.d.ts +1 -0
- package/core/schemas/builders/primitives/boolean.js +25 -0
- package/core/schemas/builders/primitives/index.d.ts +5 -0
- package/core/schemas/builders/primitives/index.js +13 -0
- package/core/schemas/builders/primitives/number.d.ts +1 -0
- package/core/schemas/builders/primitives/number.js +25 -0
- package/core/schemas/builders/primitives/string.d.ts +1 -0
- package/core/schemas/builders/primitives/string.js +25 -0
- package/core/schemas/builders/primitives/unknown.d.ts +1 -0
- package/core/schemas/builders/primitives/unknown.js +6 -0
- package/core/schemas/builders/record/index.d.ts +2 -0
- package/core/schemas/builders/record/index.js +5 -0
- package/core/schemas/builders/record/record.d.ts +3 -0
- package/core/schemas/builders/record/record.js +95 -0
- package/core/schemas/builders/record/types.d.ts +4 -0
- package/core/schemas/builders/record/types.js +2 -0
- package/core/schemas/builders/schema-utils/JsonError.d.ts +5 -0
- package/core/schemas/builders/schema-utils/JsonError.js +12 -0
- package/core/schemas/builders/schema-utils/ParseError.d.ts +5 -0
- package/core/schemas/builders/schema-utils/ParseError.js +12 -0
- package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +17 -0
- package/core/schemas/builders/schema-utils/getSchemaUtils.js +82 -0
- package/core/schemas/builders/schema-utils/index.d.ts +4 -0
- package/core/schemas/builders/schema-utils/index.js +11 -0
- package/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +2 -0
- package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +10 -0
- package/core/schemas/builders/set/index.d.ts +1 -0
- package/core/schemas/builders/set/index.js +5 -0
- package/core/schemas/builders/set/set.d.ts +2 -0
- package/core/schemas/builders/set/set.js +44 -0
- package/core/schemas/builders/undiscriminated-union/index.d.ts +2 -0
- package/core/schemas/builders/undiscriminated-union/index.js +5 -0
- package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -0
- package/core/schemas/builders/undiscriminated-union/types.js +2 -0
- package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +3 -0
- package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +40 -0
- package/core/schemas/builders/union/discriminant.d.ts +5 -0
- package/core/schemas/builders/union/discriminant.js +10 -0
- package/core/schemas/builders/union/index.d.ts +4 -0
- package/core/schemas/builders/union/index.js +7 -0
- package/core/schemas/builders/union/types.d.ts +13 -0
- package/core/schemas/builders/union/types.js +2 -0
- package/core/schemas/builders/union/union.d.ts +4 -0
- package/core/schemas/builders/union/union.js +130 -0
- package/core/schemas/index.d.ts +2 -0
- package/core/schemas/index.js +17 -0
- package/core/schemas/utils/MaybePromise.d.ts +1 -0
- package/core/schemas/utils/MaybePromise.js +2 -0
- package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +7 -0
- package/core/schemas/utils/addQuestionMarksToNullableProperties.js +2 -0
- package/core/schemas/utils/createIdentitySchemaCreator.d.ts +2 -0
- package/core/schemas/utils/createIdentitySchemaCreator.js +16 -0
- package/core/schemas/utils/entries.d.ts +1 -0
- package/core/schemas/utils/entries.js +7 -0
- package/core/schemas/utils/filterObject.d.ts +1 -0
- package/core/schemas/utils/filterObject.js +14 -0
- package/core/schemas/utils/getErrorMessageForIncorrectType.d.ts +1 -0
- package/core/schemas/utils/getErrorMessageForIncorrectType.js +28 -0
- package/core/schemas/utils/isPlainObject.d.ts +1 -0
- package/core/schemas/utils/isPlainObject.js +18 -0
- package/core/schemas/utils/keys.d.ts +1 -0
- package/core/schemas/utils/keys.js +7 -0
- package/core/schemas/utils/maybeSkipValidation.d.ts +2 -0
- package/core/schemas/utils/maybeSkipValidation.js +28 -0
- package/core/schemas/utils/partition.d.ts +1 -0
- package/core/schemas/utils/partition.js +16 -0
- package/dist/Client.d.ts +2 -2
- package/dist/Client.js +1 -1
- package/dist/api/resources/agents/client/Client.d.ts +21 -7
- package/dist/api/resources/agents/client/Client.js +245 -60
- package/dist/api/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +1 -1
- package/dist/api/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +1 -1
- package/dist/api/resources/agents/client/requests/AgentsListRequest.d.ts +9 -1
- package/dist/api/resources/agents/client/requests/AgentsMigrateRequest.d.ts +4 -4
- package/dist/api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +1 -1
- package/dist/api/resources/agents/client/requests/CreateAgentRequest.d.ts +20 -16
- package/dist/api/resources/agents/client/requests/UpdateAgent.d.ts +10 -8
- package/dist/api/resources/agents/resources/archivalMemory/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/archivalMemory/client/Client.js +63 -19
- package/dist/api/resources/agents/resources/context/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/context/client/Client.js +21 -7
- package/dist/api/resources/agents/resources/memory/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/memory/client/Client.js +21 -7
- package/dist/api/resources/agents/resources/memory/resources/messages/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/memory/resources/messages/client/Client.js +21 -7
- package/dist/api/resources/agents/resources/memoryBlocks/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/memoryBlocks/client/Client.js +38 -12
- package/dist/api/resources/agents/resources/messages/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/messages/client/Client.js +75 -23
- package/dist/api/resources/agents/resources/messages/client/requests/LettaStreamingRequest.d.ts +12 -3
- package/dist/api/resources/agents/resources/messages/client/requests/MessageUpdate.d.ts +2 -2
- package/dist/api/resources/agents/resources/messages/client/requests/MessagesListRequest.d.ts +3 -3
- package/dist/api/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +24 -1
- package/dist/api/resources/agents/resources/messages/types/MessagesListResponseItem.d.ts +21 -1
- package/dist/api/resources/agents/resources/recallMemory/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/recallMemory/client/Client.js +21 -7
- package/dist/api/resources/agents/resources/sources/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/sources/client/Client.js +21 -7
- package/dist/api/resources/agents/resources/tools/client/Client.d.ts +5 -3
- package/dist/api/resources/agents/resources/tools/client/Client.js +53 -15
- package/dist/api/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +6 -0
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +12 -1
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +8 -0
- package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemOperatorOperator.d.ts → AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts} +2 -2
- package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOperatorOperator.js → dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js} +2 -2
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +8 -0
- package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemDirectionDirection.d.ts → dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts} +2 -2
- package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemDirectionDirection.js → dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js} +2 -2
- package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemDirectionValue.d.ts → AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts} +2 -2
- package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemDirectionValue.js → AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js} +2 -2
- package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemZero.d.ts → dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts} +1 -2
- package/dist/api/resources/agents/types/index.d.ts +7 -6
- package/dist/api/resources/agents/types/index.js +7 -6
- package/dist/api/resources/blocks/client/Client.d.ts +7 -5
- package/dist/api/resources/blocks/client/Client.js +110 -36
- package/dist/api/resources/blocks/client/requests/BlocksListRequest.d.ts +1 -1
- package/dist/api/resources/blocks/client/requests/LinkAgentMemoryBlockRequest.d.ts +2 -2
- package/dist/api/resources/blocks/client/requests/UnlinkAgentMemoryBlockRequest.d.ts +2 -2
- package/dist/api/resources/health/client/Client.d.ts +5 -3
- package/dist/api/resources/health/client/Client.js +14 -6
- package/dist/api/resources/jobs/client/Client.d.ts +5 -3
- package/dist/api/resources/jobs/client/Client.js +70 -20
- package/dist/api/resources/jobs/client/requests/JobsListRequest.d.ts +1 -1
- package/dist/api/resources/models/client/Client.d.ts +5 -3
- package/dist/api/resources/models/client/Client.js +23 -9
- package/dist/api/resources/sources/client/Client.d.ts +7 -5
- package/dist/api/resources/sources/client/Client.js +132 -40
- package/dist/api/resources/sources/client/requests/SourceCreate.d.ts +2 -2
- package/dist/api/resources/sources/client/requests/SourceUpdate.d.ts +2 -2
- package/dist/api/resources/sources/client/requests/SourcesAttachRequest.d.ts +2 -2
- package/dist/api/resources/sources/client/requests/SourcesDetachRequest.d.ts +2 -2
- package/dist/api/resources/sources/resources/files/client/Client.d.ts +5 -3
- package/dist/api/resources/sources/resources/files/client/Client.js +46 -14
- package/dist/api/resources/sources/resources/passages/client/Client.d.ts +5 -3
- package/dist/api/resources/sources/resources/passages/client/Client.js +21 -7
- package/dist/api/resources/tools/client/Client.d.ts +8 -6
- package/dist/api/resources/tools/client/Client.js +197 -57
- package/dist/api/resources/tools/client/requests/ToolRunFromSource.d.ts +3 -3
- package/dist/api/resources/tools/client/requests/ToolUpdate.d.ts +3 -3
- package/dist/api/types/ActionModel.d.ts +1 -1
- package/dist/api/types/AgentEnvironmentVariable.d.ts +25 -0
- package/dist/api/types/AgentState.d.ts +22 -20
- package/dist/api/types/AppAuthScheme.d.ts +8 -8
- package/dist/api/types/AppModel.d.ts +4 -4
- package/dist/api/types/AssistantFile.d.ts +2 -2
- package/dist/api/types/AssistantMessageInput.d.ts +1 -1
- package/dist/api/types/AssistantMessageOutput.d.ts +2 -3
- package/dist/api/types/AuthResponse.d.ts +1 -1
- package/dist/api/types/AuthSchemeField.d.ts +3 -3
- package/dist/api/types/Block.d.ts +14 -14
- package/dist/api/types/BlockUpdate.d.ts +2 -2
- package/dist/api/types/ChatCompletionRequest.d.ts +9 -9
- package/dist/api/types/ChatCompletionResponse.d.ts +2 -2
- package/dist/api/types/ChildToolRule.d.ts +1 -1
- package/dist/api/types/Choice.d.ts +1 -1
- package/dist/api/types/ConditionalToolRule.d.ts +4 -4
- package/dist/api/types/ContextWindowOverview.d.ts +17 -15
- package/dist/api/types/CreateAssistantFileRequest.d.ts +1 -1
- package/dist/api/types/CreateAssistantRequest.d.ts +2 -2
- package/dist/api/types/CreateBlock.d.ts +2 -2
- package/dist/api/types/E2BSandboxConfig.d.ts +1 -1
- package/dist/api/types/EmbeddingConfig.d.ts +16 -16
- package/dist/api/types/FileMetadata.d.ts +11 -11
- package/dist/api/types/InitToolRule.d.ts +1 -1
- package/dist/api/types/Job.d.ts +12 -12
- package/dist/api/types/LettaRequest.d.ts +2 -2
- package/dist/api/types/LettaResponse.d.ts +12 -62
- package/dist/api/types/LettaResponseMessagesItem.d.ts +25 -0
- package/dist/api/types/LettaSchemasLettaMessageToolCall.d.ts +1 -1
- package/dist/api/types/LettaSchemasMessageMessage.d.ts +18 -18
- package/dist/api/types/LettaSchemasOpenaiChatCompletionResponseMessage.d.ts +2 -2
- package/dist/api/types/LettaSchemasToolTool.d.ts +12 -12
- package/dist/api/types/LettaUsageStatistics.d.ts +8 -9
- package/dist/api/types/LlmConfig.d.ts +11 -11
- package/dist/api/types/LocalSandboxConfig.d.ts +3 -3
- package/dist/api/types/Memory.d.ts +1 -1
- package/dist/api/types/MessageContentLogProb.d.ts +1 -1
- package/dist/api/types/OpenAiAssistant.d.ts +2 -2
- package/dist/api/types/Organization.d.ts +1 -1
- package/dist/api/types/Passage.d.ts +19 -19
- package/dist/api/types/ReasoningMessage.d.ts +4 -5
- package/dist/api/types/SandboxConfig.d.ts +5 -5
- package/dist/api/types/SandboxEnvironmentVariable.d.ts +7 -7
- package/dist/api/types/SandboxEnvironmentVariableUpdate.d.ts +0 -3
- package/dist/api/types/Source.d.ts +13 -13
- package/dist/api/types/SystemMessageOutput.d.ts +4 -5
- package/dist/api/types/TerminalToolRule.d.ts +1 -1
- package/dist/api/types/ToolCallDelta.d.ts +1 -1
- package/dist/api/types/ToolCallMessage.d.ts +5 -6
- package/dist/api/types/ToolCreate.d.ts +4 -4
- package/dist/api/types/ToolMessage.d.ts +1 -1
- package/dist/api/types/ToolReturnMessage.d.ts +10 -11
- package/dist/api/types/UsageStatistics.d.ts +3 -3
- package/dist/api/types/User.d.ts +7 -7
- package/dist/api/types/UserCreate.d.ts +1 -1
- package/dist/api/types/UserMessageOutput.d.ts +4 -5
- package/dist/api/types/UserUpdate.d.ts +1 -1
- package/dist/api/types/index.d.ts +2 -13
- package/dist/api/types/index.js +2 -13
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +14 -1
- package/dist/core/schemas/Schema.d.ts +85 -0
- package/dist/core/schemas/Schema.js +22 -0
- package/dist/core/schemas/builders/bigint/bigint.d.ts +2 -0
- package/dist/core/schemas/builders/bigint/bigint.js +50 -0
- package/dist/core/schemas/builders/bigint/index.d.ts +1 -0
- package/dist/core/schemas/builders/bigint/index.js +5 -0
- package/dist/core/schemas/builders/date/date.d.ts +2 -0
- package/dist/core/schemas/builders/date/date.js +63 -0
- package/dist/core/schemas/builders/date/index.d.ts +1 -0
- package/dist/core/schemas/builders/date/index.js +5 -0
- package/dist/core/schemas/builders/enum/enum.d.ts +2 -0
- package/dist/core/schemas/builders/enum/enum.js +39 -0
- package/dist/core/schemas/builders/enum/index.d.ts +1 -0
- package/dist/core/schemas/builders/enum/index.js +5 -0
- package/dist/core/schemas/builders/index.d.ts +14 -0
- package/dist/core/schemas/builders/index.js +30 -0
- package/dist/core/schemas/builders/lazy/index.d.ts +3 -0
- package/dist/core/schemas/builders/lazy/index.js +7 -0
- package/dist/core/schemas/builders/lazy/lazy.d.ts +5 -0
- package/dist/core/schemas/builders/lazy/lazy.js +25 -0
- package/dist/core/schemas/builders/lazy/lazyObject.d.ts +3 -0
- package/dist/core/schemas/builders/lazy/lazyObject.js +12 -0
- package/dist/core/schemas/builders/list/index.d.ts +1 -0
- package/dist/core/schemas/builders/list/index.js +5 -0
- package/dist/core/schemas/builders/list/list.d.ts +2 -0
- package/dist/core/schemas/builders/list/list.js +55 -0
- package/dist/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
- package/dist/core/schemas/builders/literals/booleanLiteral.js +29 -0
- package/dist/core/schemas/builders/literals/index.d.ts +2 -0
- package/dist/core/schemas/builders/literals/index.js +7 -0
- package/dist/core/schemas/builders/literals/stringLiteral.d.ts +2 -0
- package/dist/core/schemas/builders/literals/stringLiteral.js +29 -0
- package/dist/core/schemas/builders/object/index.d.ts +6 -0
- package/dist/core/schemas/builders/object/index.js +11 -0
- package/dist/core/schemas/builders/object/object.d.ts +3 -0
- package/dist/core/schemas/builders/object/object.js +261 -0
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
- package/dist/core/schemas/builders/object/property.d.ts +8 -0
- package/dist/core/schemas/builders/object/property.js +16 -0
- package/dist/core/schemas/builders/object/types.d.ts +31 -0
- package/dist/core/schemas/builders/object/types.js +2 -0
- package/dist/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +9 -0
- package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +54 -0
- package/dist/core/schemas/builders/object-like/index.d.ts +2 -0
- package/dist/core/schemas/builders/object-like/index.js +6 -0
- package/dist/core/schemas/builders/object-like/types.d.ts +7 -0
- package/dist/core/schemas/builders/object-like/types.js +2 -0
- package/dist/core/schemas/builders/primitives/any.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/any.js +6 -0
- package/dist/core/schemas/builders/primitives/boolean.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/boolean.js +25 -0
- package/dist/core/schemas/builders/primitives/index.d.ts +5 -0
- package/dist/core/schemas/builders/primitives/index.js +13 -0
- package/dist/core/schemas/builders/primitives/number.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/number.js +25 -0
- package/dist/core/schemas/builders/primitives/string.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/string.js +25 -0
- package/dist/core/schemas/builders/primitives/unknown.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/unknown.js +6 -0
- package/dist/core/schemas/builders/record/index.d.ts +2 -0
- package/dist/core/schemas/builders/record/index.js +5 -0
- package/dist/core/schemas/builders/record/record.d.ts +3 -0
- package/dist/core/schemas/builders/record/record.js +95 -0
- package/dist/core/schemas/builders/record/types.d.ts +4 -0
- package/dist/core/schemas/builders/record/types.js +2 -0
- package/dist/core/schemas/builders/schema-utils/JsonError.d.ts +5 -0
- package/dist/core/schemas/builders/schema-utils/JsonError.js +12 -0
- package/dist/core/schemas/builders/schema-utils/ParseError.d.ts +5 -0
- package/dist/core/schemas/builders/schema-utils/ParseError.js +12 -0
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +17 -0
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +82 -0
- package/dist/core/schemas/builders/schema-utils/index.d.ts +4 -0
- package/dist/core/schemas/builders/schema-utils/index.js +11 -0
- package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +2 -0
- package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +10 -0
- package/dist/core/schemas/builders/set/index.d.ts +1 -0
- package/dist/core/schemas/builders/set/index.js +5 -0
- package/dist/core/schemas/builders/set/set.d.ts +2 -0
- package/dist/core/schemas/builders/set/set.js +44 -0
- package/dist/core/schemas/builders/undiscriminated-union/index.d.ts +2 -0
- package/dist/core/schemas/builders/undiscriminated-union/index.js +5 -0
- package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -0
- package/dist/core/schemas/builders/undiscriminated-union/types.js +2 -0
- package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +3 -0
- package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +40 -0
- package/dist/core/schemas/builders/union/discriminant.d.ts +5 -0
- package/dist/core/schemas/builders/union/discriminant.js +10 -0
- package/dist/core/schemas/builders/union/index.d.ts +4 -0
- package/dist/core/schemas/builders/union/index.js +7 -0
- package/dist/core/schemas/builders/union/types.d.ts +13 -0
- package/dist/core/schemas/builders/union/types.js +2 -0
- package/dist/core/schemas/builders/union/union.d.ts +4 -0
- package/dist/core/schemas/builders/union/union.js +130 -0
- package/dist/core/schemas/index.d.ts +2 -0
- package/dist/core/schemas/index.js +17 -0
- package/dist/core/schemas/utils/MaybePromise.d.ts +1 -0
- package/dist/core/schemas/utils/MaybePromise.js +2 -0
- package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +7 -0
- package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.js +2 -0
- package/dist/core/schemas/utils/createIdentitySchemaCreator.d.ts +2 -0
- package/dist/core/schemas/utils/createIdentitySchemaCreator.js +16 -0
- package/dist/core/schemas/utils/entries.d.ts +1 -0
- package/dist/core/schemas/utils/entries.js +7 -0
- package/dist/core/schemas/utils/filterObject.d.ts +1 -0
- package/dist/core/schemas/utils/filterObject.js +14 -0
- package/dist/core/schemas/utils/getErrorMessageForIncorrectType.d.ts +1 -0
- package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +28 -0
- package/dist/core/schemas/utils/isPlainObject.d.ts +1 -0
- package/dist/core/schemas/utils/isPlainObject.js +18 -0
- package/dist/core/schemas/utils/keys.d.ts +1 -0
- package/dist/core/schemas/utils/keys.js +7 -0
- package/dist/core/schemas/utils/maybeSkipValidation.d.ts +2 -0
- package/dist/core/schemas/utils/maybeSkipValidation.js +28 -0
- package/dist/core/schemas/utils/partition.d.ts +1 -0
- package/dist/core/schemas/utils/partition.js +16 -0
- package/dist/environments.d.ts +2 -2
- package/dist/environments.js +1 -1
- package/dist/serialization/index.d.ts +2 -0
- package/dist/serialization/index.js +18 -0
- package/dist/serialization/resources/agents/client/getAgentMemoryBlocks.d.ts +11 -0
- package/dist/serialization/resources/agents/client/getAgentMemoryBlocks.js +32 -0
- package/dist/serialization/resources/agents/client/index.d.ts +3 -0
- package/dist/serialization/resources/agents/client/index.js +32 -0
- package/dist/serialization/resources/agents/client/list.d.ts +11 -0
- package/dist/serialization/resources/agents/client/list.js +32 -0
- package/dist/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +12 -0
- package/dist/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js +33 -0
- package/dist/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +12 -0
- package/dist/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.js +33 -0
- package/dist/serialization/resources/agents/client/requests/AgentsMigrateRequest.d.ts +14 -0
- package/dist/serialization/resources/agents/client/requests/AgentsMigrateRequest.js +35 -0
- package/dist/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +18 -0
- package/dist/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js +39 -0
- package/dist/serialization/resources/agents/client/requests/CreateAgentRequest.d.ts +41 -0
- package/dist/serialization/resources/agents/client/requests/CreateAgentRequest.js +62 -0
- package/dist/serialization/resources/agents/client/requests/UpdateAgent.d.ts +27 -0
- package/dist/serialization/resources/agents/client/requests/UpdateAgent.js +48 -0
- package/dist/serialization/resources/agents/client/requests/index.d.ts +6 -0
- package/dist/serialization/resources/agents/client/requests/index.js +15 -0
- package/dist/serialization/resources/agents/index.d.ts +3 -0
- package/dist/serialization/resources/agents/index.js +19 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/create.d.ts +11 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/create.js +32 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/index.d.ts +3 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/index.js +32 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/list.d.ts +11 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/list.js +32 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/requests/CreateArchivalMemory.d.ts +12 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/requests/CreateArchivalMemory.js +33 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/client/requests/index.js +5 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/archivalMemory/index.js +17 -0
- package/dist/serialization/resources/agents/resources/index.d.ts +8 -0
- package/dist/serialization/resources/agents/resources/index.js +37 -0
- package/dist/serialization/resources/agents/resources/memory/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/memory/index.js +17 -0
- package/dist/serialization/resources/agents/resources/memory/resources/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/memory/resources/index.js +27 -0
- package/dist/serialization/resources/agents/resources/memory/resources/messages/client/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/memory/resources/messages/client/index.js +27 -0
- package/dist/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.d.ts +11 -0
- package/dist/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.js +32 -0
- package/dist/serialization/resources/agents/resources/memory/resources/messages/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/memory/resources/messages/index.js +17 -0
- package/dist/serialization/resources/agents/resources/messages/client/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/messages/client/index.js +17 -0
- package/dist/serialization/resources/agents/resources/messages/client/requests/LettaStreamingRequest.d.ts +16 -0
- package/dist/serialization/resources/agents/resources/messages/client/requests/LettaStreamingRequest.js +37 -0
- package/dist/serialization/resources/agents/resources/messages/client/requests/MessageUpdate.d.ts +18 -0
- package/dist/serialization/resources/agents/resources/messages/client/requests/MessageUpdate.js +39 -0
- package/dist/serialization/resources/agents/resources/messages/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/agents/resources/messages/client/requests/index.js +7 -0
- package/dist/serialization/resources/agents/resources/messages/index.d.ts +2 -0
- package/dist/serialization/resources/agents/resources/messages/index.js +18 -0
- package/dist/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +38 -0
- package/dist/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.js +51 -0
- package/dist/serialization/resources/agents/resources/messages/types/MessagesListResponse.d.ts +12 -0
- package/dist/serialization/resources/agents/resources/messages/types/MessagesListResponse.js +36 -0
- package/dist/serialization/resources/agents/resources/messages/types/MessagesListResponseItem.d.ts +34 -0
- package/dist/serialization/resources/agents/resources/messages/types/MessagesListResponseItem.js +49 -0
- package/dist/serialization/resources/agents/resources/messages/types/index.d.ts +3 -0
- package/dist/serialization/resources/agents/resources/messages/types/index.js +19 -0
- package/dist/serialization/resources/agents/resources/sources/client/get.d.ts +11 -0
- package/dist/serialization/resources/agents/resources/sources/client/get.js +32 -0
- package/dist/serialization/resources/agents/resources/sources/client/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/sources/client/index.js +27 -0
- package/dist/serialization/resources/agents/resources/sources/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/sources/index.js +17 -0
- package/dist/serialization/resources/agents/resources/tools/client/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/tools/client/index.js +27 -0
- package/dist/serialization/resources/agents/resources/tools/client/list.d.ts +11 -0
- package/dist/serialization/resources/agents/resources/tools/client/list.js +32 -0
- package/dist/serialization/resources/agents/resources/tools/index.d.ts +1 -0
- package/dist/serialization/resources/agents/resources/tools/index.js +17 -0
- package/dist/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +12 -0
- package/dist/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.js +33 -0
- package/dist/serialization/resources/agents/types/AgentsMigrateResponse.d.ts +12 -0
- package/dist/serialization/resources/agents/types/AgentsMigrateResponse.js +33 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +10 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.js +31 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +22 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.js +43 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +14 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.js +35 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +10 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js +31 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +15 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js +36 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +10 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js +31 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +10 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js +31 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts +12 -0
- package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.js +33 -0
- package/dist/serialization/resources/agents/types/CreateAgentRequestToolRulesItem.d.ts +14 -0
- package/dist/serialization/resources/agents/types/CreateAgentRequestToolRulesItem.js +35 -0
- package/dist/serialization/resources/agents/types/UpdateAgentToolRulesItem.d.ts +14 -0
- package/dist/serialization/resources/agents/types/UpdateAgentToolRulesItem.js +35 -0
- package/dist/serialization/resources/agents/types/index.d.ts +12 -0
- package/dist/serialization/resources/agents/types/index.js +28 -0
- package/dist/serialization/resources/blocks/client/index.d.ts +1 -0
- package/dist/serialization/resources/blocks/client/index.js +27 -0
- package/dist/serialization/resources/blocks/client/list.d.ts +11 -0
- package/dist/serialization/resources/blocks/client/list.js +32 -0
- package/dist/serialization/resources/blocks/index.d.ts +1 -0
- package/dist/serialization/resources/blocks/index.js +17 -0
- package/dist/serialization/resources/index.d.ts +10 -0
- package/dist/serialization/resources/index.js +39 -0
- package/dist/serialization/resources/jobs/client/index.d.ts +2 -0
- package/dist/serialization/resources/jobs/client/index.js +28 -0
- package/dist/serialization/resources/jobs/client/list.d.ts +11 -0
- package/dist/serialization/resources/jobs/client/list.js +32 -0
- package/dist/serialization/resources/jobs/client/listActive.d.ts +11 -0
- package/dist/serialization/resources/jobs/client/listActive.js +32 -0
- package/dist/serialization/resources/jobs/index.d.ts +1 -0
- package/dist/serialization/resources/jobs/index.js +17 -0
- package/dist/serialization/resources/models/client/index.d.ts +2 -0
- package/dist/serialization/resources/models/client/index.js +28 -0
- package/dist/serialization/resources/models/client/listEmbeddingModels.d.ts +11 -0
- package/dist/serialization/resources/models/client/listEmbeddingModels.js +32 -0
- package/dist/serialization/resources/models/client/listLlms.d.ts +11 -0
- package/dist/serialization/resources/models/client/listLlms.js +32 -0
- package/dist/serialization/resources/models/index.d.ts +1 -0
- package/dist/serialization/resources/models/index.js +17 -0
- package/dist/serialization/resources/sources/client/getByName.d.ts +9 -0
- package/dist/serialization/resources/sources/client/getByName.js +31 -0
- package/dist/serialization/resources/sources/client/index.d.ts +3 -0
- package/dist/serialization/resources/sources/client/index.js +32 -0
- package/dist/serialization/resources/sources/client/list.d.ts +11 -0
- package/dist/serialization/resources/sources/client/list.js +32 -0
- package/dist/serialization/resources/sources/client/requests/SourceCreate.d.ts +16 -0
- package/dist/serialization/resources/sources/client/requests/SourceCreate.js +37 -0
- package/dist/serialization/resources/sources/client/requests/SourceUpdate.d.ts +16 -0
- package/dist/serialization/resources/sources/client/requests/SourceUpdate.js +37 -0
- package/dist/serialization/resources/sources/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/sources/client/requests/index.js +7 -0
- package/dist/serialization/resources/sources/index.d.ts +2 -0
- package/dist/serialization/resources/sources/index.js +18 -0
- package/dist/serialization/resources/sources/resources/files/client/index.d.ts +1 -0
- package/dist/serialization/resources/sources/resources/files/client/index.js +27 -0
- package/dist/serialization/resources/sources/resources/files/client/list.d.ts +11 -0
- package/dist/serialization/resources/sources/resources/files/client/list.js +32 -0
- package/dist/serialization/resources/sources/resources/files/index.d.ts +1 -0
- package/dist/serialization/resources/sources/resources/files/index.js +17 -0
- package/dist/serialization/resources/sources/resources/index.d.ts +2 -0
- package/dist/serialization/resources/sources/resources/index.js +28 -0
- package/dist/serialization/resources/sources/resources/passages/client/index.d.ts +1 -0
- package/dist/serialization/resources/sources/resources/passages/client/index.js +27 -0
- package/dist/serialization/resources/sources/resources/passages/client/list.d.ts +11 -0
- package/dist/serialization/resources/sources/resources/passages/client/list.js +32 -0
- package/dist/serialization/resources/sources/resources/passages/index.d.ts +1 -0
- package/dist/serialization/resources/sources/resources/passages/index.js +17 -0
- package/dist/serialization/resources/tools/client/addBaseTool.d.ts +11 -0
- package/dist/serialization/resources/tools/client/addBaseTool.js +32 -0
- package/dist/serialization/resources/tools/client/getByName.d.ts +9 -0
- package/dist/serialization/resources/tools/client/getByName.js +31 -0
- package/dist/serialization/resources/tools/client/index.d.ts +6 -0
- package/dist/serialization/resources/tools/client/index.js +35 -0
- package/dist/serialization/resources/tools/client/list.d.ts +11 -0
- package/dist/serialization/resources/tools/client/list.js +32 -0
- package/dist/serialization/resources/tools/client/listComposioActionsByApp.d.ts +11 -0
- package/dist/serialization/resources/tools/client/listComposioActionsByApp.js +32 -0
- package/dist/serialization/resources/tools/client/listComposioApps.d.ts +11 -0
- package/dist/serialization/resources/tools/client/listComposioApps.js +32 -0
- package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +15 -0
- package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.js +36 -0
- package/dist/serialization/resources/tools/client/requests/ToolUpdate.d.ts +18 -0
- package/dist/serialization/resources/tools/client/requests/ToolUpdate.js +39 -0
- package/dist/serialization/resources/tools/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/tools/client/requests/index.js +7 -0
- package/dist/serialization/resources/tools/index.d.ts +1 -0
- package/dist/serialization/resources/tools/index.js +17 -0
- package/dist/serialization/types/ActionModel.d.ts +23 -0
- package/dist/serialization/types/ActionModel.js +44 -0
- package/dist/serialization/types/ActionParametersModel.d.ts +15 -0
- package/dist/serialization/types/ActionParametersModel.js +36 -0
- package/dist/serialization/types/ActionResponseModel.d.ts +15 -0
- package/dist/serialization/types/ActionResponseModel.js +36 -0
- package/dist/serialization/types/AgentEnvironmentVariable.d.ts +21 -0
- package/dist/serialization/types/AgentEnvironmentVariable.js +42 -0
- package/dist/serialization/types/AgentState.d.ts +39 -0
- package/dist/serialization/types/AgentState.js +60 -0
- package/dist/serialization/types/AgentStateToolRulesItem.d.ts +14 -0
- package/dist/serialization/types/AgentStateToolRulesItem.js +35 -0
- package/dist/serialization/types/AgentType.d.ts +10 -0
- package/dist/serialization/types/AgentType.js +37 -0
- package/dist/serialization/types/AppAuthScheme.d.ts +23 -0
- package/dist/serialization/types/AppAuthScheme.js +44 -0
- package/dist/serialization/types/AppAuthSchemeAuthMode.d.ts +10 -0
- package/dist/serialization/types/AppAuthSchemeAuthMode.js +31 -0
- package/dist/serialization/types/AppModel.d.ts +28 -0
- package/dist/serialization/types/AppModel.js +51 -0
- package/dist/serialization/types/ArchivalMemorySummary.d.ts +12 -0
- package/dist/serialization/types/ArchivalMemorySummary.js +33 -0
- package/dist/serialization/types/AssistantFile.d.ts +15 -0
- package/dist/serialization/types/AssistantFile.js +36 -0
- package/dist/serialization/types/AssistantMessageInput.d.ts +16 -0
- package/dist/serialization/types/AssistantMessageInput.js +37 -0
- package/dist/serialization/types/AssistantMessageOutput.d.ts +14 -0
- package/dist/serialization/types/AssistantMessageOutput.js +35 -0
- package/dist/serialization/types/AuthRequest.d.ts +12 -0
- package/dist/serialization/types/AuthRequest.js +33 -0
- package/dist/serialization/types/AuthResponse.d.ts +13 -0
- package/dist/serialization/types/AuthResponse.js +34 -0
- package/dist/serialization/types/AuthSchemeField.d.ts +19 -0
- package/dist/serialization/types/AuthSchemeField.js +40 -0
- package/dist/serialization/types/Block.d.ts +22 -0
- package/dist/serialization/types/Block.js +43 -0
- package/dist/serialization/types/BlockUpdate.d.ts +18 -0
- package/dist/serialization/types/BlockUpdate.js +39 -0
- package/dist/serialization/types/ChatCompletionRequest.d.ts +38 -0
- package/dist/serialization/types/ChatCompletionRequest.js +59 -0
- package/dist/serialization/types/ChatCompletionRequestFunctionCall.d.ts +11 -0
- package/dist/serialization/types/ChatCompletionRequestFunctionCall.js +36 -0
- package/dist/serialization/types/ChatCompletionRequestMessagesItem.d.ts +14 -0
- package/dist/serialization/types/ChatCompletionRequestMessagesItem.js +35 -0
- package/dist/serialization/types/ChatCompletionRequestStop.d.ts +10 -0
- package/dist/serialization/types/ChatCompletionRequestStop.js +34 -0
- package/dist/serialization/types/ChatCompletionRequestToolChoice.d.ts +11 -0
- package/dist/serialization/types/ChatCompletionRequestToolChoice.js +37 -0
- package/dist/serialization/types/ChatCompletionResponse.d.ts +20 -0
- package/dist/serialization/types/ChatCompletionResponse.js +41 -0
- package/dist/serialization/types/ChildToolRule.d.ts +15 -0
- package/dist/serialization/types/ChildToolRule.js +36 -0
- package/dist/serialization/types/Choice.d.ts +18 -0
- package/dist/serialization/types/Choice.js +41 -0
- package/dist/serialization/types/ConditionalToolRule.d.ts +17 -0
- package/dist/serialization/types/ConditionalToolRule.js +38 -0
- package/dist/serialization/types/ConflictErrorBody.d.ts +12 -0
- package/dist/serialization/types/ConflictErrorBody.js +33 -0
- package/dist/serialization/types/ContextWindowOverview.d.ts +30 -0
- package/dist/serialization/types/ContextWindowOverview.js +51 -0
- package/dist/serialization/types/CreateAssistantFileRequest.d.ts +12 -0
- package/dist/serialization/types/CreateAssistantFileRequest.js +33 -0
- package/dist/serialization/types/CreateAssistantRequest.d.ts +19 -0
- package/dist/serialization/types/CreateAssistantRequest.js +40 -0
- package/dist/serialization/types/CreateBlock.d.ts +18 -0
- package/dist/serialization/types/CreateBlock.js +39 -0
- package/dist/serialization/types/DeleteAssistantFileResponse.d.ts +14 -0
- package/dist/serialization/types/DeleteAssistantFileResponse.js +35 -0
- package/dist/serialization/types/DeleteAssistantResponse.d.ts +14 -0
- package/dist/serialization/types/DeleteAssistantResponse.js +35 -0
- package/dist/serialization/types/E2BSandboxConfig.d.ts +14 -0
- package/dist/serialization/types/E2BSandboxConfig.js +35 -0
- package/dist/serialization/types/EmbeddingConfig.d.ts +21 -0
- package/dist/serialization/types/EmbeddingConfig.js +42 -0
- package/dist/serialization/types/EmbeddingConfigEmbeddingEndpointType.d.ts +10 -0
- package/dist/serialization/types/EmbeddingConfigEmbeddingEndpointType.js +49 -0
- package/dist/serialization/types/FileMetadata.d.ts +23 -0
- package/dist/serialization/types/FileMetadata.js +44 -0
- package/dist/serialization/types/FunctionCallInput.d.ts +12 -0
- package/dist/serialization/types/FunctionCallInput.js +33 -0
- package/dist/serialization/types/FunctionCallOutput.d.ts +13 -0
- package/dist/serialization/types/FunctionCallOutput.js +34 -0
- package/dist/serialization/types/FunctionSchema.d.ts +14 -0
- package/dist/serialization/types/FunctionSchema.js +35 -0
- package/dist/serialization/types/Health.d.ts +13 -0
- package/dist/serialization/types/Health.js +34 -0
- package/dist/serialization/types/HttpValidationError.d.ts +13 -0
- package/dist/serialization/types/HttpValidationError.js +34 -0
- package/dist/serialization/types/InitToolRule.d.ts +14 -0
- package/dist/serialization/types/InitToolRule.js +35 -0
- package/dist/serialization/types/InternalServerErrorBody.d.ts +12 -0
- package/dist/serialization/types/InternalServerErrorBody.js +33 -0
- package/dist/serialization/types/Job.d.ts +21 -0
- package/dist/serialization/types/Job.js +42 -0
- package/dist/serialization/types/JobStatus.d.ts +10 -0
- package/dist/serialization/types/JobStatus.js +31 -0
- package/dist/serialization/types/LettaRequest.d.ts +15 -0
- package/dist/serialization/types/LettaRequest.js +36 -0
- package/dist/serialization/types/LettaResponse.d.ts +15 -0
- package/dist/serialization/types/LettaResponse.js +36 -0
- package/dist/serialization/types/LettaResponseMessagesItem.d.ts +34 -0
- package/dist/serialization/types/LettaResponseMessagesItem.js +49 -0
- package/dist/serialization/types/LettaSchemasLettaMessageToolCall.d.ts +14 -0
- package/dist/serialization/types/LettaSchemasLettaMessageToolCall.js +35 -0
- package/dist/serialization/types/LettaSchemasMessageMessage.d.ts +26 -0
- package/dist/serialization/types/LettaSchemasMessageMessage.js +47 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionRequestTool.d.ts +14 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionRequestTool.js +35 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCall.d.ts +15 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCall.js +36 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCallFunction.d.ts +13 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCallFunction.js +34 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionResponseMessage.d.ts +17 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionResponseMessage.js +38 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionResponseToolCall.d.ts +15 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionResponseToolCall.js +36 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallFunction.d.ts +13 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallFunction.js +34 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallInput.d.ts +15 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallInput.js +36 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallOutput.d.ts +15 -0
- package/dist/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallOutput.js +36 -0
- package/dist/serialization/types/LettaSchemasToolTool.d.ts +23 -0
- package/dist/serialization/types/LettaSchemasToolTool.js +44 -0
- package/dist/serialization/types/LettaUsageStatistics.d.ts +15 -0
- package/dist/serialization/types/LettaUsageStatistics.js +36 -0
- package/dist/serialization/types/LlmConfig.d.ts +19 -0
- package/dist/serialization/types/LlmConfig.js +40 -0
- package/dist/serialization/types/LlmConfigModelEndpointType.d.ts +10 -0
- package/dist/serialization/types/LlmConfigModelEndpointType.js +49 -0
- package/dist/serialization/types/LocalSandboxConfig.d.ts +14 -0
- package/dist/serialization/types/LocalSandboxConfig.js +35 -0
- package/dist/serialization/types/LogProbToken.d.ts +14 -0
- package/dist/serialization/types/LogProbToken.js +35 -0
- package/dist/serialization/types/Memory.d.ts +14 -0
- package/dist/serialization/types/Memory.js +35 -0
- package/dist/serialization/types/MessageContentLogProb.d.ts +16 -0
- package/dist/serialization/types/MessageContentLogProb.js +37 -0
- package/dist/serialization/types/MessageCreate.d.ts +15 -0
- package/dist/serialization/types/MessageCreate.js +36 -0
- package/dist/serialization/types/MessageCreateRole.d.ts +10 -0
- package/dist/serialization/types/MessageCreateRole.js +31 -0
- package/dist/serialization/types/MessageRole.d.ts +10 -0
- package/dist/serialization/types/MessageRole.js +31 -0
- package/dist/serialization/types/NotFoundErrorBody.d.ts +12 -0
- package/dist/serialization/types/NotFoundErrorBody.js +33 -0
- package/dist/serialization/types/NotFoundErrorBodyMessage.d.ts +10 -0
- package/dist/serialization/types/NotFoundErrorBodyMessage.js +34 -0
- package/dist/serialization/types/OpenAiAssistant.d.ts +21 -0
- package/dist/serialization/types/OpenAiAssistant.js +42 -0
- package/dist/serialization/types/Organization.d.ts +14 -0
- package/dist/serialization/types/Organization.js +35 -0
- package/dist/serialization/types/OrganizationCreate.d.ts +12 -0
- package/dist/serialization/types/OrganizationCreate.js +33 -0
- package/dist/serialization/types/Passage.d.ts +26 -0
- package/dist/serialization/types/Passage.js +47 -0
- package/dist/serialization/types/ReasoningMessage.d.ts +14 -0
- package/dist/serialization/types/ReasoningMessage.js +35 -0
- package/dist/serialization/types/RecallMemorySummary.d.ts +12 -0
- package/dist/serialization/types/RecallMemorySummary.js +33 -0
- package/dist/serialization/types/ResponseFormat.d.ts +12 -0
- package/dist/serialization/types/ResponseFormat.js +33 -0
- package/dist/serialization/types/SandboxConfig.d.ts +20 -0
- package/dist/serialization/types/SandboxConfig.js +41 -0
- package/dist/serialization/types/SandboxConfigCreate.d.ts +13 -0
- package/dist/serialization/types/SandboxConfigCreate.js +34 -0
- package/dist/serialization/types/SandboxConfigCreateConfig.d.ts +12 -0
- package/dist/serialization/types/SandboxConfigCreateConfig.js +33 -0
- package/dist/serialization/types/SandboxConfigUpdate.d.ts +13 -0
- package/dist/serialization/types/SandboxConfigUpdate.js +34 -0
- package/dist/serialization/types/SandboxConfigUpdateConfig.d.ts +12 -0
- package/dist/serialization/types/SandboxConfigUpdateConfig.js +33 -0
- package/dist/serialization/types/SandboxEnvironmentVariable.d.ts +21 -0
- package/dist/serialization/types/SandboxEnvironmentVariable.js +42 -0
- package/dist/serialization/types/SandboxEnvironmentVariableCreate.d.ts +14 -0
- package/dist/serialization/types/SandboxEnvironmentVariableCreate.js +35 -0
- package/dist/serialization/types/SandboxEnvironmentVariableUpdate.d.ts +14 -0
- package/dist/serialization/types/SandboxEnvironmentVariableUpdate.js +35 -0
- package/dist/serialization/types/SandboxType.d.ts +10 -0
- package/dist/serialization/types/SandboxType.js +31 -0
- package/dist/serialization/types/Source.d.ts +22 -0
- package/dist/serialization/types/Source.js +43 -0
- package/dist/serialization/types/SystemMessageInput.d.ts +14 -0
- package/dist/serialization/types/SystemMessageInput.js +35 -0
- package/dist/serialization/types/SystemMessageOutput.d.ts +14 -0
- package/dist/serialization/types/SystemMessageOutput.js +35 -0
- package/dist/serialization/types/TerminalToolRule.d.ts +14 -0
- package/dist/serialization/types/TerminalToolRule.js +35 -0
- package/dist/serialization/types/ToolCallDelta.d.ts +14 -0
- package/dist/serialization/types/ToolCallDelta.js +35 -0
- package/dist/serialization/types/ToolCallFunctionOutput.d.ts +13 -0
- package/dist/serialization/types/ToolCallFunctionOutput.js +34 -0
- package/dist/serialization/types/ToolCallMessage.d.ts +15 -0
- package/dist/serialization/types/ToolCallMessage.js +36 -0
- package/dist/serialization/types/ToolCallMessageToolCall.d.ts +12 -0
- package/dist/serialization/types/ToolCallMessageToolCall.js +33 -0
- package/dist/serialization/types/ToolCreate.d.ts +19 -0
- package/dist/serialization/types/ToolCreate.js +40 -0
- package/dist/serialization/types/ToolFunctionChoice.d.ts +14 -0
- package/dist/serialization/types/ToolFunctionChoice.js +35 -0
- package/dist/serialization/types/ToolInput.d.ts +14 -0
- package/dist/serialization/types/ToolInput.js +35 -0
- package/dist/serialization/types/ToolMessage.d.ts +14 -0
- package/dist/serialization/types/ToolMessage.js +35 -0
- package/dist/serialization/types/ToolReturnMessage.d.ts +19 -0
- package/dist/serialization/types/ToolReturnMessage.js +40 -0
- package/dist/serialization/types/ToolReturnMessageStatus.d.ts +10 -0
- package/dist/serialization/types/ToolReturnMessageStatus.js +31 -0
- package/dist/serialization/types/ToolRuleType.d.ts +10 -0
- package/dist/serialization/types/ToolRuleType.js +38 -0
- package/dist/serialization/types/UsageStatistics.d.ts +14 -0
- package/dist/serialization/types/UsageStatistics.js +35 -0
- package/dist/serialization/types/User.d.ts +17 -0
- package/dist/serialization/types/User.js +38 -0
- package/dist/serialization/types/UserCreate.d.ts +13 -0
- package/dist/serialization/types/UserCreate.js +34 -0
- package/dist/serialization/types/UserMessageInput.d.ts +15 -0
- package/dist/serialization/types/UserMessageInput.js +36 -0
- package/dist/serialization/types/UserMessageInputContent.d.ts +10 -0
- package/dist/serialization/types/UserMessageInputContent.js +34 -0
- package/dist/serialization/types/UserMessageOutput.d.ts +14 -0
- package/dist/serialization/types/UserMessageOutput.js +35 -0
- package/dist/serialization/types/UserUpdate.d.ts +14 -0
- package/dist/serialization/types/UserUpdate.js +35 -0
- package/dist/serialization/types/ValidationError.d.ts +15 -0
- package/dist/serialization/types/ValidationError.js +36 -0
- package/dist/serialization/types/ValidationErrorLocItem.d.ts +10 -0
- package/dist/serialization/types/ValidationErrorLocItem.js +31 -0
- package/dist/serialization/types/index.d.ts +114 -0
- package/dist/serialization/types/index.js +130 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/environments.d.ts +2 -2
- package/environments.js +1 -1
- package/package.json +1 -2
- package/reference.md +157 -11
- package/serialization/index.d.ts +2 -0
- package/serialization/index.js +18 -0
- package/serialization/resources/agents/client/getAgentMemoryBlocks.d.ts +11 -0
- package/serialization/resources/agents/client/getAgentMemoryBlocks.js +32 -0
- package/serialization/resources/agents/client/index.d.ts +3 -0
- package/serialization/resources/agents/client/index.js +32 -0
- package/serialization/resources/agents/client/list.d.ts +11 -0
- package/serialization/resources/agents/client/list.js +32 -0
- package/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +12 -0
- package/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js +33 -0
- package/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +12 -0
- package/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.js +33 -0
- package/serialization/resources/agents/client/requests/AgentsMigrateRequest.d.ts +14 -0
- package/serialization/resources/agents/client/requests/AgentsMigrateRequest.js +35 -0
- package/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +18 -0
- package/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js +39 -0
- package/serialization/resources/agents/client/requests/CreateAgentRequest.d.ts +41 -0
- package/serialization/resources/agents/client/requests/CreateAgentRequest.js +62 -0
- package/serialization/resources/agents/client/requests/UpdateAgent.d.ts +27 -0
- package/serialization/resources/agents/client/requests/UpdateAgent.js +48 -0
- package/serialization/resources/agents/client/requests/index.d.ts +6 -0
- package/serialization/resources/agents/client/requests/index.js +15 -0
- package/serialization/resources/agents/index.d.ts +3 -0
- package/serialization/resources/agents/index.js +19 -0
- package/serialization/resources/agents/resources/archivalMemory/client/create.d.ts +11 -0
- package/serialization/resources/agents/resources/archivalMemory/client/create.js +32 -0
- package/serialization/resources/agents/resources/archivalMemory/client/index.d.ts +3 -0
- package/serialization/resources/agents/resources/archivalMemory/client/index.js +32 -0
- package/serialization/resources/agents/resources/archivalMemory/client/list.d.ts +11 -0
- package/serialization/resources/agents/resources/archivalMemory/client/list.js +32 -0
- package/serialization/resources/agents/resources/archivalMemory/client/requests/CreateArchivalMemory.d.ts +12 -0
- package/serialization/resources/agents/resources/archivalMemory/client/requests/CreateArchivalMemory.js +33 -0
- package/serialization/resources/agents/resources/archivalMemory/client/requests/index.d.ts +1 -0
- package/serialization/resources/agents/resources/archivalMemory/client/requests/index.js +5 -0
- package/serialization/resources/agents/resources/archivalMemory/index.d.ts +1 -0
- package/serialization/resources/agents/resources/archivalMemory/index.js +17 -0
- package/serialization/resources/agents/resources/index.d.ts +8 -0
- package/serialization/resources/agents/resources/index.js +37 -0
- package/serialization/resources/agents/resources/memory/index.d.ts +1 -0
- package/serialization/resources/agents/resources/memory/index.js +17 -0
- package/serialization/resources/agents/resources/memory/resources/index.d.ts +1 -0
- package/serialization/resources/agents/resources/memory/resources/index.js +27 -0
- package/serialization/resources/agents/resources/memory/resources/messages/client/index.d.ts +1 -0
- package/serialization/resources/agents/resources/memory/resources/messages/client/index.js +27 -0
- package/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.d.ts +11 -0
- package/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.js +32 -0
- package/serialization/resources/agents/resources/memory/resources/messages/index.d.ts +1 -0
- package/serialization/resources/agents/resources/memory/resources/messages/index.js +17 -0
- package/serialization/resources/agents/resources/messages/client/index.d.ts +1 -0
- package/serialization/resources/agents/resources/messages/client/index.js +17 -0
- package/serialization/resources/agents/resources/messages/client/requests/LettaStreamingRequest.d.ts +16 -0
- package/serialization/resources/agents/resources/messages/client/requests/LettaStreamingRequest.js +37 -0
- package/serialization/resources/agents/resources/messages/client/requests/MessageUpdate.d.ts +18 -0
- package/serialization/resources/agents/resources/messages/client/requests/MessageUpdate.js +39 -0
- package/serialization/resources/agents/resources/messages/client/requests/index.d.ts +2 -0
- package/serialization/resources/agents/resources/messages/client/requests/index.js +7 -0
- package/serialization/resources/agents/resources/messages/index.d.ts +2 -0
- package/serialization/resources/agents/resources/messages/index.js +18 -0
- package/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.d.ts +38 -0
- package/serialization/resources/agents/resources/messages/types/LettaStreamingResponse.js +51 -0
- package/serialization/resources/agents/resources/messages/types/MessagesListResponse.d.ts +12 -0
- package/serialization/resources/agents/resources/messages/types/MessagesListResponse.js +36 -0
- package/serialization/resources/agents/resources/messages/types/MessagesListResponseItem.d.ts +34 -0
- package/serialization/resources/agents/resources/messages/types/MessagesListResponseItem.js +49 -0
- package/serialization/resources/agents/resources/messages/types/index.d.ts +3 -0
- package/serialization/resources/agents/resources/messages/types/index.js +19 -0
- package/serialization/resources/agents/resources/sources/client/get.d.ts +11 -0
- package/serialization/resources/agents/resources/sources/client/get.js +32 -0
- package/serialization/resources/agents/resources/sources/client/index.d.ts +1 -0
- package/serialization/resources/agents/resources/sources/client/index.js +27 -0
- package/serialization/resources/agents/resources/sources/index.d.ts +1 -0
- package/serialization/resources/agents/resources/sources/index.js +17 -0
- package/serialization/resources/agents/resources/tools/client/index.d.ts +1 -0
- package/serialization/resources/agents/resources/tools/client/index.js +27 -0
- package/serialization/resources/agents/resources/tools/client/list.d.ts +11 -0
- package/serialization/resources/agents/resources/tools/client/list.js +32 -0
- package/serialization/resources/agents/resources/tools/index.d.ts +1 -0
- package/serialization/resources/agents/resources/tools/index.js +17 -0
- package/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +12 -0
- package/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.js +33 -0
- package/serialization/resources/agents/types/AgentsMigrateResponse.d.ts +12 -0
- package/serialization/resources/agents/types/AgentsMigrateResponse.js +33 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +10 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.js +31 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +22 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.js +43 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +14 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.js +35 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +10 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js +31 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +15 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js +36 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +10 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js +31 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +10 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js +31 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts +12 -0
- package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.js +33 -0
- package/serialization/resources/agents/types/CreateAgentRequestToolRulesItem.d.ts +14 -0
- package/serialization/resources/agents/types/CreateAgentRequestToolRulesItem.js +35 -0
- package/serialization/resources/agents/types/UpdateAgentToolRulesItem.d.ts +14 -0
- package/serialization/resources/agents/types/UpdateAgentToolRulesItem.js +35 -0
- package/serialization/resources/agents/types/index.d.ts +12 -0
- package/serialization/resources/agents/types/index.js +28 -0
- package/serialization/resources/blocks/client/index.d.ts +1 -0
- package/serialization/resources/blocks/client/index.js +27 -0
- package/serialization/resources/blocks/client/list.d.ts +11 -0
- package/serialization/resources/blocks/client/list.js +32 -0
- package/serialization/resources/blocks/index.d.ts +1 -0
- package/serialization/resources/blocks/index.js +17 -0
- package/serialization/resources/index.d.ts +10 -0
- package/serialization/resources/index.js +39 -0
- package/serialization/resources/jobs/client/index.d.ts +2 -0
- package/serialization/resources/jobs/client/index.js +28 -0
- package/serialization/resources/jobs/client/list.d.ts +11 -0
- package/serialization/resources/jobs/client/list.js +32 -0
- package/serialization/resources/jobs/client/listActive.d.ts +11 -0
- package/serialization/resources/jobs/client/listActive.js +32 -0
- package/serialization/resources/jobs/index.d.ts +1 -0
- package/serialization/resources/jobs/index.js +17 -0
- package/serialization/resources/models/client/index.d.ts +2 -0
- package/serialization/resources/models/client/index.js +28 -0
- package/serialization/resources/models/client/listEmbeddingModels.d.ts +11 -0
- package/serialization/resources/models/client/listEmbeddingModels.js +32 -0
- package/serialization/resources/models/client/listLlms.d.ts +11 -0
- package/serialization/resources/models/client/listLlms.js +32 -0
- package/serialization/resources/models/index.d.ts +1 -0
- package/serialization/resources/models/index.js +17 -0
- package/serialization/resources/sources/client/getByName.d.ts +9 -0
- package/serialization/resources/sources/client/getByName.js +31 -0
- package/serialization/resources/sources/client/index.d.ts +3 -0
- package/serialization/resources/sources/client/index.js +32 -0
- package/serialization/resources/sources/client/list.d.ts +11 -0
- package/serialization/resources/sources/client/list.js +32 -0
- package/serialization/resources/sources/client/requests/SourceCreate.d.ts +16 -0
- package/serialization/resources/sources/client/requests/SourceCreate.js +37 -0
- package/serialization/resources/sources/client/requests/SourceUpdate.d.ts +16 -0
- package/serialization/resources/sources/client/requests/SourceUpdate.js +37 -0
- package/serialization/resources/sources/client/requests/index.d.ts +2 -0
- package/serialization/resources/sources/client/requests/index.js +7 -0
- package/serialization/resources/sources/index.d.ts +2 -0
- package/serialization/resources/sources/index.js +18 -0
- package/serialization/resources/sources/resources/files/client/index.d.ts +1 -0
- package/serialization/resources/sources/resources/files/client/index.js +27 -0
- package/serialization/resources/sources/resources/files/client/list.d.ts +11 -0
- package/serialization/resources/sources/resources/files/client/list.js +32 -0
- package/serialization/resources/sources/resources/files/index.d.ts +1 -0
- package/serialization/resources/sources/resources/files/index.js +17 -0
- package/serialization/resources/sources/resources/index.d.ts +2 -0
- package/serialization/resources/sources/resources/index.js +28 -0
- package/serialization/resources/sources/resources/passages/client/index.d.ts +1 -0
- package/serialization/resources/sources/resources/passages/client/index.js +27 -0
- package/serialization/resources/sources/resources/passages/client/list.d.ts +11 -0
- package/serialization/resources/sources/resources/passages/client/list.js +32 -0
- package/serialization/resources/sources/resources/passages/index.d.ts +1 -0
- package/serialization/resources/sources/resources/passages/index.js +17 -0
- package/serialization/resources/tools/client/addBaseTool.d.ts +11 -0
- package/serialization/resources/tools/client/addBaseTool.js +32 -0
- package/serialization/resources/tools/client/getByName.d.ts +9 -0
- package/serialization/resources/tools/client/getByName.js +31 -0
- package/serialization/resources/tools/client/index.d.ts +6 -0
- package/serialization/resources/tools/client/index.js +35 -0
- package/serialization/resources/tools/client/list.d.ts +11 -0
- package/serialization/resources/tools/client/list.js +32 -0
- package/serialization/resources/tools/client/listComposioActionsByApp.d.ts +11 -0
- package/serialization/resources/tools/client/listComposioActionsByApp.js +32 -0
- package/serialization/resources/tools/client/listComposioApps.d.ts +11 -0
- package/serialization/resources/tools/client/listComposioApps.js +32 -0
- package/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +15 -0
- package/serialization/resources/tools/client/requests/ToolRunFromSource.js +36 -0
- package/serialization/resources/tools/client/requests/ToolUpdate.d.ts +18 -0
- package/serialization/resources/tools/client/requests/ToolUpdate.js +39 -0
- package/serialization/resources/tools/client/requests/index.d.ts +2 -0
- package/serialization/resources/tools/client/requests/index.js +7 -0
- package/serialization/resources/tools/index.d.ts +1 -0
- package/serialization/resources/tools/index.js +17 -0
- package/serialization/types/ActionModel.d.ts +23 -0
- package/serialization/types/ActionModel.js +44 -0
- package/serialization/types/ActionParametersModel.d.ts +15 -0
- package/serialization/types/ActionParametersModel.js +36 -0
- package/serialization/types/ActionResponseModel.d.ts +15 -0
- package/serialization/types/ActionResponseModel.js +36 -0
- package/serialization/types/AgentEnvironmentVariable.d.ts +21 -0
- package/serialization/types/AgentEnvironmentVariable.js +42 -0
- package/serialization/types/AgentState.d.ts +39 -0
- package/serialization/types/AgentState.js +60 -0
- package/serialization/types/AgentStateToolRulesItem.d.ts +14 -0
- package/serialization/types/AgentStateToolRulesItem.js +35 -0
- package/serialization/types/AgentType.d.ts +10 -0
- package/serialization/types/AgentType.js +37 -0
- package/serialization/types/AppAuthScheme.d.ts +23 -0
- package/serialization/types/AppAuthScheme.js +44 -0
- package/serialization/types/AppAuthSchemeAuthMode.d.ts +10 -0
- package/serialization/types/AppAuthSchemeAuthMode.js +31 -0
- package/serialization/types/AppModel.d.ts +28 -0
- package/serialization/types/AppModel.js +51 -0
- package/serialization/types/ArchivalMemorySummary.d.ts +12 -0
- package/serialization/types/ArchivalMemorySummary.js +33 -0
- package/serialization/types/AssistantFile.d.ts +15 -0
- package/serialization/types/AssistantFile.js +36 -0
- package/serialization/types/AssistantMessageInput.d.ts +16 -0
- package/serialization/types/AssistantMessageInput.js +37 -0
- package/serialization/types/AssistantMessageOutput.d.ts +14 -0
- package/serialization/types/AssistantMessageOutput.js +35 -0
- package/serialization/types/AuthRequest.d.ts +12 -0
- package/serialization/types/AuthRequest.js +33 -0
- package/serialization/types/AuthResponse.d.ts +13 -0
- package/serialization/types/AuthResponse.js +34 -0
- package/serialization/types/AuthSchemeField.d.ts +19 -0
- package/serialization/types/AuthSchemeField.js +40 -0
- package/serialization/types/Block.d.ts +22 -0
- package/serialization/types/Block.js +43 -0
- package/serialization/types/BlockUpdate.d.ts +18 -0
- package/serialization/types/BlockUpdate.js +39 -0
- package/serialization/types/ChatCompletionRequest.d.ts +38 -0
- package/serialization/types/ChatCompletionRequest.js +59 -0
- package/serialization/types/ChatCompletionRequestFunctionCall.d.ts +11 -0
- package/serialization/types/ChatCompletionRequestFunctionCall.js +36 -0
- package/serialization/types/ChatCompletionRequestMessagesItem.d.ts +14 -0
- package/serialization/types/ChatCompletionRequestMessagesItem.js +35 -0
- package/serialization/types/ChatCompletionRequestStop.d.ts +10 -0
- package/serialization/types/ChatCompletionRequestStop.js +34 -0
- package/serialization/types/ChatCompletionRequestToolChoice.d.ts +11 -0
- package/serialization/types/ChatCompletionRequestToolChoice.js +37 -0
- package/serialization/types/ChatCompletionResponse.d.ts +20 -0
- package/serialization/types/ChatCompletionResponse.js +41 -0
- package/serialization/types/ChildToolRule.d.ts +15 -0
- package/serialization/types/ChildToolRule.js +36 -0
- package/serialization/types/Choice.d.ts +18 -0
- package/serialization/types/Choice.js +41 -0
- package/serialization/types/ConditionalToolRule.d.ts +17 -0
- package/serialization/types/ConditionalToolRule.js +38 -0
- package/serialization/types/ConflictErrorBody.d.ts +12 -0
- package/serialization/types/ConflictErrorBody.js +33 -0
- package/serialization/types/ContextWindowOverview.d.ts +30 -0
- package/serialization/types/ContextWindowOverview.js +51 -0
- package/serialization/types/CreateAssistantFileRequest.d.ts +12 -0
- package/serialization/types/CreateAssistantFileRequest.js +33 -0
- package/serialization/types/CreateAssistantRequest.d.ts +19 -0
- package/serialization/types/CreateAssistantRequest.js +40 -0
- package/serialization/types/CreateBlock.d.ts +18 -0
- package/serialization/types/CreateBlock.js +39 -0
- package/serialization/types/DeleteAssistantFileResponse.d.ts +14 -0
- package/serialization/types/DeleteAssistantFileResponse.js +35 -0
- package/serialization/types/DeleteAssistantResponse.d.ts +14 -0
- package/serialization/types/DeleteAssistantResponse.js +35 -0
- package/serialization/types/E2BSandboxConfig.d.ts +14 -0
- package/serialization/types/E2BSandboxConfig.js +35 -0
- package/serialization/types/EmbeddingConfig.d.ts +21 -0
- package/serialization/types/EmbeddingConfig.js +42 -0
- package/serialization/types/EmbeddingConfigEmbeddingEndpointType.d.ts +10 -0
- package/serialization/types/EmbeddingConfigEmbeddingEndpointType.js +49 -0
- package/serialization/types/FileMetadata.d.ts +23 -0
- package/serialization/types/FileMetadata.js +44 -0
- package/serialization/types/FunctionCallInput.d.ts +12 -0
- package/serialization/types/FunctionCallInput.js +33 -0
- package/serialization/types/FunctionCallOutput.d.ts +13 -0
- package/serialization/types/FunctionCallOutput.js +34 -0
- package/serialization/types/FunctionSchema.d.ts +14 -0
- package/serialization/types/FunctionSchema.js +35 -0
- package/serialization/types/Health.d.ts +13 -0
- package/serialization/types/Health.js +34 -0
- package/serialization/types/HttpValidationError.d.ts +13 -0
- package/serialization/types/HttpValidationError.js +34 -0
- package/serialization/types/InitToolRule.d.ts +14 -0
- package/serialization/types/InitToolRule.js +35 -0
- package/serialization/types/InternalServerErrorBody.d.ts +12 -0
- package/serialization/types/InternalServerErrorBody.js +33 -0
- package/serialization/types/Job.d.ts +21 -0
- package/serialization/types/Job.js +42 -0
- package/serialization/types/JobStatus.d.ts +10 -0
- package/serialization/types/JobStatus.js +31 -0
- package/serialization/types/LettaRequest.d.ts +15 -0
- package/serialization/types/LettaRequest.js +36 -0
- package/serialization/types/LettaResponse.d.ts +15 -0
- package/serialization/types/LettaResponse.js +36 -0
- package/serialization/types/LettaResponseMessagesItem.d.ts +34 -0
- package/serialization/types/LettaResponseMessagesItem.js +49 -0
- package/serialization/types/LettaSchemasLettaMessageToolCall.d.ts +14 -0
- package/serialization/types/LettaSchemasLettaMessageToolCall.js +35 -0
- package/serialization/types/LettaSchemasMessageMessage.d.ts +26 -0
- package/serialization/types/LettaSchemasMessageMessage.js +47 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionRequestTool.d.ts +14 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionRequestTool.js +35 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCall.d.ts +15 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCall.js +36 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCallFunction.d.ts +13 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionRequestToolCallFunction.js +34 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionResponseMessage.d.ts +17 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionResponseMessage.js +38 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionResponseToolCall.d.ts +15 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionResponseToolCall.js +36 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallFunction.d.ts +13 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallFunction.js +34 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallInput.d.ts +15 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallInput.js +36 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallOutput.d.ts +15 -0
- package/serialization/types/LettaSchemasOpenaiChatCompletionsToolCallOutput.js +36 -0
- package/serialization/types/LettaSchemasToolTool.d.ts +23 -0
- package/serialization/types/LettaSchemasToolTool.js +44 -0
- package/serialization/types/LettaUsageStatistics.d.ts +15 -0
- package/serialization/types/LettaUsageStatistics.js +36 -0
- package/serialization/types/LlmConfig.d.ts +19 -0
- package/serialization/types/LlmConfig.js +40 -0
- package/serialization/types/LlmConfigModelEndpointType.d.ts +10 -0
- package/serialization/types/LlmConfigModelEndpointType.js +49 -0
- package/serialization/types/LocalSandboxConfig.d.ts +14 -0
- package/serialization/types/LocalSandboxConfig.js +35 -0
- package/serialization/types/LogProbToken.d.ts +14 -0
- package/serialization/types/LogProbToken.js +35 -0
- package/serialization/types/Memory.d.ts +14 -0
- package/serialization/types/Memory.js +35 -0
- package/serialization/types/MessageContentLogProb.d.ts +16 -0
- package/serialization/types/MessageContentLogProb.js +37 -0
- package/serialization/types/MessageCreate.d.ts +15 -0
- package/serialization/types/MessageCreate.js +36 -0
- package/serialization/types/MessageCreateRole.d.ts +10 -0
- package/serialization/types/MessageCreateRole.js +31 -0
- package/serialization/types/MessageRole.d.ts +10 -0
- package/serialization/types/MessageRole.js +31 -0
- package/serialization/types/NotFoundErrorBody.d.ts +12 -0
- package/serialization/types/NotFoundErrorBody.js +33 -0
- package/serialization/types/NotFoundErrorBodyMessage.d.ts +10 -0
- package/serialization/types/NotFoundErrorBodyMessage.js +34 -0
- package/serialization/types/OpenAiAssistant.d.ts +21 -0
- package/serialization/types/OpenAiAssistant.js +42 -0
- package/serialization/types/Organization.d.ts +14 -0
- package/serialization/types/Organization.js +35 -0
- package/serialization/types/OrganizationCreate.d.ts +12 -0
- package/serialization/types/OrganizationCreate.js +33 -0
- package/serialization/types/Passage.d.ts +26 -0
- package/serialization/types/Passage.js +47 -0
- package/serialization/types/ReasoningMessage.d.ts +14 -0
- package/serialization/types/ReasoningMessage.js +35 -0
- package/serialization/types/RecallMemorySummary.d.ts +12 -0
- package/serialization/types/RecallMemorySummary.js +33 -0
- package/serialization/types/ResponseFormat.d.ts +12 -0
- package/serialization/types/ResponseFormat.js +33 -0
- package/serialization/types/SandboxConfig.d.ts +20 -0
- package/serialization/types/SandboxConfig.js +41 -0
- package/serialization/types/SandboxConfigCreate.d.ts +13 -0
- package/serialization/types/SandboxConfigCreate.js +34 -0
- package/serialization/types/SandboxConfigCreateConfig.d.ts +12 -0
- package/serialization/types/SandboxConfigCreateConfig.js +33 -0
- package/serialization/types/SandboxConfigUpdate.d.ts +13 -0
- package/serialization/types/SandboxConfigUpdate.js +34 -0
- package/serialization/types/SandboxConfigUpdateConfig.d.ts +12 -0
- package/serialization/types/SandboxConfigUpdateConfig.js +33 -0
- package/serialization/types/SandboxEnvironmentVariable.d.ts +21 -0
- package/serialization/types/SandboxEnvironmentVariable.js +42 -0
- package/serialization/types/SandboxEnvironmentVariableCreate.d.ts +14 -0
- package/serialization/types/SandboxEnvironmentVariableCreate.js +35 -0
- package/serialization/types/SandboxEnvironmentVariableUpdate.d.ts +14 -0
- package/serialization/types/SandboxEnvironmentVariableUpdate.js +35 -0
- package/serialization/types/SandboxType.d.ts +10 -0
- package/serialization/types/SandboxType.js +31 -0
- package/serialization/types/Source.d.ts +22 -0
- package/serialization/types/Source.js +43 -0
- package/serialization/types/SystemMessageInput.d.ts +14 -0
- package/serialization/types/SystemMessageInput.js +35 -0
- package/serialization/types/SystemMessageOutput.d.ts +14 -0
- package/serialization/types/SystemMessageOutput.js +35 -0
- package/serialization/types/TerminalToolRule.d.ts +14 -0
- package/serialization/types/TerminalToolRule.js +35 -0
- package/serialization/types/ToolCallDelta.d.ts +14 -0
- package/serialization/types/ToolCallDelta.js +35 -0
- package/serialization/types/ToolCallFunctionOutput.d.ts +13 -0
- package/serialization/types/ToolCallFunctionOutput.js +34 -0
- package/serialization/types/ToolCallMessage.d.ts +15 -0
- package/serialization/types/ToolCallMessage.js +36 -0
- package/serialization/types/ToolCallMessageToolCall.d.ts +12 -0
- package/serialization/types/ToolCallMessageToolCall.js +33 -0
- package/serialization/types/ToolCreate.d.ts +19 -0
- package/serialization/types/ToolCreate.js +40 -0
- package/serialization/types/ToolFunctionChoice.d.ts +14 -0
- package/serialization/types/ToolFunctionChoice.js +35 -0
- package/serialization/types/ToolInput.d.ts +14 -0
- package/serialization/types/ToolInput.js +35 -0
- package/serialization/types/ToolMessage.d.ts +14 -0
- package/serialization/types/ToolMessage.js +35 -0
- package/serialization/types/ToolReturnMessage.d.ts +19 -0
- package/serialization/types/ToolReturnMessage.js +40 -0
- package/serialization/types/ToolReturnMessageStatus.d.ts +10 -0
- package/serialization/types/ToolReturnMessageStatus.js +31 -0
- package/serialization/types/ToolRuleType.d.ts +10 -0
- package/serialization/types/ToolRuleType.js +38 -0
- package/serialization/types/UsageStatistics.d.ts +14 -0
- package/serialization/types/UsageStatistics.js +35 -0
- package/serialization/types/User.d.ts +17 -0
- package/serialization/types/User.js +38 -0
- package/serialization/types/UserCreate.d.ts +13 -0
- package/serialization/types/UserCreate.js +34 -0
- package/serialization/types/UserMessageInput.d.ts +15 -0
- package/serialization/types/UserMessageInput.js +36 -0
- package/serialization/types/UserMessageInputContent.d.ts +10 -0
- package/serialization/types/UserMessageInputContent.js +34 -0
- package/serialization/types/UserMessageOutput.d.ts +14 -0
- package/serialization/types/UserMessageOutput.js +35 -0
- package/serialization/types/UserUpdate.d.ts +14 -0
- package/serialization/types/UserUpdate.js +35 -0
- package/serialization/types/ValidationError.d.ts +15 -0
- package/serialization/types/ValidationError.js +36 -0
- package/serialization/types/ValidationErrorLocItem.d.ts +10 -0
- package/serialization/types/ValidationErrorLocItem.js +31 -0
- package/serialization/types/index.d.ts +114 -0
- package/serialization/types/index.js +130 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemDirection.d.ts +0 -9
- package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOperator.d.ts +0 -9
- package/api/types/LettaResponseAssistantMessage.d.ts +0 -9
- package/api/types/LettaResponseLettaUsageStatistics.d.ts +0 -23
- package/api/types/LettaResponseReasoningMessage.d.ts +0 -17
- package/api/types/LettaResponseSystemMessage.d.ts +0 -17
- package/api/types/LettaResponseToolCall.d.ts +0 -8
- package/api/types/LettaResponseToolCallDelta.d.ts +0 -8
- package/api/types/LettaResponseToolCallMessage.d.ts +0 -18
- package/api/types/LettaResponseToolCallMessageToolCall.d.ts +0 -5
- package/api/types/LettaResponseToolCallMessageToolCallOne.d.ts +0 -8
- package/api/types/LettaResponseToolCallMessageToolCallZero.d.ts +0 -8
- package/api/types/LettaResponseToolCallMessageToolCallZero.js +0 -5
- package/api/types/LettaResponseToolReturnMessage.d.ts +0 -26
- package/api/types/LettaResponseToolReturnMessage.js +0 -5
- package/api/types/LettaResponseToolReturnMessageStatus.d.ts +0 -8
- package/api/types/LettaResponseToolReturnMessageStatus.js +0 -10
- package/api/types/LettaResponseUserMessage.d.ts +0 -17
- package/api/types/LettaResponseUserMessage.js +0 -5
- package/core/auth/BasicAuth.d.ts +0 -8
- package/core/auth/BasicAuth.js +0 -26
- package/core/auth/BearerToken.d.ts +0 -5
- package/core/auth/BearerToken.js +0 -15
- package/core/auth/index.d.ts +0 -2
- package/core/auth/index.js +0 -7
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemDirection.d.ts +0 -9
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemDirection.js +0 -5
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOperator.d.ts +0 -9
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOperator.js +0 -5
- package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemZero.js +0 -5
- package/dist/api/types/LettaResponseAssistantMessage.d.ts +0 -9
- package/dist/api/types/LettaResponseAssistantMessage.js +0 -5
- package/dist/api/types/LettaResponseLettaUsageStatistics.d.ts +0 -23
- package/dist/api/types/LettaResponseLettaUsageStatistics.js +0 -5
- package/dist/api/types/LettaResponseReasoningMessage.d.ts +0 -17
- package/dist/api/types/LettaResponseReasoningMessage.js +0 -5
- package/dist/api/types/LettaResponseSystemMessage.d.ts +0 -17
- package/dist/api/types/LettaResponseSystemMessage.js +0 -5
- package/dist/api/types/LettaResponseToolCall.d.ts +0 -8
- package/dist/api/types/LettaResponseToolCall.js +0 -5
- package/dist/api/types/LettaResponseToolCallDelta.d.ts +0 -8
- package/dist/api/types/LettaResponseToolCallDelta.js +0 -5
- package/dist/api/types/LettaResponseToolCallMessage.d.ts +0 -18
- package/dist/api/types/LettaResponseToolCallMessage.js +0 -5
- package/dist/api/types/LettaResponseToolCallMessageToolCall.d.ts +0 -5
- package/dist/api/types/LettaResponseToolCallMessageToolCall.js +0 -5
- package/dist/api/types/LettaResponseToolCallMessageToolCallOne.d.ts +0 -8
- package/dist/api/types/LettaResponseToolCallMessageToolCallOne.js +0 -5
- package/dist/api/types/LettaResponseToolCallMessageToolCallZero.d.ts +0 -8
- package/dist/api/types/LettaResponseToolCallMessageToolCallZero.js +0 -5
- package/dist/api/types/LettaResponseToolReturnMessage.d.ts +0 -26
- package/dist/api/types/LettaResponseToolReturnMessage.js +0 -5
- package/dist/api/types/LettaResponseToolReturnMessageStatus.d.ts +0 -8
- package/dist/api/types/LettaResponseToolReturnMessageStatus.js +0 -10
- package/dist/api/types/LettaResponseUserMessage.d.ts +0 -17
- package/dist/api/types/LettaResponseUserMessage.js +0 -5
- package/dist/core/auth/BasicAuth.d.ts +0 -8
- package/dist/core/auth/BasicAuth.js +0 -26
- package/dist/core/auth/BearerToken.d.ts +0 -5
- package/dist/core/auth/BearerToken.js +0 -15
- package/dist/core/auth/index.d.ts +0 -2
- package/dist/core/auth/index.js +0 -7
- /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemDirection.js → AgentsGetAgentVariablesResponse.js} +0 -0
- /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemOperator.js → AgentsSearchDeployedAgentsRequestSearchItemName.js} +0 -0
- /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemZero.js → AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js} +0 -0
- /package/api/{types/LettaResponseAssistantMessage.js → resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.js} +0 -0
- /package/api/types/{LettaResponseLettaUsageStatistics.js → AgentEnvironmentVariable.js} +0 -0
- /package/api/types/{LettaResponseReasoningMessage.js → LettaResponseMessagesItem.js} +0 -0
- /package/{api/types/LettaResponseSystemMessage.js → dist/api/resources/agents/types/AgentsGetAgentVariablesResponse.js} +0 -0
- /package/{api/types/LettaResponseToolCall.js → dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.js} +0 -0
- /package/{api/types/LettaResponseToolCallDelta.js → dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js} +0 -0
- /package/{api/types/LettaResponseToolCallMessage.js → dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.js} +0 -0
- /package/{api/types/LettaResponseToolCallMessageToolCall.js → dist/api/types/AgentEnvironmentVariable.js} +0 -0
- /package/{api/types/LettaResponseToolCallMessageToolCallOne.js → dist/api/types/LettaResponseMessagesItem.js} +0 -0
package/serialization/resources/agents/resources/messages/client/requests/LettaStreamingRequest.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
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 { MessageCreate } from "../../../../../../types/MessageCreate";
|
|
8
|
+
export declare const LettaStreamingRequest: core.serialization.Schema<serializers.agents.LettaStreamingRequest.Raw, Letta.agents.LettaStreamingRequest>;
|
|
9
|
+
export declare namespace LettaStreamingRequest {
|
|
10
|
+
interface Raw {
|
|
11
|
+
messages: MessageCreate.Raw[];
|
|
12
|
+
assistant_message_tool_name?: string | null;
|
|
13
|
+
assistant_message_tool_kwarg?: string | null;
|
|
14
|
+
stream_tokens?: boolean | null;
|
|
15
|
+
}
|
|
16
|
+
}
|
package/serialization/resources/agents/resources/messages/client/requests/LettaStreamingRequest.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.LettaStreamingRequest = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../../../../core"));
|
|
31
|
+
const MessageCreate_1 = require("../../../../../../types/MessageCreate");
|
|
32
|
+
exports.LettaStreamingRequest = core.serialization.object({
|
|
33
|
+
messages: core.serialization.list(MessageCreate_1.MessageCreate),
|
|
34
|
+
assistantMessageToolName: core.serialization.property("assistant_message_tool_name", core.serialization.string().optional()),
|
|
35
|
+
assistantMessageToolKwarg: core.serialization.property("assistant_message_tool_kwarg", core.serialization.string().optional()),
|
|
36
|
+
streamTokens: core.serialization.property("stream_tokens", core.serialization.boolean().optional()),
|
|
37
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { MessageRole } from "../../../../../../types/MessageRole";
|
|
8
|
+
import { LettaSchemasOpenaiChatCompletionsToolCallInput } from "../../../../../../types/LettaSchemasOpenaiChatCompletionsToolCallInput";
|
|
9
|
+
export declare const MessageUpdate: core.serialization.Schema<serializers.agents.MessageUpdate.Raw, Letta.agents.MessageUpdate>;
|
|
10
|
+
export declare namespace MessageUpdate {
|
|
11
|
+
interface Raw {
|
|
12
|
+
role?: MessageRole.Raw | null;
|
|
13
|
+
text?: string | null;
|
|
14
|
+
name?: string | null;
|
|
15
|
+
tool_calls?: LettaSchemasOpenaiChatCompletionsToolCallInput.Raw[] | null;
|
|
16
|
+
tool_call_id?: string | null;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.MessageUpdate = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../../../../core"));
|
|
31
|
+
const MessageRole_1 = require("../../../../../../types/MessageRole");
|
|
32
|
+
const LettaSchemasOpenaiChatCompletionsToolCallInput_1 = require("../../../../../../types/LettaSchemasOpenaiChatCompletionsToolCallInput");
|
|
33
|
+
exports.MessageUpdate = core.serialization.object({
|
|
34
|
+
role: MessageRole_1.MessageRole.optional(),
|
|
35
|
+
text: core.serialization.string().optional(),
|
|
36
|
+
name: core.serialization.string().optional(),
|
|
37
|
+
toolCalls: core.serialization.property("tool_calls", core.serialization.list(LettaSchemasOpenaiChatCompletionsToolCallInput_1.LettaSchemasOpenaiChatCompletionsToolCallInput).optional()),
|
|
38
|
+
toolCallId: core.serialization.property("tool_call_id", core.serialization.string().optional()),
|
|
39
|
+
});
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LettaStreamingRequest = exports.MessageUpdate = void 0;
|
|
4
|
+
var MessageUpdate_1 = require("./MessageUpdate");
|
|
5
|
+
Object.defineProperty(exports, "MessageUpdate", { enumerable: true, get: function () { return MessageUpdate_1.MessageUpdate; } });
|
|
6
|
+
var LettaStreamingRequest_1 = require("./LettaStreamingRequest");
|
|
7
|
+
Object.defineProperty(exports, "LettaStreamingRequest", { enumerable: true, get: function () { return LettaStreamingRequest_1.LettaStreamingRequest; } });
|
|
@@ -0,0 +1,18 @@
|
|
|
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("./types"), exports);
|
|
18
|
+
__exportStar(require("./client"), exports);
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { SystemMessageOutput } from "../../../../../types/SystemMessageOutput";
|
|
8
|
+
import { UserMessageOutput } from "../../../../../types/UserMessageOutput";
|
|
9
|
+
import { ReasoningMessage } from "../../../../../types/ReasoningMessage";
|
|
10
|
+
import { ToolCallMessage } from "../../../../../types/ToolCallMessage";
|
|
11
|
+
import { ToolReturnMessage } from "../../../../../types/ToolReturnMessage";
|
|
12
|
+
import { AssistantMessageOutput } from "../../../../../types/AssistantMessageOutput";
|
|
13
|
+
import { LettaUsageStatistics } from "../../../../../types/LettaUsageStatistics";
|
|
14
|
+
export declare const LettaStreamingResponse: core.serialization.Schema<serializers.agents.LettaStreamingResponse.Raw, Letta.agents.LettaStreamingResponse>;
|
|
15
|
+
export declare namespace LettaStreamingResponse {
|
|
16
|
+
type Raw = LettaStreamingResponse.SystemMessage | LettaStreamingResponse.UserMessage | LettaStreamingResponse.ReasoningMessage | LettaStreamingResponse.ToolCallMessage | LettaStreamingResponse.ToolReturnMessage | LettaStreamingResponse.AssistantMessage | LettaStreamingResponse.UsageStatistics;
|
|
17
|
+
interface SystemMessage extends SystemMessageOutput.Raw {
|
|
18
|
+
message_type: "system_message";
|
|
19
|
+
}
|
|
20
|
+
interface UserMessage extends UserMessageOutput.Raw {
|
|
21
|
+
message_type: "user_message";
|
|
22
|
+
}
|
|
23
|
+
interface ReasoningMessage extends ReasoningMessage.Raw {
|
|
24
|
+
message_type: "reasoning_message";
|
|
25
|
+
}
|
|
26
|
+
interface ToolCallMessage extends ToolCallMessage.Raw {
|
|
27
|
+
message_type: "tool_call_message";
|
|
28
|
+
}
|
|
29
|
+
interface ToolReturnMessage extends ToolReturnMessage.Raw {
|
|
30
|
+
message_type: "tool_return_message";
|
|
31
|
+
}
|
|
32
|
+
interface AssistantMessage extends AssistantMessageOutput.Raw {
|
|
33
|
+
message_type: "assistant_message";
|
|
34
|
+
}
|
|
35
|
+
interface UsageStatistics extends LettaUsageStatistics.Raw {
|
|
36
|
+
message_type: "usage_statistics";
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.LettaStreamingResponse = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../../../core"));
|
|
31
|
+
const SystemMessageOutput_1 = require("../../../../../types/SystemMessageOutput");
|
|
32
|
+
const UserMessageOutput_1 = require("../../../../../types/UserMessageOutput");
|
|
33
|
+
const ReasoningMessage_1 = require("../../../../../types/ReasoningMessage");
|
|
34
|
+
const ToolCallMessage_1 = require("../../../../../types/ToolCallMessage");
|
|
35
|
+
const ToolReturnMessage_1 = require("../../../../../types/ToolReturnMessage");
|
|
36
|
+
const AssistantMessageOutput_1 = require("../../../../../types/AssistantMessageOutput");
|
|
37
|
+
const LettaUsageStatistics_1 = require("../../../../../types/LettaUsageStatistics");
|
|
38
|
+
exports.LettaStreamingResponse = core.serialization
|
|
39
|
+
.union(core.serialization.discriminant("messageType", "message_type"), {
|
|
40
|
+
system_message: SystemMessageOutput_1.SystemMessageOutput,
|
|
41
|
+
user_message: UserMessageOutput_1.UserMessageOutput,
|
|
42
|
+
reasoning_message: ReasoningMessage_1.ReasoningMessage,
|
|
43
|
+
tool_call_message: ToolCallMessage_1.ToolCallMessage,
|
|
44
|
+
tool_return_message: ToolReturnMessage_1.ToolReturnMessage,
|
|
45
|
+
assistant_message: AssistantMessageOutput_1.AssistantMessageOutput,
|
|
46
|
+
usage_statistics: LettaUsageStatistics_1.LettaUsageStatistics,
|
|
47
|
+
})
|
|
48
|
+
.transform({
|
|
49
|
+
transform: (value) => value,
|
|
50
|
+
untransform: (value) => value,
|
|
51
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
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 { LettaSchemasMessageMessage } from "../../../../../types/LettaSchemasMessageMessage";
|
|
8
|
+
import { MessagesListResponseItem } from "./MessagesListResponseItem";
|
|
9
|
+
export declare const MessagesListResponse: core.serialization.Schema<serializers.agents.MessagesListResponse.Raw, Letta.agents.MessagesListResponse>;
|
|
10
|
+
export declare namespace MessagesListResponse {
|
|
11
|
+
type Raw = LettaSchemasMessageMessage.Raw[] | MessagesListResponseItem.Raw[];
|
|
12
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.MessagesListResponse = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../../../core"));
|
|
31
|
+
const LettaSchemasMessageMessage_1 = require("../../../../../types/LettaSchemasMessageMessage");
|
|
32
|
+
const MessagesListResponseItem_1 = require("./MessagesListResponseItem");
|
|
33
|
+
exports.MessagesListResponse = core.serialization.undiscriminatedUnion([
|
|
34
|
+
core.serialization.list(LettaSchemasMessageMessage_1.LettaSchemasMessageMessage),
|
|
35
|
+
core.serialization.list(MessagesListResponseItem_1.MessagesListResponseItem),
|
|
36
|
+
]);
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { SystemMessageOutput } from "../../../../../types/SystemMessageOutput";
|
|
8
|
+
import { UserMessageOutput } from "../../../../../types/UserMessageOutput";
|
|
9
|
+
import { ReasoningMessage } from "../../../../../types/ReasoningMessage";
|
|
10
|
+
import { ToolCallMessage } from "../../../../../types/ToolCallMessage";
|
|
11
|
+
import { ToolReturnMessage } from "../../../../../types/ToolReturnMessage";
|
|
12
|
+
import { AssistantMessageOutput } from "../../../../../types/AssistantMessageOutput";
|
|
13
|
+
export declare const MessagesListResponseItem: core.serialization.Schema<serializers.agents.MessagesListResponseItem.Raw, Letta.agents.MessagesListResponseItem>;
|
|
14
|
+
export declare namespace MessagesListResponseItem {
|
|
15
|
+
type Raw = MessagesListResponseItem.SystemMessage | MessagesListResponseItem.UserMessage | MessagesListResponseItem.ReasoningMessage | MessagesListResponseItem.ToolCallMessage | MessagesListResponseItem.ToolReturnMessage | MessagesListResponseItem.AssistantMessage;
|
|
16
|
+
interface SystemMessage extends SystemMessageOutput.Raw {
|
|
17
|
+
message_type: "system_message";
|
|
18
|
+
}
|
|
19
|
+
interface UserMessage extends UserMessageOutput.Raw {
|
|
20
|
+
message_type: "user_message";
|
|
21
|
+
}
|
|
22
|
+
interface ReasoningMessage extends ReasoningMessage.Raw {
|
|
23
|
+
message_type: "reasoning_message";
|
|
24
|
+
}
|
|
25
|
+
interface ToolCallMessage extends ToolCallMessage.Raw {
|
|
26
|
+
message_type: "tool_call_message";
|
|
27
|
+
}
|
|
28
|
+
interface ToolReturnMessage extends ToolReturnMessage.Raw {
|
|
29
|
+
message_type: "tool_return_message";
|
|
30
|
+
}
|
|
31
|
+
interface AssistantMessage extends AssistantMessageOutput.Raw {
|
|
32
|
+
message_type: "assistant_message";
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.MessagesListResponseItem = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../../../core"));
|
|
31
|
+
const SystemMessageOutput_1 = require("../../../../../types/SystemMessageOutput");
|
|
32
|
+
const UserMessageOutput_1 = require("../../../../../types/UserMessageOutput");
|
|
33
|
+
const ReasoningMessage_1 = require("../../../../../types/ReasoningMessage");
|
|
34
|
+
const ToolCallMessage_1 = require("../../../../../types/ToolCallMessage");
|
|
35
|
+
const ToolReturnMessage_1 = require("../../../../../types/ToolReturnMessage");
|
|
36
|
+
const AssistantMessageOutput_1 = require("../../../../../types/AssistantMessageOutput");
|
|
37
|
+
exports.MessagesListResponseItem = core.serialization
|
|
38
|
+
.union(core.serialization.discriminant("messageType", "message_type"), {
|
|
39
|
+
system_message: SystemMessageOutput_1.SystemMessageOutput,
|
|
40
|
+
user_message: UserMessageOutput_1.UserMessageOutput,
|
|
41
|
+
reasoning_message: ReasoningMessage_1.ReasoningMessage,
|
|
42
|
+
tool_call_message: ToolCallMessage_1.ToolCallMessage,
|
|
43
|
+
tool_return_message: ToolReturnMessage_1.ToolReturnMessage,
|
|
44
|
+
assistant_message: AssistantMessageOutput_1.AssistantMessageOutput,
|
|
45
|
+
})
|
|
46
|
+
.transform({
|
|
47
|
+
transform: (value) => value,
|
|
48
|
+
untransform: (value) => value,
|
|
49
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
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("./MessagesListResponseItem"), exports);
|
|
18
|
+
__exportStar(require("./MessagesListResponse"), exports);
|
|
19
|
+
__exportStar(require("./LettaStreamingResponse"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
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 { Source } from "../../../../../types/Source";
|
|
8
|
+
export declare const Response: core.serialization.Schema<serializers.agents.sources.get.Response.Raw, Letta.Source[]>;
|
|
9
|
+
export declare namespace Response {
|
|
10
|
+
type Raw = Source.Raw[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Response = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../../../core"));
|
|
31
|
+
const Source_1 = require("../../../../../types/Source");
|
|
32
|
+
exports.Response = core.serialization.list(Source_1.Source);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as get from "./get";
|
|
@@ -0,0 +1,27 @@
|
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.get = void 0;
|
|
27
|
+
exports.get = __importStar(require("./get"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./client";
|
|
@@ -0,0 +1,17 @@
|
|
|
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("./client"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as list from "./list";
|
|
@@ -0,0 +1,27 @@
|
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.list = void 0;
|
|
27
|
+
exports.list = __importStar(require("./list"));
|
|
@@ -0,0 +1,11 @@
|
|
|
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 { LettaSchemasToolTool } from "../../../../../types/LettaSchemasToolTool";
|
|
8
|
+
export declare const Response: core.serialization.Schema<serializers.agents.tools.list.Response.Raw, Letta.LettaSchemasToolTool[]>;
|
|
9
|
+
export declare namespace Response {
|
|
10
|
+
type Raw = LettaSchemasToolTool.Raw[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Response = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../../../core"));
|
|
31
|
+
const LettaSchemasToolTool_1 = require("../../../../../types/LettaSchemasToolTool");
|
|
32
|
+
exports.Response = core.serialization.list(LettaSchemasToolTool_1.LettaSchemasToolTool);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./client";
|
|
@@ -0,0 +1,17 @@
|
|
|
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("./client"), exports);
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
export declare const AgentsGetAgentVariablesResponse: core.serialization.ObjectSchema<serializers.AgentsGetAgentVariablesResponse.Raw, Letta.AgentsGetAgentVariablesResponse>;
|
|
8
|
+
export declare namespace AgentsGetAgentVariablesResponse {
|
|
9
|
+
interface Raw {
|
|
10
|
+
variables: Record<string, string>;
|
|
11
|
+
}
|
|
12
|
+
}
|