@overmap-ai/core 1.0.53-add-agent-slice.1 → 1.0.53-add-agent-sdk.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/overmap-core.js +10 -0
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +10 -0
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/services/AgentService.d.ts +3 -11
- package/dist/typings/models/agents.d.ts +17 -0
- package/dist/typings/models/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8479,6 +8479,16 @@ var __publicField = (obj, key, value) => {
|
|
|
8479
8479
|
queryParams: conversationId ? { conversation_id: conversationId } : {}
|
|
8480
8480
|
});
|
|
8481
8481
|
}
|
|
8482
|
+
async fetchAll() {
|
|
8483
|
+
const activeProjectId = this.client.store.getState().projectReducer.activeProjectId;
|
|
8484
|
+
return this.enqueueRequest({
|
|
8485
|
+
description: "Fetch agent conversations",
|
|
8486
|
+
method: HttpMethod.GET,
|
|
8487
|
+
url: `/projects/${activeProjectId}/agents-conversations/`,
|
|
8488
|
+
blockers: ["fetch-agent-conversations"],
|
|
8489
|
+
blocks: ["fetch-agent-conversations"]
|
|
8490
|
+
});
|
|
8491
|
+
}
|
|
8482
8492
|
async rate(responseId, rating) {
|
|
8483
8493
|
return this.enqueueRequest({
|
|
8484
8494
|
description: "Rate agent response",
|