@letta-ai/letta-client 0.1.137 → 0.1.139

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 (244) hide show
  1. package/api/resources/agents/client/Client.js +10 -10
  2. package/api/resources/agents/client/requests/CreateAgentRequest.d.ts +2 -0
  3. package/api/resources/agents/resources/blocks/client/Client.js +5 -5
  4. package/api/resources/agents/resources/context/client/Client.js +1 -1
  5. package/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
  6. package/api/resources/agents/resources/groups/client/Client.js +1 -1
  7. package/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
  8. package/api/resources/agents/resources/messages/client/Client.js +6 -6
  9. package/api/resources/agents/resources/passages/client/Client.js +4 -4
  10. package/api/resources/agents/resources/sources/client/Client.js +3 -3
  11. package/api/resources/agents/resources/templates/client/Client.js +3 -3
  12. package/api/resources/agents/resources/tools/client/Client.js +3 -3
  13. package/api/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +1 -1
  14. package/api/resources/agents/types/AgentsSearchRequestSearchItemField.d.ts +9 -0
  15. package/api/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.d.ts +8 -0
  16. package/api/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.js +10 -0
  17. package/api/resources/agents/types/{AgentsSearchRequestSearchItemOperator.d.ts → AgentsSearchRequestSearchItemThree.d.ts} +1 -1
  18. package/api/resources/agents/types/index.d.ts +3 -1
  19. package/api/resources/agents/types/index.js +3 -1
  20. package/api/resources/batches/client/Client.js +4 -4
  21. package/api/resources/blocks/client/Client.js +6 -6
  22. package/api/resources/blocks/resources/agents/client/Client.js +1 -1
  23. package/api/resources/clientSideAccessTokens/client/Client.js +2 -2
  24. package/api/resources/embeddingModels/client/Client.js +1 -1
  25. package/api/resources/groups/client/Client.js +6 -6
  26. package/api/resources/groups/resources/messages/client/Client.js +5 -5
  27. package/api/resources/health/client/Client.js +1 -1
  28. package/api/resources/identities/client/Client.js +7 -7
  29. package/api/resources/identities/resources/properties/client/Client.js +1 -1
  30. package/api/resources/index.d.ts +2 -1
  31. package/api/resources/index.js +3 -2
  32. package/api/resources/jobs/client/Client.js +4 -4
  33. package/api/resources/messages/client/Client.js +1 -1
  34. package/api/resources/models/client/Client.js +1 -1
  35. package/api/resources/projects/client/Client.js +1 -1
  36. package/api/resources/providers/client/Client.js +5 -5
  37. package/api/resources/runs/client/Client.js +4 -4
  38. package/api/resources/runs/resources/messages/client/Client.js +1 -1
  39. package/api/resources/runs/resources/steps/client/Client.js +1 -1
  40. package/api/resources/runs/resources/usage/client/Client.js +1 -1
  41. package/api/resources/sources/client/Client.js +8 -8
  42. package/api/resources/sources/resources/files/client/Client.js +3 -3
  43. package/api/resources/sources/resources/passages/client/Client.js +1 -1
  44. package/api/resources/steps/client/Client.d.ts +16 -0
  45. package/api/resources/steps/client/Client.js +91 -3
  46. package/api/resources/steps/client/requests/AddFeedbackRequest.d.ts +11 -0
  47. package/api/resources/steps/client/requests/AddFeedbackRequest.js +5 -0
  48. package/api/resources/steps/client/requests/StepsListRequest.d.ts +9 -0
  49. package/api/resources/steps/client/requests/index.d.ts +1 -0
  50. package/api/resources/steps/index.d.ts +2 -0
  51. package/api/resources/steps/index.js +2 -0
  52. package/api/resources/steps/resources/feedback/client/Client.d.ts +39 -0
  53. package/api/resources/steps/resources/feedback/client/Client.js +111 -0
  54. package/api/resources/steps/resources/feedback/client/index.d.ts +1 -0
  55. package/api/resources/steps/resources/feedback/client/index.js +2 -0
  56. package/api/resources/steps/resources/feedback/index.d.ts +1 -0
  57. package/api/resources/steps/resources/feedback/index.js +17 -0
  58. package/api/resources/steps/resources/index.d.ts +1 -0
  59. package/api/resources/steps/resources/index.js +37 -0
  60. package/api/resources/steps/types/AddFeedbackRequestFeedback.d.ts +8 -0
  61. package/api/resources/steps/types/AddFeedbackRequestFeedback.js +10 -0
  62. package/api/resources/steps/types/StepsListRequestFeedback.d.ts +8 -0
  63. package/api/resources/steps/types/StepsListRequestFeedback.js +10 -0
  64. package/api/resources/steps/types/index.d.ts +2 -0
  65. package/api/resources/steps/types/index.js +18 -0
  66. package/api/resources/tags/client/Client.js +1 -1
  67. package/api/resources/telemetry/client/Client.js +1 -1
  68. package/api/resources/templates/client/Client.js +1 -1
  69. package/api/resources/templates/resources/agents/client/Client.js +1 -1
  70. package/api/resources/tools/client/Client.d.ts +17 -0
  71. package/api/resources/tools/client/Client.js +89 -18
  72. package/api/resources/tools/types/TestMcpServerRequest.d.ts +5 -0
  73. package/api/resources/tools/types/TestMcpServerRequest.js +5 -0
  74. package/api/resources/tools/types/index.d.ts +1 -0
  75. package/api/resources/tools/types/index.js +1 -0
  76. package/api/resources/voice/client/Client.js +1 -1
  77. package/api/types/Step.d.ts +2 -0
  78. package/api/types/StepFeedback.d.ts +8 -0
  79. package/api/types/StepFeedback.js +10 -0
  80. package/api/types/index.d.ts +1 -0
  81. package/api/types/index.js +1 -0
  82. package/dist/api/resources/agents/client/Client.js +10 -10
  83. package/dist/api/resources/agents/client/requests/CreateAgentRequest.d.ts +2 -0
  84. package/dist/api/resources/agents/resources/blocks/client/Client.js +5 -5
  85. package/dist/api/resources/agents/resources/context/client/Client.js +1 -1
  86. package/dist/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
  87. package/dist/api/resources/agents/resources/groups/client/Client.js +1 -1
  88. package/dist/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
  89. package/dist/api/resources/agents/resources/messages/client/Client.js +6 -6
  90. package/dist/api/resources/agents/resources/passages/client/Client.js +4 -4
  91. package/dist/api/resources/agents/resources/sources/client/Client.js +3 -3
  92. package/dist/api/resources/agents/resources/templates/client/Client.js +3 -3
  93. package/dist/api/resources/agents/resources/tools/client/Client.js +3 -3
  94. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +1 -1
  95. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemField.d.ts +9 -0
  96. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemField.js +5 -0
  97. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.d.ts +8 -0
  98. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.js +10 -0
  99. package/dist/api/resources/agents/types/{AgentsSearchRequestSearchItemOperator.d.ts → AgentsSearchRequestSearchItemThree.d.ts} +1 -1
  100. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemThree.js +5 -0
  101. package/dist/api/resources/agents/types/index.d.ts +3 -1
  102. package/dist/api/resources/agents/types/index.js +3 -1
  103. package/dist/api/resources/batches/client/Client.js +4 -4
  104. package/dist/api/resources/blocks/client/Client.js +6 -6
  105. package/dist/api/resources/blocks/resources/agents/client/Client.js +1 -1
  106. package/dist/api/resources/clientSideAccessTokens/client/Client.js +2 -2
  107. package/dist/api/resources/embeddingModels/client/Client.js +1 -1
  108. package/dist/api/resources/groups/client/Client.js +6 -6
  109. package/dist/api/resources/groups/resources/messages/client/Client.js +5 -5
  110. package/dist/api/resources/health/client/Client.js +1 -1
  111. package/dist/api/resources/identities/client/Client.js +7 -7
  112. package/dist/api/resources/identities/resources/properties/client/Client.js +1 -1
  113. package/dist/api/resources/index.d.ts +2 -1
  114. package/dist/api/resources/index.js +3 -2
  115. package/dist/api/resources/jobs/client/Client.js +4 -4
  116. package/dist/api/resources/messages/client/Client.js +1 -1
  117. package/dist/api/resources/models/client/Client.js +1 -1
  118. package/dist/api/resources/projects/client/Client.js +1 -1
  119. package/dist/api/resources/providers/client/Client.js +5 -5
  120. package/dist/api/resources/runs/client/Client.js +4 -4
  121. package/dist/api/resources/runs/resources/messages/client/Client.js +1 -1
  122. package/dist/api/resources/runs/resources/steps/client/Client.js +1 -1
  123. package/dist/api/resources/runs/resources/usage/client/Client.js +1 -1
  124. package/dist/api/resources/sources/client/Client.js +8 -8
  125. package/dist/api/resources/sources/resources/files/client/Client.js +3 -3
  126. package/dist/api/resources/sources/resources/passages/client/Client.js +1 -1
  127. package/dist/api/resources/steps/client/Client.d.ts +16 -0
  128. package/dist/api/resources/steps/client/Client.js +91 -3
  129. package/dist/api/resources/steps/client/requests/AddFeedbackRequest.d.ts +11 -0
  130. package/dist/api/resources/steps/client/requests/AddFeedbackRequest.js +5 -0
  131. package/dist/api/resources/steps/client/requests/StepsListRequest.d.ts +9 -0
  132. package/dist/api/resources/steps/client/requests/index.d.ts +1 -0
  133. package/dist/api/resources/steps/index.d.ts +2 -0
  134. package/dist/api/resources/steps/index.js +2 -0
  135. package/dist/api/resources/steps/resources/feedback/client/Client.d.ts +39 -0
  136. package/dist/api/resources/steps/resources/feedback/client/Client.js +111 -0
  137. package/dist/api/resources/steps/resources/feedback/client/index.d.ts +1 -0
  138. package/dist/api/resources/steps/resources/feedback/client/index.js +2 -0
  139. package/dist/api/resources/steps/resources/feedback/index.d.ts +1 -0
  140. package/dist/api/resources/steps/resources/feedback/index.js +17 -0
  141. package/dist/api/resources/steps/resources/index.d.ts +1 -0
  142. package/dist/api/resources/steps/resources/index.js +37 -0
  143. package/dist/api/resources/steps/types/AddFeedbackRequestFeedback.d.ts +8 -0
  144. package/dist/api/resources/steps/types/AddFeedbackRequestFeedback.js +10 -0
  145. package/dist/api/resources/steps/types/StepsListRequestFeedback.d.ts +8 -0
  146. package/dist/api/resources/steps/types/StepsListRequestFeedback.js +10 -0
  147. package/dist/api/resources/steps/types/index.d.ts +2 -0
  148. package/dist/api/resources/steps/types/index.js +18 -0
  149. package/dist/api/resources/tags/client/Client.js +1 -1
  150. package/dist/api/resources/telemetry/client/Client.js +1 -1
  151. package/dist/api/resources/templates/client/Client.js +1 -1
  152. package/dist/api/resources/templates/resources/agents/client/Client.js +1 -1
  153. package/dist/api/resources/tools/client/Client.d.ts +17 -0
  154. package/dist/api/resources/tools/client/Client.js +89 -18
  155. package/dist/api/resources/tools/types/TestMcpServerRequest.d.ts +5 -0
  156. package/dist/api/resources/tools/types/TestMcpServerRequest.js +5 -0
  157. package/dist/api/resources/tools/types/index.d.ts +1 -0
  158. package/dist/api/resources/tools/types/index.js +1 -0
  159. package/dist/api/resources/voice/client/Client.js +1 -1
  160. package/dist/api/types/Step.d.ts +2 -0
  161. package/dist/api/types/StepFeedback.d.ts +8 -0
  162. package/dist/api/types/StepFeedback.js +10 -0
  163. package/dist/api/types/index.d.ts +1 -0
  164. package/dist/api/types/index.js +1 -0
  165. package/dist/serialization/resources/agents/client/requests/CreateAgentRequest.d.ts +1 -0
  166. package/dist/serialization/resources/agents/client/requests/CreateAgentRequest.js +1 -0
  167. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +3 -2
  168. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItem.js +4 -2
  169. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemField.d.ts +15 -0
  170. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemField.js +46 -0
  171. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.d.ts +10 -0
  172. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.js +41 -0
  173. package/dist/serialization/resources/agents/types/{AgentsSearchRequestSearchItemOperator.d.ts → AgentsSearchRequestSearchItemThree.d.ts} +2 -2
  174. package/dist/serialization/resources/agents/types/{AgentsSearchRequestSearchItemOperator.js → AgentsSearchRequestSearchItemThree.js} +2 -2
  175. package/dist/serialization/resources/agents/types/index.d.ts +3 -1
  176. package/dist/serialization/resources/agents/types/index.js +3 -1
  177. package/dist/serialization/resources/index.d.ts +2 -1
  178. package/dist/serialization/resources/index.js +3 -2
  179. package/dist/serialization/resources/steps/index.d.ts +1 -0
  180. package/dist/serialization/resources/steps/index.js +1 -0
  181. package/dist/serialization/resources/steps/types/AddFeedbackRequestFeedback.d.ts +10 -0
  182. package/dist/serialization/resources/steps/types/AddFeedbackRequestFeedback.js +41 -0
  183. package/dist/serialization/resources/steps/types/StepsListRequestFeedback.d.ts +10 -0
  184. package/dist/serialization/resources/steps/types/StepsListRequestFeedback.js +41 -0
  185. package/dist/serialization/resources/steps/types/index.d.ts +2 -0
  186. package/dist/serialization/resources/steps/types/index.js +18 -0
  187. package/dist/serialization/resources/tools/client/index.d.ts +1 -0
  188. package/dist/serialization/resources/tools/client/index.js +2 -1
  189. package/dist/serialization/resources/tools/client/testMcpServer.d.ts +11 -0
  190. package/dist/serialization/resources/tools/client/testMcpServer.js +42 -0
  191. package/dist/serialization/resources/tools/types/TestMcpServerRequest.d.ts +13 -0
  192. package/dist/serialization/resources/tools/types/TestMcpServerRequest.js +44 -0
  193. package/dist/serialization/resources/tools/types/index.d.ts +1 -0
  194. package/dist/serialization/resources/tools/types/index.js +1 -0
  195. package/dist/serialization/types/Step.d.ts +2 -0
  196. package/dist/serialization/types/Step.js +2 -0
  197. package/dist/serialization/types/StepFeedback.d.ts +10 -0
  198. package/dist/serialization/types/StepFeedback.js +41 -0
  199. package/dist/serialization/types/index.d.ts +1 -0
  200. package/dist/serialization/types/index.js +1 -0
  201. package/dist/version.d.ts +1 -1
  202. package/dist/version.js +1 -1
  203. package/package.json +1 -1
  204. package/reference.md +189 -0
  205. package/serialization/resources/agents/client/requests/CreateAgentRequest.d.ts +1 -0
  206. package/serialization/resources/agents/client/requests/CreateAgentRequest.js +1 -0
  207. package/serialization/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +3 -2
  208. package/serialization/resources/agents/types/AgentsSearchRequestSearchItem.js +4 -2
  209. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemField.d.ts +15 -0
  210. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemField.js +46 -0
  211. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.d.ts +10 -0
  212. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemFieldOperator.js +41 -0
  213. package/serialization/resources/agents/types/{AgentsSearchRequestSearchItemOperator.d.ts → AgentsSearchRequestSearchItemThree.d.ts} +2 -2
  214. package/serialization/resources/agents/types/{AgentsSearchRequestSearchItemOperator.js → AgentsSearchRequestSearchItemThree.js} +2 -2
  215. package/serialization/resources/agents/types/index.d.ts +3 -1
  216. package/serialization/resources/agents/types/index.js +3 -1
  217. package/serialization/resources/index.d.ts +2 -1
  218. package/serialization/resources/index.js +3 -2
  219. package/serialization/resources/steps/index.d.ts +1 -0
  220. package/serialization/resources/steps/index.js +1 -0
  221. package/serialization/resources/steps/types/AddFeedbackRequestFeedback.d.ts +10 -0
  222. package/serialization/resources/steps/types/AddFeedbackRequestFeedback.js +41 -0
  223. package/serialization/resources/steps/types/StepsListRequestFeedback.d.ts +10 -0
  224. package/serialization/resources/steps/types/StepsListRequestFeedback.js +41 -0
  225. package/serialization/resources/steps/types/index.d.ts +2 -0
  226. package/serialization/resources/steps/types/index.js +18 -0
  227. package/serialization/resources/tools/client/index.d.ts +1 -0
  228. package/serialization/resources/tools/client/index.js +2 -1
  229. package/serialization/resources/tools/client/testMcpServer.d.ts +11 -0
  230. package/serialization/resources/tools/client/testMcpServer.js +42 -0
  231. package/serialization/resources/tools/types/TestMcpServerRequest.d.ts +13 -0
  232. package/serialization/resources/tools/types/TestMcpServerRequest.js +44 -0
  233. package/serialization/resources/tools/types/index.d.ts +1 -0
  234. package/serialization/resources/tools/types/index.js +1 -0
  235. package/serialization/types/Step.d.ts +2 -0
  236. package/serialization/types/Step.js +2 -0
  237. package/serialization/types/StepFeedback.d.ts +10 -0
  238. package/serialization/types/StepFeedback.js +41 -0
  239. package/serialization/types/index.d.ts +1 -0
  240. package/serialization/types/index.js +1 -0
  241. package/version.d.ts +1 -1
  242. package/version.js +1 -1
  243. /package/api/resources/agents/types/{AgentsSearchRequestSearchItemOperator.js → AgentsSearchRequestSearchItemField.js} +0 -0
  244. /package/{dist/api/resources/agents/types/AgentsSearchRequestSearchItemOperator.js → api/resources/agents/types/AgentsSearchRequestSearchItemThree.js} +0 -0
package/reference.md CHANGED
@@ -1165,6 +1165,74 @@ await client.tools.updateMcpServer("mcp_server_name", {});
1165
1165
  </dl>
1166
1166
  </details>
1167
1167
 
1168
+ <details><summary><code>client.tools.<a href="/src/api/resources/tools/client/Client.ts">testMcpServer</a>({ ...params }) -> Letta.McpTool[]</code></summary>
1169
+ <dl>
1170
+ <dd>
1171
+
1172
+ #### 📝 Description
1173
+
1174
+ <dl>
1175
+ <dd>
1176
+
1177
+ <dl>
1178
+ <dd>
1179
+
1180
+ Test connection to an MCP server without adding it.
1181
+ Returns the list of available tools if successful.
1182
+
1183
+ </dd>
1184
+ </dl>
1185
+ </dd>
1186
+ </dl>
1187
+
1188
+ #### 🔌 Usage
1189
+
1190
+ <dl>
1191
+ <dd>
1192
+
1193
+ <dl>
1194
+ <dd>
1195
+
1196
+ ```typescript
1197
+ await client.tools.testMcpServer({
1198
+ serverName: "server_name",
1199
+ command: "command",
1200
+ args: ["args"],
1201
+ });
1202
+ ```
1203
+
1204
+ </dd>
1205
+ </dl>
1206
+ </dd>
1207
+ </dl>
1208
+
1209
+ #### ⚙️ Parameters
1210
+
1211
+ <dl>
1212
+ <dd>
1213
+
1214
+ <dl>
1215
+ <dd>
1216
+
1217
+ **request:** `Letta.TestMcpServerRequest`
1218
+
1219
+ </dd>
1220
+ </dl>
1221
+
1222
+ <dl>
1223
+ <dd>
1224
+
1225
+ **requestOptions:** `Tools.RequestOptions`
1226
+
1227
+ </dd>
1228
+ </dl>
1229
+ </dd>
1230
+ </dl>
1231
+
1232
+ </dd>
1233
+ </dl>
1234
+ </details>
1235
+
1168
1236
  ## Sources
1169
1237
 
1170
1238
  <details><summary><code>client.sources.<a href="/src/api/resources/sources/client/Client.ts">count</a>() -> number</code></summary>
@@ -4538,6 +4606,77 @@ await client.steps.retrieve("step_id");
4538
4606
  </dl>
4539
4607
  </details>
4540
4608
 
4609
+ <details><summary><code>client.steps.<a href="/src/api/resources/steps/client/Client.ts">addFeedback</a>(stepId, { ...params }) -> Letta.Step</code></summary>
4610
+ <dl>
4611
+ <dd>
4612
+
4613
+ #### 📝 Description
4614
+
4615
+ <dl>
4616
+ <dd>
4617
+
4618
+ <dl>
4619
+ <dd>
4620
+
4621
+ Add feedback to a step.
4622
+
4623
+ </dd>
4624
+ </dl>
4625
+ </dd>
4626
+ </dl>
4627
+
4628
+ #### 🔌 Usage
4629
+
4630
+ <dl>
4631
+ <dd>
4632
+
4633
+ <dl>
4634
+ <dd>
4635
+
4636
+ ```typescript
4637
+ await client.steps.addFeedback("step_id");
4638
+ ```
4639
+
4640
+ </dd>
4641
+ </dl>
4642
+ </dd>
4643
+ </dl>
4644
+
4645
+ #### ⚙️ Parameters
4646
+
4647
+ <dl>
4648
+ <dd>
4649
+
4650
+ <dl>
4651
+ <dd>
4652
+
4653
+ **stepId:** `string`
4654
+
4655
+ </dd>
4656
+ </dl>
4657
+
4658
+ <dl>
4659
+ <dd>
4660
+
4661
+ **request:** `Letta.AddFeedbackRequest`
4662
+
4663
+ </dd>
4664
+ </dl>
4665
+
4666
+ <dl>
4667
+ <dd>
4668
+
4669
+ **requestOptions:** `Steps.RequestOptions`
4670
+
4671
+ </dd>
4672
+ </dl>
4673
+ </dd>
4674
+ </dl>
4675
+
4676
+ </dd>
4677
+ </dl>
4678
+ </details>
4679
+
4541
4680
  ## Tags
4542
4681
 
4543
4682
  <details><summary><code>client.tags.<a href="/src/api/resources/tags/client/Client.ts">list</a>({ ...params }) -> string[]</code></summary>
@@ -8422,6 +8561,56 @@ await client.sources.passages.list("source_id");
8422
8561
  </dl>
8423
8562
  </details>
8424
8563
 
8564
+ ## Steps Feedback
8565
+
8566
+ <details><summary><code>client.steps.feedback.<a href="/src/api/resources/steps/resources/feedback/client/Client.ts">add</a>(stepId) -> void</code></summary>
8567
+ <dl>
8568
+ <dd>
8569
+
8570
+ #### 🔌 Usage
8571
+
8572
+ <dl>
8573
+ <dd>
8574
+
8575
+ <dl>
8576
+ <dd>
8577
+
8578
+ ```typescript
8579
+ await client.steps.feedback.add("step_id");
8580
+ ```
8581
+
8582
+ </dd>
8583
+ </dl>
8584
+ </dd>
8585
+ </dl>
8586
+
8587
+ #### ⚙️ Parameters
8588
+
8589
+ <dl>
8590
+ <dd>
8591
+
8592
+ <dl>
8593
+ <dd>
8594
+
8595
+ **stepId:** `string`
8596
+
8597
+ </dd>
8598
+ </dl>
8599
+
8600
+ <dl>
8601
+ <dd>
8602
+
8603
+ **requestOptions:** `Feedback.RequestOptions`
8604
+
8605
+ </dd>
8606
+ </dl>
8607
+ </dd>
8608
+ </dl>
8609
+
8610
+ </dd>
8611
+ </dl>
8612
+ </details>
8613
+
8425
8614
  ## Templates Agents
8426
8615
 
8427
8616
  <details><summary><code>client.templates.agents.<a href="/src/api/resources/templates/resources/agents/client/Client.ts">create</a>(project, templateVersion, { ...params }) -> Letta.AgentsCreateResponse</code></summary>
@@ -30,6 +30,7 @@ export declare namespace CreateAgentRequest {
30
30
  include_base_tools?: boolean | null;
31
31
  include_multi_agent_tools?: boolean | null;
32
32
  include_base_tool_rules?: boolean | null;
33
+ include_default_source?: boolean | null;
33
34
  description?: string | null;
34
35
  metadata?: Record<string, unknown> | null;
35
36
  model?: string | null;
@@ -62,6 +62,7 @@ exports.CreateAgentRequest = core.serialization.object({
62
62
  includeBaseTools: core.serialization.property("include_base_tools", core.serialization.boolean().optional()),
63
63
  includeMultiAgentTools: core.serialization.property("include_multi_agent_tools", core.serialization.boolean().optional()),
64
64
  includeBaseToolRules: core.serialization.property("include_base_tool_rules", core.serialization.boolean().optional()),
65
+ includeDefaultSource: core.serialization.property("include_default_source", core.serialization.boolean().optional()),
65
66
  description: core.serialization.string().optional(),
66
67
  metadata: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(),
67
68
  model: core.serialization.string().optional(),
@@ -7,8 +7,9 @@ import * as core from "../../../../core";
7
7
  import { AgentsSearchRequestSearchItemZero } from "./AgentsSearchRequestSearchItemZero";
8
8
  import { AgentsSearchRequestSearchItemOne } from "./AgentsSearchRequestSearchItemOne";
9
9
  import { AgentsSearchRequestSearchItemTwo } from "./AgentsSearchRequestSearchItemTwo";
10
- import { AgentsSearchRequestSearchItemOperator } from "./AgentsSearchRequestSearchItemOperator";
10
+ import { AgentsSearchRequestSearchItemThree } from "./AgentsSearchRequestSearchItemThree";
11
+ import { AgentsSearchRequestSearchItemField } from "./AgentsSearchRequestSearchItemField";
11
12
  export declare const AgentsSearchRequestSearchItem: core.serialization.Schema<serializers.AgentsSearchRequestSearchItem.Raw, Letta.AgentsSearchRequestSearchItem>;
12
13
  export declare namespace AgentsSearchRequestSearchItem {
13
- type Raw = AgentsSearchRequestSearchItemZero.Raw | AgentsSearchRequestSearchItemOne.Raw | AgentsSearchRequestSearchItemTwo.Raw | AgentsSearchRequestSearchItemOperator.Raw;
14
+ type Raw = AgentsSearchRequestSearchItemZero.Raw | AgentsSearchRequestSearchItemOne.Raw | AgentsSearchRequestSearchItemTwo.Raw | AgentsSearchRequestSearchItemThree.Raw | AgentsSearchRequestSearchItemField.Raw;
14
15
  }
@@ -41,10 +41,12 @@ const core = __importStar(require("../../../../core"));
41
41
  const AgentsSearchRequestSearchItemZero_1 = require("./AgentsSearchRequestSearchItemZero");
42
42
  const AgentsSearchRequestSearchItemOne_1 = require("./AgentsSearchRequestSearchItemOne");
43
43
  const AgentsSearchRequestSearchItemTwo_1 = require("./AgentsSearchRequestSearchItemTwo");
44
- const AgentsSearchRequestSearchItemOperator_1 = require("./AgentsSearchRequestSearchItemOperator");
44
+ const AgentsSearchRequestSearchItemThree_1 = require("./AgentsSearchRequestSearchItemThree");
45
+ const AgentsSearchRequestSearchItemField_1 = require("./AgentsSearchRequestSearchItemField");
45
46
  exports.AgentsSearchRequestSearchItem = core.serialization.undiscriminatedUnion([
46
47
  AgentsSearchRequestSearchItemZero_1.AgentsSearchRequestSearchItemZero,
47
48
  AgentsSearchRequestSearchItemOne_1.AgentsSearchRequestSearchItemOne,
48
49
  AgentsSearchRequestSearchItemTwo_1.AgentsSearchRequestSearchItemTwo,
49
- AgentsSearchRequestSearchItemOperator_1.AgentsSearchRequestSearchItemOperator,
50
+ AgentsSearchRequestSearchItemThree_1.AgentsSearchRequestSearchItemThree,
51
+ AgentsSearchRequestSearchItemField_1.AgentsSearchRequestSearchItemField,
50
52
  ]);
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../index";
5
+ import * as Letta from "../../../../api/index";
6
+ import * as core from "../../../../core";
7
+ import { AgentsSearchRequestSearchItemFieldOperator } from "./AgentsSearchRequestSearchItemFieldOperator";
8
+ export declare const AgentsSearchRequestSearchItemField: core.serialization.ObjectSchema<serializers.AgentsSearchRequestSearchItemField.Raw, Letta.AgentsSearchRequestSearchItemField>;
9
+ export declare namespace AgentsSearchRequestSearchItemField {
10
+ interface Raw {
11
+ field: "templateName";
12
+ operator: AgentsSearchRequestSearchItemFieldOperator.Raw;
13
+ value: string;
14
+ }
15
+ }
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.AgentsSearchRequestSearchItemField = void 0;
40
+ const core = __importStar(require("../../../../core"));
41
+ const AgentsSearchRequestSearchItemFieldOperator_1 = require("./AgentsSearchRequestSearchItemFieldOperator");
42
+ exports.AgentsSearchRequestSearchItemField = core.serialization.object({
43
+ field: core.serialization.stringLiteral("templateName"),
44
+ operator: AgentsSearchRequestSearchItemFieldOperator_1.AgentsSearchRequestSearchItemFieldOperator,
45
+ value: core.serialization.string(),
46
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../index";
5
+ import * as Letta from "../../../../api/index";
6
+ import * as core from "../../../../core";
7
+ export declare const AgentsSearchRequestSearchItemFieldOperator: core.serialization.Schema<serializers.AgentsSearchRequestSearchItemFieldOperator.Raw, Letta.AgentsSearchRequestSearchItemFieldOperator>;
8
+ export declare namespace AgentsSearchRequestSearchItemFieldOperator {
9
+ type Raw = "eq" | "neq";
10
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.AgentsSearchRequestSearchItemFieldOperator = void 0;
40
+ const core = __importStar(require("../../../../core"));
41
+ exports.AgentsSearchRequestSearchItemFieldOperator = core.serialization.enum_(["eq", "neq"]);
@@ -4,8 +4,8 @@
4
4
  import * as serializers from "../../../index";
5
5
  import * as Letta from "../../../../api/index";
6
6
  import * as core from "../../../../core";
7
- export declare const AgentsSearchRequestSearchItemOperator: core.serialization.ObjectSchema<serializers.AgentsSearchRequestSearchItemOperator.Raw, Letta.AgentsSearchRequestSearchItemOperator>;
8
- export declare namespace AgentsSearchRequestSearchItemOperator {
7
+ export declare const AgentsSearchRequestSearchItemThree: core.serialization.ObjectSchema<serializers.AgentsSearchRequestSearchItemThree.Raw, Letta.AgentsSearchRequestSearchItemThree>;
8
+ export declare namespace AgentsSearchRequestSearchItemThree {
9
9
  interface Raw {
10
10
  field: "identity";
11
11
  operator: "eq";
@@ -36,9 +36,9 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.AgentsSearchRequestSearchItemOperator = void 0;
39
+ exports.AgentsSearchRequestSearchItemThree = void 0;
40
40
  const core = __importStar(require("../../../../core"));
41
- exports.AgentsSearchRequestSearchItemOperator = core.serialization.object({
41
+ exports.AgentsSearchRequestSearchItemThree = core.serialization.object({
42
42
  field: core.serialization.stringLiteral("identity"),
43
43
  operator: core.serialization.stringLiteral("eq"),
44
44
  value: core.serialization.string(),
@@ -6,7 +6,9 @@ export * from "./AgentsSearchRequestSearchItemZero";
6
6
  export * from "./AgentsSearchRequestSearchItemOneOperator";
7
7
  export * from "./AgentsSearchRequestSearchItemOne";
8
8
  export * from "./AgentsSearchRequestSearchItemTwo";
9
- export * from "./AgentsSearchRequestSearchItemOperator";
9
+ export * from "./AgentsSearchRequestSearchItemThree";
10
+ export * from "./AgentsSearchRequestSearchItemFieldOperator";
11
+ export * from "./AgentsSearchRequestSearchItemField";
10
12
  export * from "./AgentsSearchRequestSearchItem";
11
13
  export * from "./AgentsSearchRequestSortBy";
12
14
  export * from "./AgentsSearchResponse";
@@ -22,7 +22,9 @@ __exportStar(require("./AgentsSearchRequestSearchItemZero"), exports);
22
22
  __exportStar(require("./AgentsSearchRequestSearchItemOneOperator"), exports);
23
23
  __exportStar(require("./AgentsSearchRequestSearchItemOne"), exports);
24
24
  __exportStar(require("./AgentsSearchRequestSearchItemTwo"), exports);
25
- __exportStar(require("./AgentsSearchRequestSearchItemOperator"), exports);
25
+ __exportStar(require("./AgentsSearchRequestSearchItemThree"), exports);
26
+ __exportStar(require("./AgentsSearchRequestSearchItemFieldOperator"), exports);
27
+ __exportStar(require("./AgentsSearchRequestSearchItemField"), exports);
26
28
  __exportStar(require("./AgentsSearchRequestSearchItem"), exports);
27
29
  __exportStar(require("./AgentsSearchRequestSortBy"), exports);
28
30
  __exportStar(require("./AgentsSearchResponse"), exports);
@@ -4,6 +4,8 @@ export * as agents from "./agents";
4
4
  export * from "./agents/types";
5
5
  export * as groups from "./groups";
6
6
  export * from "./groups/types";
7
+ export * as steps from "./steps";
8
+ export * from "./steps/types";
7
9
  export * as templates from "./templates";
8
10
  export * from "./templates/types";
9
11
  export * as clientSideAccessTokens from "./clientSideAccessTokens";
@@ -18,7 +20,6 @@ export * as blocks from "./blocks";
18
20
  export * as jobs from "./jobs";
19
21
  export * as providers from "./providers";
20
22
  export * as runs from "./runs";
21
- export * as steps from "./steps";
22
23
  export * as tags from "./tags";
23
24
  export * as batches from "./batches";
24
25
  export * as voice from "./voice";
@@ -36,13 +36,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.voice = exports.batches = exports.tags = exports.steps = exports.runs = exports.providers = exports.jobs = exports.blocks = exports.embeddingModels = exports.models = exports.identities = exports.sources = exports.projects = exports.clientSideAccessTokens = exports.templates = exports.groups = exports.agents = exports.tools = void 0;
39
+ exports.voice = exports.batches = exports.tags = exports.runs = exports.providers = exports.jobs = exports.blocks = exports.embeddingModels = exports.models = exports.identities = exports.sources = exports.projects = exports.clientSideAccessTokens = exports.templates = exports.steps = exports.groups = exports.agents = exports.tools = void 0;
40
40
  exports.tools = __importStar(require("./tools"));
41
41
  __exportStar(require("./tools/types"), exports);
42
42
  exports.agents = __importStar(require("./agents"));
43
43
  __exportStar(require("./agents/types"), exports);
44
44
  exports.groups = __importStar(require("./groups"));
45
45
  __exportStar(require("./groups/types"), exports);
46
+ exports.steps = __importStar(require("./steps"));
47
+ __exportStar(require("./steps/types"), exports);
46
48
  exports.templates = __importStar(require("./templates"));
47
49
  __exportStar(require("./templates/types"), exports);
48
50
  exports.clientSideAccessTokens = __importStar(require("./clientSideAccessTokens"));
@@ -57,7 +59,6 @@ exports.blocks = __importStar(require("./blocks"));
57
59
  exports.jobs = __importStar(require("./jobs"));
58
60
  exports.providers = __importStar(require("./providers"));
59
61
  exports.runs = __importStar(require("./runs"));
60
- exports.steps = __importStar(require("./steps"));
61
62
  exports.tags = __importStar(require("./tags"));
62
63
  exports.batches = __importStar(require("./batches"));
63
64
  exports.voice = __importStar(require("./voice"));
@@ -1 +1,2 @@
1
+ export * from "./types";
1
2
  export * from "./client";
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types"), exports);
17
18
  __exportStar(require("./client"), exports);
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../index";
5
+ import * as Letta from "../../../../api/index";
6
+ import * as core from "../../../../core";
7
+ export declare const AddFeedbackRequestFeedback: core.serialization.Schema<serializers.AddFeedbackRequestFeedback.Raw, Letta.AddFeedbackRequestFeedback>;
8
+ export declare namespace AddFeedbackRequestFeedback {
9
+ type Raw = "positive" | "negative";
10
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.AddFeedbackRequestFeedback = void 0;
40
+ const core = __importStar(require("../../../../core"));
41
+ exports.AddFeedbackRequestFeedback = core.serialization.enum_(["positive", "negative"]);
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../index";
5
+ import * as Letta from "../../../../api/index";
6
+ import * as core from "../../../../core";
7
+ export declare const StepsListRequestFeedback: core.serialization.Schema<serializers.StepsListRequestFeedback.Raw, Letta.StepsListRequestFeedback>;
8
+ export declare namespace StepsListRequestFeedback {
9
+ type Raw = "positive" | "negative";
10
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.StepsListRequestFeedback = void 0;
40
+ const core = __importStar(require("../../../../core"));
41
+ exports.StepsListRequestFeedback = core.serialization.enum_(["positive", "negative"]);
@@ -0,0 +1,2 @@
1
+ export * from "./StepsListRequestFeedback";
2
+ export * from "./AddFeedbackRequestFeedback";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./StepsListRequestFeedback"), exports);
18
+ __exportStar(require("./AddFeedbackRequestFeedback"), exports);
@@ -7,4 +7,5 @@ export * as listMcpServers from "./listMcpServers";
7
7
  export * as addMcpServer from "./addMcpServer";
8
8
  export * as listMcpToolsByServer from "./listMcpToolsByServer";
9
9
  export * as deleteMcpServer from "./deleteMcpServer";
10
+ export * as testMcpServer from "./testMcpServer";
10
11
  export * from "./requests";
@@ -36,7 +36,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.deleteMcpServer = exports.listMcpToolsByServer = exports.addMcpServer = exports.listMcpServers = exports.listComposioActionsByApp = exports.listComposioApps = exports.upsertBaseTools = exports.list = exports.count = void 0;
39
+ exports.testMcpServer = exports.deleteMcpServer = exports.listMcpToolsByServer = exports.addMcpServer = exports.listMcpServers = exports.listComposioActionsByApp = exports.listComposioApps = exports.upsertBaseTools = exports.list = exports.count = void 0;
40
40
  exports.count = __importStar(require("./count"));
41
41
  exports.list = __importStar(require("./list"));
42
42
  exports.upsertBaseTools = __importStar(require("./upsertBaseTools"));
@@ -46,4 +46,5 @@ exports.listMcpServers = __importStar(require("./listMcpServers"));
46
46
  exports.addMcpServer = __importStar(require("./addMcpServer"));
47
47
  exports.listMcpToolsByServer = __importStar(require("./listMcpToolsByServer"));
48
48
  exports.deleteMcpServer = __importStar(require("./deleteMcpServer"));
49
+ exports.testMcpServer = __importStar(require("./testMcpServer"));
49
50
  __exportStar(require("./requests"), exports);
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../index";
5
+ import * as Letta from "../../../../api/index";
6
+ import * as core from "../../../../core";
7
+ import { McpTool } from "../../../types/McpTool";
8
+ export declare const Response: core.serialization.Schema<serializers.tools.testMcpServer.Response.Raw, Letta.McpTool[]>;
9
+ export declare namespace Response {
10
+ type Raw = McpTool.Raw[];
11
+ }