@letta-ai/letta-client 0.1.176 → 0.1.178

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (432) hide show
  1. package/api/resources/agents/client/Client.d.ts +9 -3
  2. package/api/resources/agents/client/Client.js +31 -16
  3. package/api/resources/agents/client/requests/AgentsExportFileRequest.d.ts +14 -0
  4. package/api/resources/agents/client/requests/index.d.ts +1 -0
  5. package/api/resources/agents/resources/blocks/client/Client.js +5 -5
  6. package/api/resources/agents/resources/context/client/Client.js +1 -1
  7. package/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
  8. package/api/resources/agents/resources/files/client/Client.js +3 -3
  9. package/api/resources/agents/resources/folders/client/Client.js +3 -3
  10. package/api/resources/agents/resources/groups/client/Client.js +1 -1
  11. package/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
  12. package/api/resources/agents/resources/messages/client/Client.d.ts +3 -3
  13. package/api/resources/agents/resources/messages/client/Client.js +14 -18
  14. package/api/resources/agents/resources/messages/client/requests/CancelAgentRunRequest.d.ts +11 -0
  15. package/api/resources/agents/resources/messages/client/requests/index.d.ts +1 -0
  16. package/api/resources/agents/resources/passages/client/Client.js +4 -4
  17. package/api/resources/agents/resources/sources/client/Client.js +3 -3
  18. package/api/resources/agents/resources/templates/client/Client.js +3 -3
  19. package/api/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +2 -0
  20. package/api/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +2 -0
  21. package/api/resources/agents/resources/tools/client/Client.js +3 -3
  22. package/api/resources/batches/client/Client.js +4 -4
  23. package/api/resources/blocks/client/Client.js +6 -6
  24. package/api/resources/blocks/resources/agents/client/Client.js +1 -1
  25. package/api/resources/clientSideAccessTokens/client/Client.js +3 -3
  26. package/api/resources/embeddingModels/client/Client.js +1 -1
  27. package/api/resources/folders/client/Client.js +9 -9
  28. package/api/resources/folders/resources/files/client/Client.js +3 -3
  29. package/api/resources/folders/resources/passages/client/Client.js +1 -1
  30. package/api/resources/groups/client/Client.js +6 -6
  31. package/api/resources/groups/resources/messages/client/Client.js +5 -5
  32. package/api/resources/health/client/Client.js +1 -1
  33. package/api/resources/identities/client/Client.js +7 -7
  34. package/api/resources/identities/resources/properties/client/Client.js +1 -1
  35. package/api/resources/jobs/client/Client.js +5 -5
  36. package/api/resources/messages/client/Client.js +1 -1
  37. package/api/resources/models/client/Client.js +1 -1
  38. package/api/resources/projects/client/Client.js +1 -1
  39. package/api/resources/providers/client/Client.d.ts +15 -3
  40. package/api/resources/providers/client/Client.js +64 -8
  41. package/{dist/api/types → api/resources/providers/client/requests}/ProviderCheck.d.ts +12 -1
  42. package/api/resources/providers/client/requests/ProviderCreate.d.ts +4 -0
  43. package/api/resources/providers/client/requests/ProviderUpdate.d.ts +4 -0
  44. package/api/resources/providers/client/requests/index.d.ts +1 -0
  45. package/api/resources/runs/client/Client.js +4 -4
  46. package/api/resources/runs/resources/messages/client/Client.js +1 -1
  47. package/api/resources/runs/resources/steps/client/Client.js +1 -1
  48. package/api/resources/runs/resources/usage/client/Client.js +1 -1
  49. package/api/resources/sources/client/Client.js +10 -10
  50. package/api/resources/sources/resources/files/client/Client.js +3 -3
  51. package/api/resources/sources/resources/passages/client/Client.js +1 -1
  52. package/api/resources/steps/client/Client.d.ts +13 -0
  53. package/api/resources/steps/client/Client.js +78 -2
  54. package/api/resources/steps/resources/feedback/client/Client.js +1 -1
  55. package/api/resources/tags/client/Client.js +1 -1
  56. package/api/resources/telemetry/client/Client.js +1 -1
  57. package/api/resources/templates/client/Client.js +1 -1
  58. package/api/resources/templates/resources/agents/client/Client.js +1 -1
  59. package/api/resources/templates/types/TemplatesListResponseTemplatesItem.d.ts +4 -0
  60. package/api/resources/tools/client/Client.d.ts +1 -1
  61. package/api/resources/tools/client/Client.js +21 -21
  62. package/api/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
  63. package/api/resources/voice/client/Client.js +1 -1
  64. package/api/types/AgentFileSchema.d.ts +27 -0
  65. package/api/types/BlockSchema.d.ts +29 -0
  66. package/api/types/BodyExportAgentSerialized.d.ts +8 -0
  67. package/api/types/CodeInput.d.ts +3 -1
  68. package/api/types/CompletionCreateParamsNonStreaming.d.ts +2 -0
  69. package/api/types/CompletionCreateParamsStreaming.d.ts +2 -0
  70. package/api/types/EmbeddingConfigEmbeddingEndpointType.d.ts +1 -2
  71. package/api/types/EmbeddingConfigEmbeddingEndpointType.js +0 -1
  72. package/api/types/FileAgentSchema.d.ts +28 -0
  73. package/api/types/FileSchema.d.ts +37 -0
  74. package/api/types/GroupSchema.d.ts +21 -0
  75. package/api/types/GroupSchemaManagerConfig.d.ts +8 -0
  76. package/api/types/ImportedAgentsResponse.d.ts +10 -0
  77. package/api/types/ImportedAgentsResponse.js +5 -0
  78. package/api/types/LettaSchemasAgentFileAgentSchema.d.ts +105 -0
  79. package/api/types/LettaSchemasAgentFileAgentSchema.js +5 -0
  80. package/api/types/LettaSchemasAgentFileAgentSchemaResponseFormat.d.ts +5 -0
  81. package/api/types/LettaSchemasAgentFileAgentSchemaResponseFormat.js +5 -0
  82. package/api/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.d.ts +5 -0
  83. package/api/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.js +5 -0
  84. package/api/types/LettaSchemasAgentFileMessageSchema.d.ts +29 -0
  85. package/api/types/LettaSchemasAgentFileMessageSchema.js +5 -0
  86. package/api/types/LettaSchemasAgentFileMessageSchemaContent.d.ts +8 -0
  87. package/api/types/LettaSchemasAgentFileMessageSchemaContent.js +5 -0
  88. package/api/types/LettaSchemasAgentFileToolSchema.d.ts +39 -0
  89. package/api/types/LettaSchemasAgentFileToolSchema.js +5 -0
  90. package/api/types/{AgentSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaAgentSchema.d.ts} +4 -4
  91. package/api/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchema.js +5 -0
  92. package/api/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.d.ts +5 -0
  93. package/api/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.js +5 -0
  94. package/api/types/{MessageSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaMessageSchema.d.ts} +1 -1
  95. package/api/types/LettaSerializeSchemasPydanticAgentSchemaMessageSchema.js +5 -0
  96. package/api/types/{ToolSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaToolSchema.d.ts} +1 -1
  97. package/api/types/LettaSerializeSchemasPydanticAgentSchemaToolSchema.js +5 -0
  98. package/api/types/LlmConfig.d.ts +1 -1
  99. package/api/types/LlmConfigModelEndpointType.d.ts +1 -2
  100. package/api/types/LlmConfigModelEndpointType.js +0 -1
  101. package/api/types/LlmConfigReasoningEffort.d.ts +2 -1
  102. package/api/types/LlmConfigReasoningEffort.js +1 -0
  103. package/api/types/McpServerSchema.d.ts +15 -0
  104. package/api/types/McpServerSchema.js +5 -0
  105. package/api/types/McpToolExecuteRequest.d.ts +7 -0
  106. package/api/types/McpToolExecuteRequest.js +5 -0
  107. package/api/types/Provider.d.ts +2 -0
  108. package/api/types/ProviderType.d.ts +1 -2
  109. package/api/types/ProviderType.js +0 -1
  110. package/api/types/SourceSchema.d.ts +25 -0
  111. package/api/types/SourceSchema.js +5 -0
  112. package/api/types/StepMetrics.d.ts +25 -0
  113. package/api/types/StepMetrics.js +5 -0
  114. package/api/types/index.d.ts +22 -5
  115. package/api/types/index.js +22 -5
  116. package/dist/api/resources/agents/client/Client.d.ts +9 -3
  117. package/dist/api/resources/agents/client/Client.js +31 -16
  118. package/dist/api/resources/agents/client/requests/AgentsExportFileRequest.d.ts +14 -0
  119. package/dist/api/resources/agents/client/requests/AgentsExportFileRequest.js +5 -0
  120. package/dist/api/resources/agents/client/requests/index.d.ts +1 -0
  121. package/dist/api/resources/agents/resources/blocks/client/Client.js +5 -5
  122. package/dist/api/resources/agents/resources/context/client/Client.js +1 -1
  123. package/dist/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
  124. package/dist/api/resources/agents/resources/files/client/Client.js +3 -3
  125. package/dist/api/resources/agents/resources/folders/client/Client.js +3 -3
  126. package/dist/api/resources/agents/resources/groups/client/Client.js +1 -1
  127. package/dist/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
  128. package/dist/api/resources/agents/resources/messages/client/Client.d.ts +3 -3
  129. package/dist/api/resources/agents/resources/messages/client/Client.js +14 -18
  130. package/dist/api/resources/agents/resources/messages/client/requests/CancelAgentRunRequest.d.ts +11 -0
  131. package/dist/api/resources/agents/resources/messages/client/requests/CancelAgentRunRequest.js +5 -0
  132. package/dist/api/resources/agents/resources/messages/client/requests/index.d.ts +1 -0
  133. package/dist/api/resources/agents/resources/passages/client/Client.js +4 -4
  134. package/dist/api/resources/agents/resources/sources/client/Client.js +3 -3
  135. package/dist/api/resources/agents/resources/templates/client/Client.js +3 -3
  136. package/dist/api/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +2 -0
  137. package/dist/api/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +2 -0
  138. package/dist/api/resources/agents/resources/tools/client/Client.js +3 -3
  139. package/dist/api/resources/batches/client/Client.js +4 -4
  140. package/dist/api/resources/blocks/client/Client.js +6 -6
  141. package/dist/api/resources/blocks/resources/agents/client/Client.js +1 -1
  142. package/dist/api/resources/clientSideAccessTokens/client/Client.js +3 -3
  143. package/dist/api/resources/embeddingModels/client/Client.js +1 -1
  144. package/dist/api/resources/folders/client/Client.js +9 -9
  145. package/dist/api/resources/folders/resources/files/client/Client.js +3 -3
  146. package/dist/api/resources/folders/resources/passages/client/Client.js +1 -1
  147. package/dist/api/resources/groups/client/Client.js +6 -6
  148. package/dist/api/resources/groups/resources/messages/client/Client.js +5 -5
  149. package/dist/api/resources/health/client/Client.js +1 -1
  150. package/dist/api/resources/identities/client/Client.js +7 -7
  151. package/dist/api/resources/identities/resources/properties/client/Client.js +1 -1
  152. package/dist/api/resources/jobs/client/Client.js +5 -5
  153. package/dist/api/resources/messages/client/Client.js +1 -1
  154. package/dist/api/resources/models/client/Client.js +1 -1
  155. package/dist/api/resources/projects/client/Client.js +1 -1
  156. package/dist/api/resources/providers/client/Client.d.ts +15 -3
  157. package/dist/api/resources/providers/client/Client.js +64 -8
  158. package/{api/types → dist/api/resources/providers/client/requests}/ProviderCheck.d.ts +12 -1
  159. package/dist/api/resources/providers/client/requests/ProviderCheck.js +5 -0
  160. package/dist/api/resources/providers/client/requests/ProviderCreate.d.ts +4 -0
  161. package/dist/api/resources/providers/client/requests/ProviderUpdate.d.ts +4 -0
  162. package/dist/api/resources/providers/client/requests/index.d.ts +1 -0
  163. package/dist/api/resources/runs/client/Client.js +4 -4
  164. package/dist/api/resources/runs/resources/messages/client/Client.js +1 -1
  165. package/dist/api/resources/runs/resources/steps/client/Client.js +1 -1
  166. package/dist/api/resources/runs/resources/usage/client/Client.js +1 -1
  167. package/dist/api/resources/sources/client/Client.js +10 -10
  168. package/dist/api/resources/sources/resources/files/client/Client.js +3 -3
  169. package/dist/api/resources/sources/resources/passages/client/Client.js +1 -1
  170. package/dist/api/resources/steps/client/Client.d.ts +13 -0
  171. package/dist/api/resources/steps/client/Client.js +78 -2
  172. package/dist/api/resources/steps/resources/feedback/client/Client.js +1 -1
  173. package/dist/api/resources/tags/client/Client.js +1 -1
  174. package/dist/api/resources/telemetry/client/Client.js +1 -1
  175. package/dist/api/resources/templates/client/Client.js +1 -1
  176. package/dist/api/resources/templates/resources/agents/client/Client.js +1 -1
  177. package/dist/api/resources/templates/types/TemplatesListResponseTemplatesItem.d.ts +4 -0
  178. package/dist/api/resources/tools/client/Client.d.ts +1 -1
  179. package/dist/api/resources/tools/client/Client.js +21 -21
  180. package/dist/api/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
  181. package/dist/api/resources/voice/client/Client.js +1 -1
  182. package/dist/api/types/AgentFileSchema.d.ts +27 -0
  183. package/dist/api/types/AgentFileSchema.js +5 -0
  184. package/dist/api/types/BlockSchema.d.ts +29 -0
  185. package/dist/api/types/BlockSchema.js +5 -0
  186. package/dist/api/types/BodyExportAgentSerialized.d.ts +8 -0
  187. package/dist/api/types/BodyExportAgentSerialized.js +5 -0
  188. package/dist/api/types/CodeInput.d.ts +3 -1
  189. package/dist/api/types/CompletionCreateParamsNonStreaming.d.ts +2 -0
  190. package/dist/api/types/CompletionCreateParamsStreaming.d.ts +2 -0
  191. package/dist/api/types/EmbeddingConfigEmbeddingEndpointType.d.ts +1 -2
  192. package/dist/api/types/EmbeddingConfigEmbeddingEndpointType.js +0 -1
  193. package/dist/api/types/FileAgentSchema.d.ts +28 -0
  194. package/dist/api/types/FileAgentSchema.js +5 -0
  195. package/dist/api/types/FileSchema.d.ts +37 -0
  196. package/dist/api/types/FileSchema.js +5 -0
  197. package/dist/api/types/GroupSchema.d.ts +21 -0
  198. package/dist/api/types/GroupSchema.js +5 -0
  199. package/dist/api/types/GroupSchemaManagerConfig.d.ts +8 -0
  200. package/dist/api/types/GroupSchemaManagerConfig.js +5 -0
  201. package/dist/api/types/ImportedAgentsResponse.d.ts +10 -0
  202. package/dist/api/types/ImportedAgentsResponse.js +5 -0
  203. package/dist/api/types/LettaSchemasAgentFileAgentSchema.d.ts +105 -0
  204. package/dist/api/types/LettaSchemasAgentFileAgentSchema.js +5 -0
  205. package/dist/api/types/LettaSchemasAgentFileAgentSchemaResponseFormat.d.ts +5 -0
  206. package/dist/api/types/LettaSchemasAgentFileAgentSchemaResponseFormat.js +5 -0
  207. package/dist/api/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.d.ts +5 -0
  208. package/dist/api/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.js +5 -0
  209. package/dist/api/types/LettaSchemasAgentFileMessageSchema.d.ts +29 -0
  210. package/dist/api/types/LettaSchemasAgentFileMessageSchema.js +5 -0
  211. package/dist/api/types/LettaSchemasAgentFileMessageSchemaContent.d.ts +8 -0
  212. package/dist/api/types/LettaSchemasAgentFileMessageSchemaContent.js +5 -0
  213. package/dist/api/types/LettaSchemasAgentFileToolSchema.d.ts +39 -0
  214. package/dist/api/types/LettaSchemasAgentFileToolSchema.js +5 -0
  215. package/dist/api/types/{AgentSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaAgentSchema.d.ts} +4 -4
  216. package/dist/api/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchema.js +5 -0
  217. package/dist/api/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.d.ts +5 -0
  218. package/dist/api/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.js +5 -0
  219. package/dist/api/types/{MessageSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaMessageSchema.d.ts} +1 -1
  220. package/dist/api/types/LettaSerializeSchemasPydanticAgentSchemaMessageSchema.js +5 -0
  221. package/dist/api/types/{ToolSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaToolSchema.d.ts} +1 -1
  222. package/dist/api/types/LettaSerializeSchemasPydanticAgentSchemaToolSchema.js +5 -0
  223. package/dist/api/types/LlmConfig.d.ts +1 -1
  224. package/dist/api/types/LlmConfigModelEndpointType.d.ts +1 -2
  225. package/dist/api/types/LlmConfigModelEndpointType.js +0 -1
  226. package/dist/api/types/LlmConfigReasoningEffort.d.ts +2 -1
  227. package/dist/api/types/LlmConfigReasoningEffort.js +1 -0
  228. package/dist/api/types/McpServerSchema.d.ts +15 -0
  229. package/dist/api/types/McpServerSchema.js +5 -0
  230. package/dist/api/types/McpToolExecuteRequest.d.ts +7 -0
  231. package/dist/api/types/McpToolExecuteRequest.js +5 -0
  232. package/dist/api/types/Provider.d.ts +2 -0
  233. package/dist/api/types/ProviderType.d.ts +1 -2
  234. package/dist/api/types/ProviderType.js +0 -1
  235. package/dist/api/types/SourceSchema.d.ts +25 -0
  236. package/dist/api/types/SourceSchema.js +5 -0
  237. package/dist/api/types/StepMetrics.d.ts +25 -0
  238. package/dist/api/types/StepMetrics.js +5 -0
  239. package/dist/api/types/index.d.ts +22 -5
  240. package/dist/api/types/index.js +22 -5
  241. package/dist/serialization/resources/agents/resources/messages/client/cancel.d.ts +0 -4
  242. package/dist/serialization/resources/agents/resources/messages/client/cancel.js +1 -2
  243. package/dist/serialization/resources/agents/resources/messages/client/requests/CancelAgentRunRequest.d.ts +12 -0
  244. package/dist/serialization/resources/agents/resources/messages/client/requests/CancelAgentRunRequest.js +43 -0
  245. package/dist/serialization/resources/agents/resources/messages/client/requests/index.d.ts +1 -0
  246. package/dist/serialization/resources/agents/resources/messages/client/requests/index.js +3 -1
  247. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +1 -0
  248. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.js +1 -0
  249. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +1 -0
  250. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.js +1 -0
  251. package/dist/serialization/resources/providers/client/requests/ProviderCheck.d.ts +18 -0
  252. package/{serialization/types → dist/serialization/resources/providers/client/requests}/ProviderCheck.js +4 -2
  253. package/dist/serialization/resources/providers/client/requests/ProviderCreate.d.ts +2 -0
  254. package/dist/serialization/resources/providers/client/requests/ProviderCreate.js +2 -0
  255. package/dist/serialization/resources/providers/client/requests/ProviderUpdate.d.ts +2 -0
  256. package/dist/serialization/resources/providers/client/requests/ProviderUpdate.js +2 -0
  257. package/dist/serialization/resources/providers/client/requests/index.d.ts +1 -0
  258. package/dist/serialization/resources/providers/client/requests/index.js +3 -1
  259. package/dist/serialization/resources/templates/types/TemplatesListResponse.d.ts +1 -1
  260. package/dist/serialization/resources/templates/types/TemplatesListResponse.js +1 -1
  261. package/dist/serialization/resources/templates/types/TemplatesListResponseTemplatesItem.d.ts +3 -0
  262. package/dist/serialization/resources/templates/types/TemplatesListResponseTemplatesItem.js +3 -0
  263. package/dist/serialization/resources/tools/client/requests/ToolUpdate.d.ts +1 -0
  264. package/dist/serialization/resources/tools/client/requests/ToolUpdate.js +1 -0
  265. package/dist/serialization/types/AgentFileSchema.d.ts +27 -0
  266. package/dist/serialization/types/AgentFileSchema.js +58 -0
  267. package/dist/serialization/types/BlockSchema.d.ts +22 -0
  268. package/dist/serialization/types/BlockSchema.js +53 -0
  269. package/dist/serialization/types/BodyExportAgentSerialized.d.ts +15 -0
  270. package/dist/serialization/types/BodyExportAgentSerialized.js +46 -0
  271. package/dist/serialization/types/CodeInput.d.ts +1 -0
  272. package/dist/serialization/types/CodeInput.js +1 -0
  273. package/dist/serialization/types/CompletionCreateParamsNonStreaming.d.ts +2 -0
  274. package/dist/serialization/types/CompletionCreateParamsNonStreaming.js +2 -0
  275. package/dist/serialization/types/CompletionCreateParamsStreaming.d.ts +2 -0
  276. package/dist/serialization/types/CompletionCreateParamsStreaming.js +2 -0
  277. package/dist/serialization/types/EmbeddingConfigEmbeddingEndpointType.d.ts +1 -1
  278. package/dist/serialization/types/EmbeddingConfigEmbeddingEndpointType.js +0 -1
  279. package/dist/serialization/types/FileAgentSchema.d.ts +21 -0
  280. package/dist/serialization/types/FileAgentSchema.js +52 -0
  281. package/dist/serialization/types/FileSchema.d.ts +26 -0
  282. package/dist/serialization/types/FileSchema.js +57 -0
  283. package/dist/serialization/types/GroupSchema.d.ts +18 -0
  284. package/dist/serialization/types/GroupSchema.js +49 -0
  285. package/dist/serialization/types/GroupSchemaManagerConfig.d.ts +15 -0
  286. package/dist/serialization/types/GroupSchemaManagerConfig.js +52 -0
  287. package/dist/serialization/types/ImportedAgentsResponse.d.ts +12 -0
  288. package/dist/serialization/types/ImportedAgentsResponse.js +43 -0
  289. package/dist/serialization/types/LettaSchemasAgentFileAgentSchema.d.ts +68 -0
  290. package/dist/serialization/types/LettaSchemasAgentFileAgentSchema.js +99 -0
  291. package/dist/serialization/types/LettaSchemasAgentFileAgentSchemaResponseFormat.d.ts +13 -0
  292. package/dist/serialization/types/LettaSchemasAgentFileAgentSchemaResponseFormat.js +44 -0
  293. package/dist/serialization/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.d.ts +18 -0
  294. package/dist/serialization/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.js +58 -0
  295. package/dist/serialization/types/LettaSchemasAgentFileMessageSchema.d.ts +23 -0
  296. package/dist/serialization/types/LettaSchemasAgentFileMessageSchema.js +54 -0
  297. package/dist/serialization/types/LettaSchemasAgentFileMessageSchemaContent.d.ts +11 -0
  298. package/dist/serialization/types/LettaSchemasAgentFileMessageSchemaContent.js +45 -0
  299. package/dist/serialization/types/LettaSchemasAgentFileToolSchema.d.ts +29 -0
  300. package/dist/serialization/types/LettaSchemasAgentFileToolSchema.js +60 -0
  301. package/dist/serialization/types/{AgentSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaAgentSchema.d.ts} +8 -8
  302. package/dist/serialization/types/{AgentSchema.js → LettaSerializeSchemasPydanticAgentSchemaAgentSchema.js} +8 -8
  303. package/{serialization/types/AgentSchemaToolRulesItem.d.ts → dist/serialization/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.d.ts} +2 -2
  304. package/{serialization/types/AgentSchemaToolRulesItem.js → dist/serialization/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.js} +2 -2
  305. package/dist/serialization/types/{MessageSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaMessageSchema.d.ts} +2 -2
  306. package/{serialization/types/MessageSchema.js → dist/serialization/types/LettaSerializeSchemasPydanticAgentSchemaMessageSchema.js} +2 -2
  307. package/{serialization/types/ToolSchema.d.ts → dist/serialization/types/LettaSerializeSchemasPydanticAgentSchemaToolSchema.d.ts} +2 -2
  308. package/{serialization/types/ToolSchema.js → dist/serialization/types/LettaSerializeSchemasPydanticAgentSchemaToolSchema.js} +2 -2
  309. package/dist/serialization/types/LlmConfigModelEndpointType.d.ts +1 -1
  310. package/dist/serialization/types/LlmConfigModelEndpointType.js +0 -1
  311. package/dist/serialization/types/LlmConfigReasoningEffort.d.ts +1 -1
  312. package/dist/serialization/types/LlmConfigReasoningEffort.js +1 -1
  313. package/dist/serialization/types/McpServerSchema.d.ts +17 -0
  314. package/dist/serialization/types/McpServerSchema.js +48 -0
  315. package/dist/serialization/types/McpToolExecuteRequest.d.ts +12 -0
  316. package/dist/serialization/types/McpToolExecuteRequest.js +43 -0
  317. package/dist/serialization/types/Provider.d.ts +1 -0
  318. package/dist/serialization/types/Provider.js +1 -0
  319. package/dist/serialization/types/ProviderType.d.ts +1 -1
  320. package/dist/serialization/types/ProviderType.js +0 -1
  321. package/dist/serialization/types/SourceSchema.d.ts +20 -0
  322. package/dist/serialization/types/SourceSchema.js +51 -0
  323. package/dist/serialization/types/StepMetrics.d.ts +21 -0
  324. package/dist/serialization/types/StepMetrics.js +52 -0
  325. package/dist/serialization/types/index.d.ts +22 -5
  326. package/dist/serialization/types/index.js +22 -5
  327. package/dist/version.d.ts +1 -1
  328. package/dist/version.js +1 -1
  329. package/package.json +1 -1
  330. package/reference.md +138 -11
  331. package/serialization/resources/agents/resources/messages/client/cancel.d.ts +0 -4
  332. package/serialization/resources/agents/resources/messages/client/cancel.js +1 -2
  333. package/serialization/resources/agents/resources/messages/client/requests/CancelAgentRunRequest.d.ts +12 -0
  334. package/serialization/resources/agents/resources/messages/client/requests/CancelAgentRunRequest.js +43 -0
  335. package/serialization/resources/agents/resources/messages/client/requests/index.d.ts +1 -0
  336. package/serialization/resources/agents/resources/messages/client/requests/index.js +3 -1
  337. package/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +1 -0
  338. package/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.js +1 -0
  339. package/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +1 -0
  340. package/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.js +1 -0
  341. package/serialization/resources/providers/client/requests/ProviderCheck.d.ts +18 -0
  342. package/{dist/serialization/types → serialization/resources/providers/client/requests}/ProviderCheck.js +4 -2
  343. package/serialization/resources/providers/client/requests/ProviderCreate.d.ts +2 -0
  344. package/serialization/resources/providers/client/requests/ProviderCreate.js +2 -0
  345. package/serialization/resources/providers/client/requests/ProviderUpdate.d.ts +2 -0
  346. package/serialization/resources/providers/client/requests/ProviderUpdate.js +2 -0
  347. package/serialization/resources/providers/client/requests/index.d.ts +1 -0
  348. package/serialization/resources/providers/client/requests/index.js +3 -1
  349. package/serialization/resources/templates/types/TemplatesListResponse.d.ts +1 -1
  350. package/serialization/resources/templates/types/TemplatesListResponse.js +1 -1
  351. package/serialization/resources/templates/types/TemplatesListResponseTemplatesItem.d.ts +3 -0
  352. package/serialization/resources/templates/types/TemplatesListResponseTemplatesItem.js +3 -0
  353. package/serialization/resources/tools/client/requests/ToolUpdate.d.ts +1 -0
  354. package/serialization/resources/tools/client/requests/ToolUpdate.js +1 -0
  355. package/serialization/types/AgentFileSchema.d.ts +27 -0
  356. package/serialization/types/AgentFileSchema.js +58 -0
  357. package/serialization/types/BlockSchema.d.ts +22 -0
  358. package/serialization/types/BlockSchema.js +53 -0
  359. package/serialization/types/BodyExportAgentSerialized.d.ts +15 -0
  360. package/serialization/types/BodyExportAgentSerialized.js +46 -0
  361. package/serialization/types/CodeInput.d.ts +1 -0
  362. package/serialization/types/CodeInput.js +1 -0
  363. package/serialization/types/CompletionCreateParamsNonStreaming.d.ts +2 -0
  364. package/serialization/types/CompletionCreateParamsNonStreaming.js +2 -0
  365. package/serialization/types/CompletionCreateParamsStreaming.d.ts +2 -0
  366. package/serialization/types/CompletionCreateParamsStreaming.js +2 -0
  367. package/serialization/types/EmbeddingConfigEmbeddingEndpointType.d.ts +1 -1
  368. package/serialization/types/EmbeddingConfigEmbeddingEndpointType.js +0 -1
  369. package/serialization/types/FileAgentSchema.d.ts +21 -0
  370. package/serialization/types/FileAgentSchema.js +52 -0
  371. package/serialization/types/FileSchema.d.ts +26 -0
  372. package/serialization/types/FileSchema.js +57 -0
  373. package/serialization/types/GroupSchema.d.ts +18 -0
  374. package/serialization/types/GroupSchema.js +49 -0
  375. package/serialization/types/GroupSchemaManagerConfig.d.ts +15 -0
  376. package/serialization/types/GroupSchemaManagerConfig.js +52 -0
  377. package/serialization/types/ImportedAgentsResponse.d.ts +12 -0
  378. package/serialization/types/ImportedAgentsResponse.js +43 -0
  379. package/serialization/types/LettaSchemasAgentFileAgentSchema.d.ts +68 -0
  380. package/serialization/types/LettaSchemasAgentFileAgentSchema.js +99 -0
  381. package/serialization/types/LettaSchemasAgentFileAgentSchemaResponseFormat.d.ts +13 -0
  382. package/serialization/types/LettaSchemasAgentFileAgentSchemaResponseFormat.js +44 -0
  383. package/serialization/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.d.ts +18 -0
  384. package/serialization/types/LettaSchemasAgentFileAgentSchemaToolRulesItem.js +58 -0
  385. package/serialization/types/LettaSchemasAgentFileMessageSchema.d.ts +23 -0
  386. package/serialization/types/LettaSchemasAgentFileMessageSchema.js +54 -0
  387. package/serialization/types/LettaSchemasAgentFileMessageSchemaContent.d.ts +11 -0
  388. package/serialization/types/LettaSchemasAgentFileMessageSchemaContent.js +45 -0
  389. package/serialization/types/LettaSchemasAgentFileToolSchema.d.ts +29 -0
  390. package/serialization/types/LettaSchemasAgentFileToolSchema.js +60 -0
  391. package/serialization/types/{AgentSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaAgentSchema.d.ts} +8 -8
  392. package/serialization/types/{AgentSchema.js → LettaSerializeSchemasPydanticAgentSchemaAgentSchema.js} +8 -8
  393. package/{dist/serialization/types/AgentSchemaToolRulesItem.d.ts → serialization/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.d.ts} +2 -2
  394. package/{dist/serialization/types/AgentSchemaToolRulesItem.js → serialization/types/LettaSerializeSchemasPydanticAgentSchemaAgentSchemaToolRulesItem.js} +2 -2
  395. package/serialization/types/{MessageSchema.d.ts → LettaSerializeSchemasPydanticAgentSchemaMessageSchema.d.ts} +2 -2
  396. package/{dist/serialization/types/MessageSchema.js → serialization/types/LettaSerializeSchemasPydanticAgentSchemaMessageSchema.js} +2 -2
  397. package/{dist/serialization/types/ToolSchema.d.ts → serialization/types/LettaSerializeSchemasPydanticAgentSchemaToolSchema.d.ts} +2 -2
  398. package/{dist/serialization/types/ToolSchema.js → serialization/types/LettaSerializeSchemasPydanticAgentSchemaToolSchema.js} +2 -2
  399. package/serialization/types/LlmConfigModelEndpointType.d.ts +1 -1
  400. package/serialization/types/LlmConfigModelEndpointType.js +0 -1
  401. package/serialization/types/LlmConfigReasoningEffort.d.ts +1 -1
  402. package/serialization/types/LlmConfigReasoningEffort.js +1 -1
  403. package/serialization/types/McpServerSchema.d.ts +17 -0
  404. package/serialization/types/McpServerSchema.js +48 -0
  405. package/serialization/types/McpToolExecuteRequest.d.ts +12 -0
  406. package/serialization/types/McpToolExecuteRequest.js +43 -0
  407. package/serialization/types/Provider.d.ts +1 -0
  408. package/serialization/types/Provider.js +1 -0
  409. package/serialization/types/ProviderType.d.ts +1 -1
  410. package/serialization/types/ProviderType.js +0 -1
  411. package/serialization/types/SourceSchema.d.ts +20 -0
  412. package/serialization/types/SourceSchema.js +51 -0
  413. package/serialization/types/StepMetrics.d.ts +21 -0
  414. package/serialization/types/StepMetrics.js +52 -0
  415. package/serialization/types/index.d.ts +22 -5
  416. package/serialization/types/index.js +22 -5
  417. package/version.d.ts +1 -1
  418. package/version.js +1 -1
  419. package/api/types/AgentSchemaToolRulesItem.d.ts +0 -5
  420. package/dist/api/types/AgentSchemaToolRulesItem.d.ts +0 -5
  421. package/dist/serialization/types/ProviderCheck.d.ts +0 -16
  422. package/serialization/types/ProviderCheck.d.ts +0 -16
  423. /package/api/{types/AgentSchema.js → resources/agents/client/requests/AgentsExportFileRequest.js} +0 -0
  424. /package/api/{types/AgentSchemaToolRulesItem.js → resources/agents/resources/messages/client/requests/CancelAgentRunRequest.js} +0 -0
  425. /package/api/{types → resources/providers/client/requests}/ProviderCheck.js +0 -0
  426. /package/api/types/{MessageSchema.js → AgentFileSchema.js} +0 -0
  427. /package/api/types/{ToolSchema.js → BlockSchema.js} +0 -0
  428. /package/{dist/api/types/AgentSchema.js → api/types/BodyExportAgentSerialized.js} +0 -0
  429. /package/{dist/api/types/AgentSchemaToolRulesItem.js → api/types/FileAgentSchema.js} +0 -0
  430. /package/{dist/api/types/MessageSchema.js → api/types/FileSchema.js} +0 -0
  431. /package/{dist/api/types/ProviderCheck.js → api/types/GroupSchema.js} +0 -0
  432. /package/{dist/api/types/ToolSchema.js → api/types/GroupSchemaManagerConfig.js} +0 -0
