@letta-ai/letta-client 0.1.5 → 0.1.7

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 (461) hide show
  1. package/Client.d.ts +3 -0
  2. package/Client.js +5 -0
  3. package/api/resources/agents/client/Client.d.ts +14 -106
  4. package/api/resources/agents/client/Client.js +31 -495
  5. package/{dist/api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts → api/resources/agents/client/requests/AgentsSearchRequest.d.ts} +3 -3
  6. package/api/resources/agents/client/requests/index.d.ts +1 -4
  7. package/api/resources/agents/resources/archivalMemory/client/Client.js +4 -4
  8. package/api/resources/agents/resources/context/client/Client.js +1 -1
  9. package/api/resources/agents/resources/coreMemory/client/Client.d.ts +123 -0
  10. package/api/resources/agents/resources/coreMemory/client/Client.js +525 -0
  11. package/api/resources/agents/resources/index.d.ts +6 -2
  12. package/api/resources/agents/resources/index.js +7 -3
  13. package/api/resources/agents/resources/{memory → memoryVariables}/client/Client.d.ts +11 -13
  14. package/api/resources/agents/resources/{memory → memoryVariables}/client/Client.js +15 -25
  15. package/api/resources/agents/resources/memoryVariables/index.d.ts +2 -0
  16. package/api/resources/agents/resources/memoryVariables/index.js +18 -0
  17. package/api/resources/agents/{types/AgentsGetAgentVariablesResponse.d.ts → resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts} +1 -1
  18. package/api/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  19. package/api/resources/agents/resources/memoryVariables/types/index.js +17 -0
  20. package/api/resources/agents/resources/messages/client/Client.js +5 -5
  21. package/api/resources/agents/resources/recallMemory/client/Client.js +1 -1
  22. package/api/resources/agents/resources/sources/client/Client.js +1 -1
  23. package/api/resources/agents/resources/templates/client/Client.d.ts +82 -0
  24. package/{dist/api/resources/agents/resources/memoryBlocks → api/resources/agents/resources/templates}/client/Client.js +126 -45
  25. package/api/resources/agents/resources/templates/client/index.d.ts +1 -0
  26. package/api/resources/agents/resources/templates/client/index.js +17 -0
  27. package/api/resources/agents/{client/requests/AgentsCreateTemplateFromAgentRequest.d.ts → resources/templates/client/requests/TemplatesCreateRequest.d.ts} +1 -1
  28. package/api/resources/agents/{client/requests/AgentsCreateVersionRequest.d.ts → resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts} +1 -1
  29. package/api/resources/agents/{client/requests/AgentsMigrateRequest.d.ts → resources/templates/client/requests/TemplatesMigrateRequest.d.ts} +1 -1
  30. package/api/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  31. package/api/resources/agents/resources/templates/index.d.ts +2 -0
  32. package/api/resources/agents/resources/templates/index.js +18 -0
  33. package/api/resources/agents/{types/AgentsMigrateResponse.d.ts → resources/templates/types/TemplatesMigrateResponse.d.ts} +1 -1
  34. package/api/resources/agents/resources/templates/types/index.d.ts +1 -0
  35. package/api/resources/agents/resources/templates/types/index.js +17 -0
  36. package/api/resources/agents/resources/tools/client/Client.js +3 -3
  37. package/api/resources/agents/types/AgentsSearchRequestCombinator.d.ts +8 -0
  38. package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestCombinator.js → AgentsSearchRequestCombinator.js} +2 -2
  39. package/api/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +16 -0
  40. package/api/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +8 -0
  41. package/api/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +9 -0
  42. package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js → AgentsSearchRequestSearchItemNameOperator.js} +2 -2
  43. package/api/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +8 -0
  44. package/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +8 -0
  45. package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js → api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.js} +2 -2
  46. package/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +8 -0
  47. package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js → api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js} +2 -2
  48. package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts → AgentsSearchRequestSearchItemVersion.d.ts} +1 -1
  49. package/api/resources/agents/types/index.d.ts +8 -10
  50. package/api/resources/agents/types/index.js +8 -10
  51. package/api/resources/blocks/client/Client.js +7 -7
  52. package/api/resources/health/client/Client.js +1 -1
  53. package/api/resources/index.d.ts +2 -0
  54. package/api/resources/index.js +3 -1
  55. package/api/resources/jobs/client/Client.js +4 -4
  56. package/api/resources/models/client/Client.js +2 -2
  57. package/api/resources/providers/client/Client.d.ts +86 -0
  58. package/api/resources/providers/client/Client.js +336 -0
  59. package/api/resources/providers/client/index.d.ts +1 -0
  60. package/api/resources/providers/client/index.js +17 -0
  61. package/api/resources/providers/client/requests/DeleteProviderRequest.d.ts +15 -0
  62. package/api/resources/providers/client/requests/ListProvidersRequest.d.ts +11 -0
  63. package/api/resources/providers/client/requests/ProviderCreate.d.ts +16 -0
  64. package/api/resources/providers/client/requests/ProviderUpdate.d.ts +16 -0
  65. package/api/resources/providers/client/requests/index.d.ts +4 -0
  66. package/api/resources/sources/client/Client.js +8 -8
  67. package/api/resources/sources/resources/files/client/Client.js +3 -3
  68. package/api/resources/sources/resources/passages/client/Client.js +1 -1
  69. package/api/resources/tools/client/Client.d.ts +3 -1
  70. package/api/resources/tools/client/Client.js +15 -13
  71. package/api/resources/tools/client/requests/ToolRunFromSource.d.ts +7 -3
  72. package/api/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
  73. package/api/types/AgentType.d.ts +1 -2
  74. package/api/types/AgentType.js +0 -1
  75. package/api/types/LettaSchemasToolTool.d.ts +4 -1
  76. package/api/types/Provider.d.ts +13 -0
  77. package/api/types/ToolType.d.ts +9 -0
  78. package/api/types/ToolType.js +11 -0
  79. package/api/types/index.d.ts +2 -0
  80. package/api/types/index.js +2 -0
  81. package/dist/Client.d.ts +3 -0
  82. package/dist/Client.js +5 -0
  83. package/dist/api/resources/agents/client/Client.d.ts +14 -106
  84. package/dist/api/resources/agents/client/Client.js +31 -495
  85. package/{api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts → dist/api/resources/agents/client/requests/AgentsSearchRequest.d.ts} +3 -3
  86. package/dist/api/resources/agents/client/requests/index.d.ts +1 -4
  87. package/dist/api/resources/agents/resources/archivalMemory/client/Client.js +4 -4
  88. package/dist/api/resources/agents/resources/context/client/Client.js +1 -1
  89. package/dist/api/resources/agents/resources/coreMemory/client/Client.d.ts +123 -0
  90. package/dist/api/resources/agents/resources/coreMemory/client/Client.js +525 -0
  91. package/dist/api/resources/agents/resources/index.d.ts +6 -2
  92. package/dist/api/resources/agents/resources/index.js +7 -3
  93. package/dist/api/resources/agents/resources/{memory → memoryVariables}/client/Client.d.ts +11 -13
  94. package/dist/api/resources/agents/resources/{memory → memoryVariables}/client/Client.js +15 -25
  95. package/dist/api/resources/agents/resources/memoryVariables/index.d.ts +2 -0
  96. package/dist/api/resources/agents/resources/memoryVariables/index.js +18 -0
  97. package/dist/api/resources/agents/{types/AgentsGetAgentVariablesResponse.d.ts → resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts} +1 -1
  98. package/dist/api/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  99. package/dist/api/resources/agents/resources/memoryVariables/types/index.js +17 -0
  100. package/dist/api/resources/agents/resources/messages/client/Client.js +5 -5
  101. package/dist/api/resources/agents/resources/recallMemory/client/Client.js +1 -1
  102. package/dist/api/resources/agents/resources/sources/client/Client.js +1 -1
  103. package/dist/api/resources/agents/resources/templates/client/Client.d.ts +82 -0
  104. package/{api/resources/agents/resources/memoryBlocks → dist/api/resources/agents/resources/templates}/client/Client.js +126 -45
  105. package/dist/api/resources/agents/resources/templates/client/index.d.ts +1 -0
  106. package/dist/api/resources/agents/resources/templates/client/index.js +17 -0
  107. package/dist/api/resources/agents/{client/requests/AgentsCreateTemplateFromAgentRequest.d.ts → resources/templates/client/requests/TemplatesCreateRequest.d.ts} +1 -1
  108. package/dist/api/resources/agents/{client/requests/AgentsCreateVersionRequest.d.ts → resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts} +1 -1
  109. package/dist/api/resources/agents/{client/requests/AgentsMigrateRequest.d.ts → resources/templates/client/requests/TemplatesMigrateRequest.d.ts} +1 -1
  110. package/dist/api/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  111. package/dist/api/resources/agents/resources/templates/client/requests/index.js +2 -0
  112. package/dist/api/resources/agents/resources/templates/index.d.ts +2 -0
  113. package/dist/api/resources/agents/resources/templates/index.js +18 -0
  114. package/dist/api/resources/agents/{types/AgentsMigrateResponse.d.ts → resources/templates/types/TemplatesMigrateResponse.d.ts} +1 -1
  115. package/dist/api/resources/agents/resources/templates/types/TemplatesMigrateResponse.js +5 -0
  116. package/dist/api/resources/agents/resources/templates/types/index.d.ts +1 -0
  117. package/dist/api/resources/agents/resources/templates/types/index.js +17 -0
  118. package/dist/api/resources/agents/resources/tools/client/Client.js +3 -3
  119. package/dist/api/resources/agents/types/AgentsSearchRequestCombinator.d.ts +8 -0
  120. package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestCombinator.js → AgentsSearchRequestCombinator.js} +2 -2
  121. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +16 -0
  122. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItem.js +5 -0
  123. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +8 -0
  124. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemName.js +5 -0
  125. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +9 -0
  126. package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js → AgentsSearchRequestSearchItemNameOperator.js} +2 -2
  127. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +8 -0
  128. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.js +5 -0
  129. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +8 -0
  130. package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js → dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.js} +2 -2
  131. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +8 -0
  132. package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js → dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js} +2 -2
  133. package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts → AgentsSearchRequestSearchItemVersion.d.ts} +1 -1
  134. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemVersion.js +5 -0
  135. package/dist/api/resources/agents/types/index.d.ts +8 -10
  136. package/dist/api/resources/agents/types/index.js +8 -10
  137. package/dist/api/resources/blocks/client/Client.js +7 -7
  138. package/dist/api/resources/health/client/Client.js +1 -1
  139. package/dist/api/resources/index.d.ts +2 -0
  140. package/dist/api/resources/index.js +3 -1
  141. package/dist/api/resources/jobs/client/Client.js +4 -4
  142. package/dist/api/resources/models/client/Client.js +2 -2
  143. package/dist/api/resources/providers/client/Client.d.ts +86 -0
  144. package/dist/api/resources/providers/client/Client.js +336 -0
  145. package/dist/api/resources/providers/client/index.d.ts +1 -0
  146. package/dist/api/resources/providers/client/index.js +17 -0
  147. package/dist/api/resources/providers/client/requests/DeleteProviderRequest.d.ts +15 -0
  148. package/dist/api/resources/providers/client/requests/DeleteProviderRequest.js +5 -0
  149. package/dist/api/resources/providers/client/requests/ListProvidersRequest.d.ts +11 -0
  150. package/dist/api/resources/providers/client/requests/ListProvidersRequest.js +5 -0
  151. package/dist/api/resources/providers/client/requests/ProviderCreate.d.ts +16 -0
  152. package/dist/api/resources/providers/client/requests/ProviderCreate.js +5 -0
  153. package/dist/api/resources/providers/client/requests/ProviderUpdate.d.ts +16 -0
  154. package/dist/api/resources/providers/client/requests/ProviderUpdate.js +5 -0
  155. package/dist/api/resources/providers/client/requests/index.d.ts +4 -0
  156. package/dist/api/resources/providers/client/requests/index.js +2 -0
  157. package/dist/api/resources/sources/client/Client.js +8 -8
  158. package/dist/api/resources/sources/resources/files/client/Client.js +3 -3
  159. package/dist/api/resources/sources/resources/passages/client/Client.js +1 -1
  160. package/dist/api/resources/tools/client/Client.d.ts +3 -1
  161. package/dist/api/resources/tools/client/Client.js +15 -13
  162. package/dist/api/resources/tools/client/requests/ToolRunFromSource.d.ts +7 -3
  163. package/dist/api/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
  164. package/dist/api/types/AgentType.d.ts +1 -2
  165. package/dist/api/types/AgentType.js +0 -1
  166. package/dist/api/types/LettaSchemasToolTool.d.ts +4 -1
  167. package/dist/api/types/Provider.d.ts +13 -0
  168. package/dist/api/types/Provider.js +5 -0
  169. package/dist/api/types/ToolType.d.ts +9 -0
  170. package/dist/api/types/ToolType.js +11 -0
  171. package/dist/api/types/index.d.ts +2 -0
  172. package/dist/api/types/index.js +2 -0
  173. package/dist/serialization/resources/agents/client/index.d.ts +0 -1
  174. package/dist/serialization/resources/agents/client/index.js +1 -2
  175. package/dist/serialization/resources/agents/client/requests/AgentsSearchRequest.d.ts +18 -0
  176. package/{serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js → dist/serialization/resources/agents/client/requests/AgentsSearchRequest.js} +6 -6
  177. package/dist/serialization/resources/agents/client/requests/index.d.ts +1 -4
  178. package/dist/serialization/resources/agents/client/requests/index.js +3 -9
  179. package/dist/serialization/resources/agents/resources/coreMemory/client/getBlocks.d.ts +11 -0
  180. package/{serialization/resources/agents/client/getAgentMemoryBlocks.js → dist/serialization/resources/agents/resources/coreMemory/client/getBlocks.js} +2 -2
  181. package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/index.d.ts +1 -0
  182. package/{serialization/resources/agents/resources/memory/resources/messages → dist/serialization/resources/agents/resources/coreMemory}/client/index.js +2 -1
  183. package/dist/serialization/resources/agents/resources/coreMemory/client/listInContext.d.ts +11 -0
  184. package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/listInContext.js +2 -2
  185. package/dist/serialization/resources/agents/resources/index.d.ts +6 -1
  186. package/dist/serialization/resources/agents/resources/index.js +7 -2
  187. package/dist/serialization/resources/agents/resources/memoryVariables/index.d.ts +1 -0
  188. package/dist/serialization/resources/agents/resources/memoryVariables/index.js +17 -0
  189. package/dist/serialization/resources/agents/resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts +12 -0
  190. package/dist/serialization/resources/agents/{types/AgentsGetAgentVariablesResponse.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +3 -3
  191. package/dist/serialization/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  192. package/dist/serialization/resources/agents/resources/memoryVariables/types/index.js +17 -0
  193. package/dist/serialization/resources/agents/resources/templates/client/index.d.ts +1 -0
  194. package/dist/serialization/resources/agents/resources/templates/client/index.js +17 -0
  195. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.d.ts +12 -0
  196. package/{serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js → dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.js} +3 -3
  197. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +12 -0
  198. package/dist/serialization/resources/agents/{client/requests/AgentsCreateVersionRequest.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +3 -3
  199. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +14 -0
  200. package/{serialization/resources/agents/client/requests/AgentsMigrateRequest.js → dist/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.js} +3 -3
  201. package/dist/serialization/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  202. package/dist/serialization/resources/agents/resources/templates/client/requests/index.js +9 -0
  203. package/dist/serialization/resources/agents/resources/templates/index.d.ts +2 -0
  204. package/dist/serialization/resources/agents/resources/templates/index.js +18 -0
  205. package/dist/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.d.ts +12 -0
  206. package/dist/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.js +33 -0
  207. package/dist/serialization/resources/agents/resources/templates/types/index.d.ts +1 -0
  208. package/dist/serialization/resources/agents/resources/templates/types/index.js +17 -0
  209. package/dist/serialization/resources/agents/types/AgentsSearchRequestCombinator.d.ts +10 -0
  210. package/dist/serialization/resources/agents/types/{AgentsMigrateResponse.js → AgentsSearchRequestCombinator.js} +2 -4
  211. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +22 -0
  212. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js → AgentsSearchRequestSearchItem.js} +13 -6
  213. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +14 -0
  214. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.js +35 -0
  215. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +10 -0
  216. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.js +31 -0
  217. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +15 -0
  218. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemName.js → AgentsSearchRequestSearchItemOrderBy.js} +6 -5
  219. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +10 -0
  220. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestCombinator.js → AgentsSearchRequestSearchItemOrderByDirection.js} +2 -2
  221. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +10 -0
  222. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js +31 -0
  223. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemVersion.d.ts +12 -0
  224. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.js → AgentsSearchRequestSearchItemVersion.js} +2 -2
  225. package/dist/serialization/resources/agents/types/index.d.ts +8 -10
  226. package/dist/serialization/resources/agents/types/index.js +8 -10
  227. package/dist/serialization/resources/index.d.ts +2 -0
  228. package/dist/serialization/resources/index.js +3 -1
  229. package/dist/serialization/resources/providers/client/index.d.ts +2 -0
  230. package/dist/serialization/resources/{agents/resources/memory/resources → providers/client}/index.js +6 -2
  231. package/dist/serialization/resources/{agents/client/getAgentMemoryBlocks.d.ts → providers/client/listProviders.d.ts} +3 -3
  232. package/{serialization/resources/agents/types/AgentsMigrateResponse.js → dist/serialization/resources/providers/client/listProviders.js} +3 -4
  233. package/dist/serialization/resources/providers/client/requests/ProviderCreate.d.ts +13 -0
  234. package/dist/serialization/resources/providers/client/requests/ProviderCreate.js +34 -0
  235. package/dist/serialization/resources/providers/client/requests/ProviderUpdate.d.ts +13 -0
  236. package/dist/serialization/resources/providers/client/requests/ProviderUpdate.js +34 -0
  237. package/dist/serialization/resources/providers/client/requests/index.d.ts +2 -0
  238. package/dist/serialization/resources/providers/client/requests/index.js +7 -0
  239. package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +2 -1
  240. package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.js +2 -1
  241. package/dist/serialization/resources/tools/client/requests/ToolUpdate.d.ts +1 -0
  242. package/dist/serialization/resources/tools/client/requests/ToolUpdate.js +1 -0
  243. package/dist/serialization/types/AgentType.d.ts +1 -1
  244. package/dist/serialization/types/AgentType.js +1 -7
  245. package/dist/serialization/types/LettaSchemasToolTool.d.ts +3 -1
  246. package/dist/serialization/types/LettaSchemasToolTool.js +3 -1
  247. package/dist/serialization/types/Provider.d.ts +15 -0
  248. package/dist/serialization/types/Provider.js +36 -0
  249. package/dist/serialization/types/ToolType.d.ts +10 -0
  250. package/dist/serialization/types/ToolType.js +35 -0
  251. package/dist/serialization/types/index.d.ts +2 -0
  252. package/dist/serialization/types/index.js +2 -0
  253. package/dist/version.d.ts +1 -1
  254. package/dist/version.js +1 -1
  255. package/package.json +1 -1
  256. package/reference.md +591 -317
  257. package/serialization/resources/agents/client/index.d.ts +0 -1
  258. package/serialization/resources/agents/client/index.js +1 -2
  259. package/serialization/resources/agents/client/requests/AgentsSearchRequest.d.ts +18 -0
  260. package/{dist/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js → serialization/resources/agents/client/requests/AgentsSearchRequest.js} +6 -6
  261. package/serialization/resources/agents/client/requests/index.d.ts +1 -4
  262. package/serialization/resources/agents/client/requests/index.js +3 -9
  263. package/serialization/resources/agents/resources/coreMemory/client/getBlocks.d.ts +11 -0
  264. package/{dist/serialization/resources/agents/client/getAgentMemoryBlocks.js → serialization/resources/agents/resources/coreMemory/client/getBlocks.js} +2 -2
  265. package/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/index.d.ts +1 -0
  266. package/{dist/serialization/resources/agents/resources/memory/resources/messages → serialization/resources/agents/resources/coreMemory}/client/index.js +2 -1
  267. package/serialization/resources/agents/resources/coreMemory/client/listInContext.d.ts +11 -0
  268. package/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/listInContext.js +2 -2
  269. package/serialization/resources/agents/resources/coreMemory/index.d.ts +1 -0
  270. package/serialization/resources/agents/resources/coreMemory/index.js +17 -0
  271. package/serialization/resources/agents/resources/index.d.ts +6 -1
  272. package/serialization/resources/agents/resources/index.js +7 -2
  273. package/serialization/resources/agents/resources/memoryVariables/index.d.ts +1 -0
  274. package/serialization/resources/agents/resources/memoryVariables/index.js +17 -0
  275. package/serialization/resources/agents/resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts +12 -0
  276. package/serialization/resources/agents/{types/AgentsGetAgentVariablesResponse.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +3 -3
  277. package/serialization/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  278. package/serialization/resources/agents/resources/memoryVariables/types/index.js +17 -0
  279. package/serialization/resources/agents/resources/templates/client/index.d.ts +1 -0
  280. package/serialization/resources/agents/resources/templates/client/index.js +17 -0
  281. package/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.d.ts +12 -0
  282. package/{dist/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js → serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.js} +3 -3
  283. package/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +12 -0
  284. package/serialization/resources/agents/{client/requests/AgentsCreateVersionRequest.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +3 -3
  285. package/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +14 -0
  286. package/{dist/serialization/resources/agents/client/requests/AgentsMigrateRequest.js → serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.js} +3 -3
  287. package/serialization/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  288. package/serialization/resources/agents/resources/templates/client/requests/index.js +9 -0
  289. package/serialization/resources/agents/resources/templates/index.d.ts +2 -0
  290. package/serialization/resources/agents/resources/templates/index.js +18 -0
  291. package/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.d.ts +12 -0
  292. package/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.js +33 -0
  293. package/serialization/resources/agents/resources/templates/types/index.d.ts +1 -0
  294. package/serialization/resources/agents/resources/templates/types/index.js +17 -0
  295. package/serialization/resources/agents/types/AgentsSearchRequestCombinator.d.ts +10 -0
  296. package/serialization/resources/agents/types/AgentsSearchRequestCombinator.js +31 -0
  297. package/serialization/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +22 -0
  298. package/serialization/resources/agents/types/AgentsSearchRequestSearchItem.js +43 -0
  299. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +14 -0
  300. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.js +35 -0
  301. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +10 -0
  302. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.js +31 -0
  303. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +15 -0
  304. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.js +36 -0
  305. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +10 -0
  306. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.js +31 -0
  307. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +10 -0
  308. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js +31 -0
  309. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemVersion.d.ts +12 -0
  310. package/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.js → AgentsSearchRequestSearchItemVersion.js} +2 -2
  311. package/serialization/resources/agents/types/index.d.ts +8 -10
  312. package/serialization/resources/agents/types/index.js +8 -10
  313. package/serialization/resources/index.d.ts +2 -0
  314. package/serialization/resources/index.js +3 -1
  315. package/serialization/resources/providers/client/index.d.ts +2 -0
  316. package/{api/resources/agents/resources/memory/resources → serialization/resources/providers/client}/index.js +6 -2
  317. package/serialization/resources/{agents/client/getAgentMemoryBlocks.d.ts → providers/client/listProviders.d.ts} +3 -3
  318. package/serialization/resources/providers/client/listProviders.js +32 -0
  319. package/serialization/resources/providers/client/requests/ProviderCreate.d.ts +13 -0
  320. package/serialization/resources/providers/client/requests/ProviderCreate.js +34 -0
  321. package/serialization/resources/providers/client/requests/ProviderUpdate.d.ts +13 -0
  322. package/serialization/resources/providers/client/requests/ProviderUpdate.js +34 -0
  323. package/serialization/resources/providers/client/requests/index.d.ts +2 -0
  324. package/serialization/resources/providers/client/requests/index.js +7 -0
  325. package/serialization/resources/providers/index.d.ts +1 -0
  326. package/serialization/resources/providers/index.js +17 -0
  327. package/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +2 -1
  328. package/serialization/resources/tools/client/requests/ToolRunFromSource.js +2 -1
  329. package/serialization/resources/tools/client/requests/ToolUpdate.d.ts +1 -0
  330. package/serialization/resources/tools/client/requests/ToolUpdate.js +1 -0
  331. package/serialization/types/AgentType.d.ts +1 -1
  332. package/serialization/types/AgentType.js +1 -7
  333. package/serialization/types/LettaSchemasToolTool.d.ts +3 -1
  334. package/serialization/types/LettaSchemasToolTool.js +3 -1
  335. package/serialization/types/Provider.d.ts +15 -0
  336. package/serialization/types/Provider.js +36 -0
  337. package/serialization/types/ToolType.d.ts +10 -0
  338. package/serialization/types/ToolType.js +35 -0
  339. package/serialization/types/index.d.ts +2 -0
  340. package/serialization/types/index.js +2 -0
  341. package/version.d.ts +1 -1
  342. package/version.js +1 -1
  343. package/api/resources/agents/resources/memory/index.d.ts +0 -2
  344. package/api/resources/agents/resources/memory/index.js +0 -18
  345. package/api/resources/agents/resources/memory/resources/index.d.ts +0 -1
  346. package/api/resources/agents/resources/memory/resources/messages/client/Client.d.ts +0 -42
  347. package/api/resources/agents/resources/memory/resources/messages/client/Client.js +0 -124
  348. package/api/resources/agents/resources/memoryBlocks/client/Client.d.ts +0 -59
  349. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -8
  350. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -16
  351. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -8
  352. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -9
  353. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -8
  354. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -8
  355. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -8
  356. package/dist/api/resources/agents/resources/memory/index.d.ts +0 -2
  357. package/dist/api/resources/agents/resources/memory/index.js +0 -18
  358. package/dist/api/resources/agents/resources/memory/resources/index.d.ts +0 -1
  359. package/dist/api/resources/agents/resources/memory/resources/index.js +0 -27
  360. package/dist/api/resources/agents/resources/memory/resources/messages/client/Client.d.ts +0 -42
  361. package/dist/api/resources/agents/resources/memory/resources/messages/client/Client.js +0 -124
  362. package/dist/api/resources/agents/resources/memory/resources/messages/client/index.d.ts +0 -1
  363. package/dist/api/resources/agents/resources/memoryBlocks/client/Client.d.ts +0 -59
  364. package/dist/api/resources/agents/resources/memoryBlocks/client/index.d.ts +0 -1
  365. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -8
  366. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -16
  367. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -8
  368. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -9
  369. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -8
  370. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -8
  371. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -8
  372. package/dist/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +0 -12
  373. package/dist/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +0 -12
  374. package/dist/serialization/resources/agents/client/requests/AgentsMigrateRequest.d.ts +0 -14
  375. package/dist/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +0 -18
  376. package/dist/serialization/resources/agents/resources/memory/index.d.ts +0 -1
  377. package/dist/serialization/resources/agents/resources/memory/index.js +0 -17
  378. package/dist/serialization/resources/agents/resources/memory/resources/index.d.ts +0 -1
  379. package/dist/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.d.ts +0 -11
  380. package/dist/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +0 -12
  381. package/dist/serialization/resources/agents/types/AgentsMigrateResponse.d.ts +0 -12
  382. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -10
  383. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -22
  384. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.js +0 -43
  385. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -14
  386. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -10
  387. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js +0 -31
  388. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -15
  389. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -10
  390. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js +0 -31
  391. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -10
  392. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js +0 -31
  393. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts +0 -12
  394. package/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +0 -12
  395. package/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +0 -12
  396. package/serialization/resources/agents/client/requests/AgentsMigrateRequest.d.ts +0 -14
  397. package/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +0 -18
  398. package/serialization/resources/agents/resources/memory/index.d.ts +0 -1
  399. package/serialization/resources/agents/resources/memory/index.js +0 -17
  400. package/serialization/resources/agents/resources/memory/resources/index.d.ts +0 -1
  401. package/serialization/resources/agents/resources/memory/resources/index.js +0 -27
  402. package/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.d.ts +0 -11
  403. package/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +0 -12
  404. package/serialization/resources/agents/types/AgentsMigrateResponse.d.ts +0 -12
  405. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -10
  406. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.js +0 -31
  407. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -22
  408. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.js +0 -43
  409. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -14
  410. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.js +0 -35
  411. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -10
  412. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js +0 -31
  413. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -15
  414. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js +0 -36
  415. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -10
  416. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js +0 -31
  417. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -10
  418. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js +0 -31
  419. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts +0 -12
  420. /package/api/resources/agents/client/requests/{AgentsCreateTemplateFromAgentRequest.js → AgentsSearchRequest.js} +0 -0
  421. /package/api/resources/agents/resources/{memory → coreMemory}/client/index.d.ts +0 -0
  422. /package/api/resources/agents/resources/{memory → coreMemory}/client/index.js +0 -0
  423. /package/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.d.ts +0 -0
  424. /package/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.js +0 -0
  425. /package/api/resources/agents/resources/{memory/resources/messages → memoryVariables}/client/index.d.ts +0 -0
  426. /package/api/resources/agents/resources/{memory/resources/messages → memoryVariables}/client/index.js +0 -0
  427. /package/api/resources/agents/{client/requests/AgentsCreateVersionRequest.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +0 -0
  428. /package/api/resources/agents/{client/requests/AgentsMigrateRequest.js → resources/templates/client/requests/TemplatesCreateRequest.js} +0 -0
  429. /package/api/resources/agents/{client/requests/AgentsSearchDeployedAgentsRequest.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +0 -0
  430. /package/api/resources/agents/{types/AgentsGetAgentVariablesResponse.js → resources/templates/client/requests/TemplatesMigrateRequest.js} +0 -0
  431. /package/api/resources/agents/resources/{memoryBlocks/client → templates/client/requests}/index.js +0 -0
  432. /package/api/resources/agents/{types/AgentsMigrateResponse.js → resources/templates/types/TemplatesMigrateResponse.js} +0 -0
  433. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItem.js → AgentsSearchRequestSearchItem.js} +0 -0
  434. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemName.js → AgentsSearchRequestSearchItemName.js} +0 -0
  435. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js → AgentsSearchRequestSearchItemOrderBy.js} +0 -0
  436. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.js → AgentsSearchRequestSearchItemVersion.js} +0 -0
  437. /package/{dist/api/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js → api/resources/providers/client/requests/DeleteProviderRequest.js} +0 -0
  438. /package/{dist/api/resources/agents/client/requests/AgentsCreateVersionRequest.js → api/resources/providers/client/requests/ListProvidersRequest.js} +0 -0
  439. /package/{dist/api/resources/agents/client/requests/AgentsMigrateRequest.js → api/resources/providers/client/requests/ProviderCreate.js} +0 -0
  440. /package/{dist/api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js → api/resources/providers/client/requests/ProviderUpdate.js} +0 -0
  441. /package/{dist/api/resources/agents/resources/memory/client → api/resources/providers/client/requests}/index.js +0 -0
  442. /package/api/resources/{agents/resources/memoryBlocks → providers}/index.d.ts +0 -0
  443. /package/api/resources/{agents/resources/memoryBlocks → providers}/index.js +0 -0
  444. /package/{dist/api/resources/agents/types/AgentsGetAgentVariablesResponse.js → api/types/Provider.js} +0 -0
  445. /package/dist/api/resources/agents/{types/AgentsMigrateResponse.js → client/requests/AgentsSearchRequest.js} +0 -0
  446. /package/{api/resources/agents/resources/memoryBlocks → dist/api/resources/agents/resources/coreMemory}/client/index.d.ts +0 -0
  447. /package/dist/api/resources/agents/resources/{memory/resources/messages → coreMemory}/client/index.js +0 -0
  448. /package/dist/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.d.ts +0 -0
  449. /package/dist/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.js +0 -0
  450. /package/dist/api/resources/agents/resources/{memory → memoryVariables}/client/index.d.ts +0 -0
  451. /package/dist/api/resources/agents/resources/{memoryBlocks → memoryVariables}/client/index.js +0 -0
  452. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItem.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +0 -0
  453. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItemName.js → resources/templates/client/requests/TemplatesCreateRequest.js} +0 -0
  454. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +0 -0
  455. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItemVersion.js → resources/templates/client/requests/TemplatesMigrateRequest.js} +0 -0
  456. /package/dist/api/resources/{agents/resources/memoryBlocks → providers}/index.d.ts +0 -0
  457. /package/dist/api/resources/{agents/resources/memoryBlocks → providers}/index.js +0 -0
  458. /package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/index.d.ts +0 -0
  459. /package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/index.js +0 -0
  460. /package/{serialization/resources/agents/resources/memory/resources/messages → dist/serialization/resources/providers}/index.d.ts +0 -0
  461. /package/{serialization/resources/agents/resources/memory/resources/messages → dist/serialization/resources/providers}/index.js +0 -0
@@ -66,7 +66,7 @@ class ArchivalMemory {
66
66
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
67
67
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/agents/${encodeURIComponent(agentId)}/memory/archival`),
68
68
  method: "GET",
69
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "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),
69
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "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),
70
70
  contentType: "application/json",
71
71
  requestType: "json",
72
72
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -143,7 +143,7 @@ class ArchivalMemory {
143
143
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
144
144
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/agents/${encodeURIComponent(agentId)}/archival`),
145
145
  method: "GET",
146
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "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),
146
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "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),
147
147
  contentType: "application/json",
148
148
  queryParameters: _queryParams,
149
149
  requestType: "json",
@@ -212,7 +212,7 @@ class ArchivalMemory {
212
212
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
213
213
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/agents/${encodeURIComponent(agentId)}/archival`),
214
214
  method: "POST",
215
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "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),
215
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "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),
216
216
  contentType: "application/json",
217
217
  requestType: "json",
218
218
  body: serializers.agents.CreateArchivalMemory.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -279,7 +279,7 @@ class ArchivalMemory {
279
279
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
280
280
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/agents/${encodeURIComponent(agentId)}/archival/${encodeURIComponent(memoryId)}`),
281
281
  method: "DELETE",
282
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "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),
282
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "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),
283
283
  contentType: "application/json",
284
284
  requestType: "json",
285
285
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -66,7 +66,7 @@ class Context {
66
66
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
67
67
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/agents/${encodeURIComponent(agentId)}/context`),
68
68
  method: "GET",
69
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "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),
69
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "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),
70
70
  contentType: "application/json",
71
71
  requestType: "json",
72
72
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -0,0 +1,123 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../../../environments";
5
+ import * as core from "../../../../../../core";
6
+ import * as Letta from "../../../../../index";
7
+ export declare namespace CoreMemory {
8
+ interface Options {
9
+ environment?: core.Supplier<environments.LettaEnvironment | string>;
10
+ token?: core.Supplier<string | undefined>;
11
+ fetcher?: core.FetchFunction;
12
+ }
13
+ interface RequestOptions {
14
+ /** The maximum time to wait for a response in seconds. */
15
+ timeoutInSeconds?: number;
16
+ /** The number of times to retry the request. Defaults to 2. */
17
+ maxRetries?: number;
18
+ /** A hook to abort the request. */
19
+ abortSignal?: AbortSignal;
20
+ /** Additional headers to include in the request. */
21
+ headers?: Record<string, string>;
22
+ }
23
+ }
24
+ export declare class CoreMemory {
25
+ protected readonly _options: CoreMemory.Options;
26
+ constructor(_options?: CoreMemory.Options);
27
+ /**
28
+ * Retrieve the messages in the context of a specific agent.
29
+ *
30
+ * @param {string} agentId
31
+ * @param {CoreMemory.RequestOptions} requestOptions - Request-specific configuration.
32
+ *
33
+ * @throws {@link Letta.UnprocessableEntityError}
34
+ *
35
+ * @example
36
+ * await client.agents.coreMemory.listInContext("agent_id")
37
+ */
38
+ listInContext(agentId: string, requestOptions?: CoreMemory.RequestOptions): Promise<Letta.LettaSchemasMessageMessage[]>;
39
+ /**
40
+ * Retrieve the memory state of a specific agent.
41
+ * This endpoint fetches the current memory state of the agent identified by the user ID and agent ID.
42
+ *
43
+ * @param {string} agentId
44
+ * @param {CoreMemory.RequestOptions} requestOptions - Request-specific configuration.
45
+ *
46
+ * @throws {@link Letta.UnprocessableEntityError}
47
+ *
48
+ * @example
49
+ * await client.agents.coreMemory.get("agent_id")
50
+ */
51
+ get(agentId: string, requestOptions?: CoreMemory.RequestOptions): Promise<Letta.Memory>;
52
+ /**
53
+ * Retrieve a memory block from an agent.
54
+ *
55
+ * @param {string} agentId
56
+ * @param {string} blockLabel
57
+ * @param {CoreMemory.RequestOptions} requestOptions - Request-specific configuration.
58
+ *
59
+ * @throws {@link Letta.UnprocessableEntityError}
60
+ *
61
+ * @example
62
+ * await client.agents.coreMemory.getBlock("agent_id", "block_label")
63
+ */
64
+ getBlock(agentId: string, blockLabel: string, requestOptions?: CoreMemory.RequestOptions): Promise<Letta.Block>;
65
+ /**
66
+ * Removes a memory block from an agent by unlnking it. If the block is not linked to any other agent, it is deleted.
67
+ *
68
+ * @param {string} agentId
69
+ * @param {string} blockLabel
70
+ * @param {CoreMemory.RequestOptions} requestOptions - Request-specific configuration.
71
+ *
72
+ * @throws {@link Letta.UnprocessableEntityError}
73
+ *
74
+ * @example
75
+ * await client.agents.coreMemory.removeBlock("agent_id", "block_label")
76
+ */
77
+ removeBlock(agentId: string, blockLabel: string, requestOptions?: CoreMemory.RequestOptions): Promise<Letta.Memory>;
78
+ /**
79
+ * Removes a memory block from an agent by unlnking it. If the block is not linked to any other agent, it is deleted.
80
+ *
81
+ * @param {string} agentId
82
+ * @param {string} blockLabel
83
+ * @param {Letta.BlockUpdate} request
84
+ * @param {CoreMemory.RequestOptions} requestOptions - Request-specific configuration.
85
+ *
86
+ * @throws {@link Letta.UnprocessableEntityError}
87
+ *
88
+ * @example
89
+ * await client.agents.coreMemory.updateBlock("agent_id", "block_label", {})
90
+ */
91
+ updateBlock(agentId: string, blockLabel: string, request: Letta.BlockUpdate, requestOptions?: CoreMemory.RequestOptions): Promise<Letta.Block>;
92
+ /**
93
+ * Retrieve the memory blocks of a specific agent.
94
+ *
95
+ * @param {string} agentId
96
+ * @param {CoreMemory.RequestOptions} requestOptions - Request-specific configuration.
97
+ *
98
+ * @throws {@link Letta.UnprocessableEntityError}
99
+ *
100
+ * @example
101
+ * await client.agents.coreMemory.getBlocks("agent_id")
102
+ */
103
+ getBlocks(agentId: string, requestOptions?: CoreMemory.RequestOptions): Promise<Letta.Block[]>;
104
+ /**
105
+ * Creates a memory block and links it to the agent.
106
+ *
107
+ * @param {string} agentId
108
+ * @param {Letta.CreateBlock} request
109
+ * @param {CoreMemory.RequestOptions} requestOptions - Request-specific configuration.
110
+ *
111
+ * @throws {@link Letta.UnprocessableEntityError}
112
+ *
113
+ * @example
114
+ * await client.agents.coreMemory.addBlock("agent_id", {
115
+ * value: "value",
116
+ * label: "label"
117
+ * })
118
+ */
119
+ addBlock(agentId: string, request: Letta.CreateBlock, requestOptions?: CoreMemory.RequestOptions): Promise<Letta.Memory>;
120
+ protected _getCustomAuthorizationHeaders(): Promise<{
121
+ Authorization: string;
122
+ }>;
123
+ }