@@ -81,7 +81,7 @@ class Tools {
81
81
  method: "GET",
82
82
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
83
83
  ? yield core.Supplier.get(this._options.project)
84
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
84
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
85
85
  contentType: "application/json",
86
86
  requestType: "json",
87
87
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -157,7 +157,7 @@ class Tools {
157
157
  method: "DELETE",
158
158
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
159
159
  ? yield core.Supplier.get(this._options.project)
160
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
160
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
161
161
  contentType: "application/json",
162
162
  requestType: "json",
163
163
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -225,7 +225,7 @@ class Tools {
225
225
  method: "PATCH",
226
226
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
227
227
  ? yield core.Supplier.get(this._options.project)
228
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
228
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
229
229
  contentType: "application/json",
230
230
  requestType: "json",
231
231
  body: serializers.ToolUpdate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -307,7 +307,7 @@ class Tools {
307
307
  method: "GET",
308
308
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
309
309
  ? yield core.Supplier.get(this._options.project)
310
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
310
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
311
311
  contentType: "application/json",
312
312
  queryParameters: _queryParams,
313
313
  requestType: "json",
@@ -395,7 +395,7 @@ class Tools {
395
395
  method: "GET",
396
396
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
397
397
  ? yield core.Supplier.get(this._options.project)
398
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
398
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
399
399
  contentType: "application/json",
400
400
  queryParameters: _queryParams,
401
401
  requestType: "json",
@@ -474,7 +474,7 @@ class Tools {
474
474
  method: "POST",
475
475
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
476
476
  ? yield core.Supplier.get(this._options.project)
477
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
477
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
478
478
  contentType: "application/json",
479
479
  requestType: "json",
480
480
  body: serializers.ToolCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -553,7 +553,7 @@ class Tools {
553
553
  method: "PUT",
554
554
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
555
555
  ? yield core.Supplier.get(this._options.project)
556
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
556
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
557
557
  contentType: "application/json",
558
558
  requestType: "json",
559
559
  body: serializers.ToolCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -629,7 +629,7 @@ class Tools {
629
629
  method: "POST",
630
630
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
631
631
  ? yield core.Supplier.get(this._options.project)
632
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
632
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
633
633
  contentType: "application/json",
634
634
  requestType: "json",
635
635
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -710,7 +710,7 @@ class Tools {
710
710
  method: "POST",
711
711
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
712
712
  ? yield core.Supplier.get(this._options.project)
713
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
713
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
714
714
  contentType: "application/json",
715
715
  requestType: "json",
716
716
  body: serializers.ToolRunFromSource.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -788,7 +788,7 @@ class Tools {
788
788
  method: "GET",
789
789
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
790
790
  ? yield core.Supplier.get(this._options.project)
791
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "user-id": userId != null ? userId : undefined }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
791
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "user-id": userId != null ? userId : undefined }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
792
792
  contentType: "application/json",
793
793
  requestType: "json",
794
794
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -864,7 +864,7 @@ class Tools {
864
864
  method: "GET",
865
865
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
866
866
  ? yield core.Supplier.get(this._options.project)
867
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
867
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
868
868
  contentType: "application/json",
869
869
  requestType: "json",
870
870
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -940,7 +940,7 @@ class Tools {
940
940
  method: "POST",
941
941
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
942
942
  ? yield core.Supplier.get(this._options.project)
943
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
943
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
944
944
  contentType: "application/json",
945
945
  requestType: "json",
946
946
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -1017,7 +1017,7 @@ class Tools {
1017
1017
  method: "GET",
1018
1018
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1019
1019
  ? yield core.Supplier.get(this._options.project)
1020
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "user-id": userId != null ? userId : undefined }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1020
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "user-id": userId != null ? userId : undefined }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1021
1021
  contentType: "application/json",
1022
1022
  requestType: "json",
1023
1023
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -1097,7 +1097,7 @@ class Tools {
1097
1097
  method: "PUT",
1098
1098
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1099
1099
  ? yield core.Supplier.get(this._options.project)
1100
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1100
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1101
1101
  contentType: "application/json",
1102
1102
  requestType: "json",
1103
1103
  body: serializers.AddMcpServerRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -1174,7 +1174,7 @@ class Tools {
1174
1174
  method: "GET",
1175
1175
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1176
1176
  ? yield core.Supplier.get(this._options.project)
1177
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1177
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1178
1178
  contentType: "application/json",
1179
1179
  requestType: "json",
1180
1180
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -1251,7 +1251,7 @@ class Tools {
1251
1251
  method: "POST",
1252
1252
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1253
1253
  ? yield core.Supplier.get(this._options.project)
1254
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1254
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1255
1255
  contentType: "application/json",
1256
1256
  requestType: "json",
1257
1257
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -1306,7 +1306,7 @@ class Tools {
1306
1306
  });
1307
1307
  }
1308
1308
  /**
1309
- * Add a new MCP server to the Letta MCP server config
1309
+ * Delete a MCP server configuration
1310
1310
  *
1311
1311
  * @param {string} mcpServerName
1312
1312
  * @param {Tools.RequestOptions} requestOptions - Request-specific configuration.
@@ -1327,7 +1327,7 @@ class Tools {
1327
1327
  method: "DELETE",
1328
1328
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1329
1329
  ? yield core.Supplier.get(this._options.project)
1330
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1330
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1331
1331
  contentType: "application/json",
1332
1332
  requestType: "json",
1333
1333
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -1404,7 +1404,7 @@ class Tools {
1404
1404
  method: "PATCH",
1405
1405
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1406
1406
  ? yield core.Supplier.get(this._options.project)
1407
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1407
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1408
1408
  contentType: "application/json",
1409
1409
  requestType: "json",
1410
1410
  body: serializers.UpdateMcpServerRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -1486,7 +1486,7 @@ class Tools {
1486
1486
  method: "POST",
1487
1487
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1488
1488
  ? yield core.Supplier.get(this._options.project)
1489
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1489
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1490
1490
  contentType: "application/json",
1491
1491
  requestType: "json",
1492
1492
  body: serializers.TestMcpServerRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -1547,7 +1547,7 @@ class Tools {
1547
1547
  method: "POST",
1548
1548
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
1549
1549
  ? yield core.Supplier.get(this._options.project)
1550
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1550
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
1551
1551
  contentType: "application/json",
1552
1552
  requestType: "json",
1553
1553
  body: serializers.ConnectMcpServerRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -25,4 +25,6 @@ export interface ToolUpdate {
25
25
  pipRequirements?: Letta.PipRequirement[];
26
26
  /** Optional list of npm packages required by this tool. */
27
27
  npmRequirements?: Letta.NpmRequirement[];
28
+ /** A dictionary of additional metadata for the tool. */
29
+ metadata?: Record<string, unknown>;
28
30
  }
@@ -85,7 +85,7 @@ class Voice {
85
85
  method: "POST",
86
86
  headers: Object.assign(Object.assign({ "X-Project": (yield core.Supplier.get(this._options.project)) != null
87
87
  ? yield core.Supplier.get(this._options.project)
88
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.176", "User-Agent": "@letta-ai/letta-client/0.1.176", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "user-id": userId != null ? userId : undefined }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
88
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.178", "User-Agent": "@letta-ai/letta-client/0.1.178", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, "user-id": userId != null ? userId : undefined }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
89
89
  contentType: "application/json",
90
90
  requestType: "json",
91
91
  body: serializers.voice.createVoiceChatCompletions.Request.jsonOrThrow(_body, {
@@ -0,0 +1,27 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Letta from "../index";
5
+ /**
6
+ * Schema for serialized agent file that can be exported to JSON and imported into agent server.
7
+ */
8
+ export interface AgentFileSchema {
9
+ /** List of agents in this agent file */
10
+ agents: Letta.LettaSchemasAgentFileAgentSchema[];
11
+ /** List of groups in this agent file */
12
+ groups: Letta.GroupSchema[];
13
+ /** List of memory blocks in this agent file */
14
+ blocks: Letta.BlockSchema[];
15
+ /** List of files in this agent file */
16
+ files: Letta.FileSchema[];
17
+ /** List of sources in this agent file */
18
+ sources: Letta.SourceSchema[];
19
+ /** List of tools in this agent file */
20
+ tools: Letta.LettaSchemasAgentFileToolSchema[];
21
+ /** List of MCP servers in this agent file */
22
+ mcpServers: Letta.McpServerSchema[];
23
+ /** Metadata for this agent file, including revision_id and other export information. */
24
+ metadata?: Record<string, string>;
25
+ /** The timestamp when the object was created. */
26
+ createdAt?: Date;
27
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,29 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Block with human-readable ID for agent file
6
+ */
7
+ export interface BlockSchema {
8
+ /** Value of the block. */
9
+ value: string;
10
+ /** Character limit of the block. */
11
+ limit?: number;
12
+ /** The associated project id. */
13
+ projectId?: string;
14
+ /** Name of the block if it is a template. */
15
+ name?: string;
16
+ isTemplate?: boolean;
17
+ /** Preserve the block on template migration. */
18
+ preserveOnMigration?: boolean;
19
+ /** Label of the block. */
20
+ label: string;
21
+ /** Whether the agent has read-only access to the block. */
22
+ readOnly?: boolean;
23
+ /** Description of the block. */
24
+ description?: string;
25
+ /** Metadata of the block. */
26
+ metadata?: Record<string, unknown>;
27
+ /** Human-readable identifier for this block in the file */
28
+ id: string;
29
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Letta from "../index";
5
+ export interface BodyExportAgentSerialized {
6
+ spec?: Letta.AgentFileSchema;
7
+ legacySpec?: Letta.LettaSerializeSchemasPydanticAgentSchemaAgentSchema;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -2,6 +2,8 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  export interface CodeInput {
5
- /** Python source code to parse for JSON schema */
5
+ /** Source code to parse for JSON schema */
6
6
  code: string;
7
+ /** The source type of the code (python or typescript) */
8
+ sourceType?: string;
7
9
  }
@@ -19,8 +19,10 @@ export interface CompletionCreateParamsNonStreaming {
19
19
  parallelToolCalls?: boolean;
20
20
  prediction?: Letta.ChatCompletionPredictionContentParam;
21
21
  presencePenalty?: number;
22
+ promptCacheKey?: string;
22
23
  reasoningEffort?: Letta.CompletionCreateParamsNonStreamingReasoningEffort;
23
24
  responseFormat?: Letta.CompletionCreateParamsNonStreamingResponseFormat;
25
+ safetyIdentifier?: string;
24
26
  seed?: number;
25
27
  serviceTier?: Letta.CompletionCreateParamsNonStreamingServiceTier;
26
28
  stop?: Letta.CompletionCreateParamsNonStreamingStop;
@@ -19,8 +19,10 @@ export interface CompletionCreateParamsStreaming {
19
19
  parallelToolCalls?: boolean;
20
20
  prediction?: Letta.ChatCompletionPredictionContentParam;
21
21
  presencePenalty?: number;
22
+ promptCacheKey?: string;
22
23
  reasoningEffort?: Letta.CompletionCreateParamsStreamingReasoningEffort;
23
24
  responseFormat?: Letta.CompletionCreateParamsStreamingResponseFormat;
25
+ safetyIdentifier?: string;
24
26
  seed?: number;
25
27
  serviceTier?: Letta.CompletionCreateParamsStreamingServiceTier;
26
28
  stop?: Letta.CompletionCreateParamsStreamingStop;
@@ -4,12 +4,11 @@
4
4
  /**
5
5
  * The endpoint type for the model.
6
6
  */
7
- export type EmbeddingConfigEmbeddingEndpointType = "openai" | "anthropic" | "bedrock" | "cohere" | "google_ai" | "google_vertex" | "azure" | "groq" | "ollama" | "webui" | "webui-legacy" | "lmstudio" | "lmstudio-legacy" | "llamacpp" | "koboldcpp" | "vllm" | "hugging-face" | "mistral" | "together" | "pinecone";
7
+ export type EmbeddingConfigEmbeddingEndpointType = "openai" | "anthropic" | "bedrock" | "google_ai" | "google_vertex" | "azure" | "groq" | "ollama" | "webui" | "webui-legacy" | "lmstudio" | "lmstudio-legacy" | "llamacpp" | "koboldcpp" | "vllm" | "hugging-face" | "mistral" | "together" | "pinecone";
8
8
  export declare const EmbeddingConfigEmbeddingEndpointType: {
9
9
  readonly Openai: "openai";
10
10
  readonly Anthropic: "anthropic";
11
11
  readonly Bedrock: "bedrock";
12
- readonly Cohere: "cohere";
13
12
  readonly GoogleAi: "google_ai";
14
13
  readonly GoogleVertex: "google_vertex";
15
14
  readonly Azure: "azure";
@@ -8,7 +8,6 @@ exports.EmbeddingConfigEmbeddingEndpointType = {
8
8
  Openai: "openai",
9
9
  Anthropic: "anthropic",
10
10
  Bedrock: "bedrock",
11
- Cohere: "cohere",
12
11
  GoogleAi: "google_ai",
13
12
  GoogleVertex: "google_vertex",
14
13
  Azure: "azure",
@@ -0,0 +1,28 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * File-Agent relationship with human-readable ID for agent file
6
+ */
7
+ export interface FileAgentSchema {
8
+ /** Unique identifier of the agent. */
9
+ agentId: string;
10
+ /** Unique identifier of the file. */
11
+ fileId: string;
12
+ /** Unique identifier of the source. */
13
+ sourceId: string;
14
+ /** Name of the file. */
15
+ fileName: string;
16
+ /** True if the agent currently has the file open. */
17
+ isOpen?: boolean;
18
+ /** Portion of the file the agent is focused on (may be large). */
19
+ visibleContent?: string;
20
+ /** UTC timestamp of the agent's most recent access to this file. */
21
+ lastAccessedAt?: Date;
22
+ /** Starting line number (1-indexed) when file was opened with line range. */
23
+ startLine?: number;
24
+ /** Ending line number (exclusive) when file was opened with line range. */
25
+ endLine?: number;
26
+ /** Human-readable identifier for this file-agent relationship in the file */
27
+ id: string;
28
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,37 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Letta from "../index";
5
+ /**
6
+ * File with human-readable ID for agent file
7
+ */
8
+ export interface FileSchema {
9
+ /** The unique identifier of the source associated with the document. */
10
+ sourceId: string;
11
+ /** The name of the file. */
12
+ fileName?: string;
13
+ /** The original name of the file as uploaded. */
14
+ originalFileName?: string;
15
+ /** The path to the file. */
16
+ filePath?: string;
17
+ /** The type of the file (MIME type). */
18
+ fileType?: string;
19
+ /** The size of the file in bytes. */
20
+ fileSize?: number;
21
+ /** The creation date of the file. */
22
+ fileCreationDate?: string;
23
+ /** The last modified date of the file. */
24
+ fileLastModifiedDate?: string;
25
+ /** The current processing status of the file (e.g. pending, parsing, embedding, completed, error). */
26
+ processingStatus?: Letta.FileProcessingStatus;
27
+ /** Optional error message if the file failed processing. */
28
+ errorMessage?: string;
29
+ /** Total number of chunks for the file. */
30
+ totalChunks?: number;
31
+ /** Number of chunks that have been embedded. */
32
+ chunksEmbedded?: number;
33
+ /** Optional full-text content of the file; only populated on demand due to its size. */
34
+ content?: string;
35
+ /** Human-readable identifier for this file in the file */
36
+ id: string;
37
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,21 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Letta from "../index";
5
+ /**
6
+ * Group with human-readable ID for agent file
7
+ */
8
+ export interface GroupSchema {
9
+ /** */
10
+ agentIds: string[];
11
+ /** */
12
+ description: string;
13
+ /** */
14
+ managerConfig?: Letta.GroupSchemaManagerConfig;
15
+ /** The associated project id. */
16
+ projectId?: string;
17
+ /** */
18
+ sharedBlockIds?: string[];
19
+ /** Human-readable identifier for this group in the file */
20
+ id: string;
21
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Letta from "../index";
5
+ /**
6
+ *
7
+ */
8
+ export type GroupSchemaManagerConfig = Letta.DynamicManager | Letta.RoundRobinManager | Letta.SleeptimeManager | Letta.SupervisorManager | Letta.VoiceSleeptimeManager;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Response model for imported agents
6
+ */
7
+ export interface ImportedAgentsResponse {
8
+ /** List of IDs of the imported agents */
9
+ agentIds: string[];
10
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });