@orq-ai/node 3.13.4 → 3.13.6
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/README.md +96 -93
- package/bin/mcp-server.js +1618 -1100
- package/bin/mcp-server.js.map +50 -46
- package/docs/sdks/agents/README.md +95 -20
- package/examples/package-lock.json +1 -1
- package/funcs/agentsListTasks.d.ts +18 -0
- package/funcs/agentsListTasks.d.ts.map +1 -0
- package/funcs/agentsListTasks.js +130 -0
- package/funcs/agentsListTasks.js.map +1 -0
- package/funcs/agentsRetrieve.d.ts +1 -1
- package/funcs/agentsRetrieve.js +3 -3
- package/funcs/agentsRetrieve.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.d.ts.map +1 -1
- package/mcp-server/server.js +4 -2
- package/mcp-server/server.js.map +1 -1
- package/mcp-server/tools/agentsListTasks.d.ts +8 -0
- package/mcp-server/tools/agentsListTasks.d.ts.map +1 -0
- package/mcp-server/tools/agentsListTasks.js +64 -0
- package/mcp-server/tools/agentsListTasks.js.map +1 -0
- package/mcp-server/tools/agentsRetrieve.js +1 -1
- package/mcp-server/tools/agentsRetrieve.js.map +1 -1
- package/models/errors/index.d.ts +1 -0
- package/models/errors/index.d.ts.map +1 -1
- package/models/errors/index.js +1 -0
- package/models/errors/index.js.map +1 -1
- package/models/errors/listagenttasks.d.ts +41 -0
- package/models/errors/listagenttasks.d.ts.map +1 -0
- package/models/errors/listagenttasks.js +85 -0
- package/models/errors/listagenttasks.js.map +1 -0
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.d.ts +7 -7
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +16 -8
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/index.d.ts +1 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +1 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/listagents.d.ts +4 -4
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +6 -6
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listagenttasks.d.ts +523 -0
- package/models/operations/listagenttasks.d.ts.map +1 -0
- package/models/operations/listagenttasks.js +609 -0
- package/models/operations/listagenttasks.js.map +1 -0
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listchunks.d.ts +13 -13
- package/models/operations/listchunks.d.ts.map +1 -1
- package/models/operations/listchunks.js +16 -16
- package/models/operations/listchunks.js.map +1 -1
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.d.ts +13 -13
- package/models/operations/listdatasources.d.ts.map +1 -1
- package/models/operations/listdatasources.js +18 -19
- package/models/operations/listdatasources.js.map +1 -1
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/README.md +96 -93
- package/packages/orq-rc/docs/sdks/agents/README.md +95 -20
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/agentsListTasks.ts +183 -0
- package/packages/orq-rc/src/funcs/agentsRetrieve.ts +3 -3
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +4 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsListTasks.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieve.ts +1 -1
- package/packages/orq-rc/src/models/errors/index.ts +1 -0
- package/packages/orq-rc/src/models/errors/listagenttasks.ts +80 -0
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +6 -6
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +701 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +23 -15
- package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +1 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +1099 -0
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listchunks.ts +21 -21
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +785 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +6 -6
- package/packages/orq-rc/src/models/operations/listdatasources.ts +29 -22
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +767 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +6 -6
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +763 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +6 -22
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/packages/orq-rc/src/sdk/agents.ts +25 -7
- package/sdk/agents.d.ts +11 -4
- package/sdk/agents.d.ts.map +1 -1
- package/sdk/agents.js +15 -5
- package/sdk/agents.js.map +1 -1
- package/src/funcs/agentsListTasks.ts +183 -0
- package/src/funcs/agentsRetrieve.ts +3 -3
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +4 -2
- package/src/mcp-server/tools/agentsListTasks.ts +37 -0
- package/src/mcp-server/tools/agentsRetrieve.ts +1 -1
- package/src/models/errors/index.ts +1 -0
- package/src/models/errors/listagenttasks.ts +80 -0
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +23 -15
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/index.ts +1 -0
- package/src/models/operations/listagents.ts +10 -10
- package/src/models/operations/listagenttasks.ts +1099 -0
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listchunks.ts +21 -21
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +29 -22
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
- package/src/sdk/agents.ts +25 -7
|
@@ -258,9 +258,10 @@ run();
|
|
|
258
258
|
|
|
259
259
|
### [agents](docs/sdks/agents/README.md)
|
|
260
260
|
|
|
261
|
+
* [retrieveTask](docs/sdks/agents/README.md#retrievetask) - Retrieve a specific agent task
|
|
261
262
|
* [list](docs/sdks/agents/README.md#list) - List all agents
|
|
262
263
|
* [retrieve](docs/sdks/agents/README.md#retrieve) - Get an agent
|
|
263
|
-
* [
|
|
264
|
+
* [listTasks](docs/sdks/agents/README.md#listtasks) - List all tasks for an agent
|
|
264
265
|
* [run](docs/sdks/agents/README.md#run) - Run an agent
|
|
265
266
|
* [streamRun](docs/sdks/agents/README.md#streamrun) - Run and stream agent execution
|
|
266
267
|
* [listActions](docs/sdks/agents/README.md#listactions) - List all actions
|
|
@@ -455,6 +456,7 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
|
|
|
455
456
|
|
|
456
457
|
- [`agentsList`](docs/sdks/agents/README.md#list) - List all agents
|
|
457
458
|
- [`agentsListActions`](docs/sdks/agents/README.md#listactions) - List all actions
|
|
459
|
+
- [`agentsListTasks`](docs/sdks/agents/README.md#listtasks) - List all tasks for an agent
|
|
458
460
|
- [`agentsRetrieve`](docs/sdks/agents/README.md#retrieve) - Get an agent
|
|
459
461
|
- [`agentsRetrieveAction`](docs/sdks/agents/README.md#retrieveaction) - Retrieve an action executed by an agent task.
|
|
460
462
|
- [`agentsRetrieveTask`](docs/sdks/agents/README.md#retrievetask) - Retrieve a specific agent task
|
|
@@ -807,7 +809,7 @@ run();
|
|
|
807
809
|
**Primary error:**
|
|
808
810
|
* [`OrqError`](./src/models/errors/orqerror.ts): The base class for HTTP error responses.
|
|
809
811
|
|
|
810
|
-
<details><summary>Less common errors (
|
|
812
|
+
<details><summary>Less common errors (98)</summary>
|
|
811
813
|
|
|
812
814
|
<br />
|
|
813
815
|
|
|
@@ -820,97 +822,98 @@ run();
|
|
|
820
822
|
|
|
821
823
|
|
|
822
824
|
**Inherit from [`OrqError`](./src/models/errors/orqerror.ts)**:
|
|
823
|
-
* [`HonoApiError`](./src/models/errors/honoapierror.ts): Applicable to 10 of
|
|
824
|
-
* [`RetrieveContactResponseBody`](./src/models/errors/retrievecontactresponsebody.ts): Contact not found. Status code `404`. Applicable to 1 of
|
|
825
|
-
* [`UpdateContactResponseBody`](./src/models/errors/updatecontactresponsebody.ts): Contact not found. Status code `404`. Applicable to 1 of
|
|
826
|
-
* [`DeleteContactResponseBody`](./src/models/errors/deletecontactresponsebody.ts): Contact not found. Status code `404`. Applicable to 1 of
|
|
827
|
-
* [`
|
|
828
|
-
* [`
|
|
829
|
-
* [`
|
|
830
|
-
* [`
|
|
831
|
-
* [`
|
|
832
|
-
* [`
|
|
833
|
-
* [`
|
|
834
|
-
* [`
|
|
835
|
-
* [`
|
|
836
|
-
* [`
|
|
837
|
-
* [`
|
|
838
|
-
* [`
|
|
839
|
-
* [`
|
|
840
|
-
* [`
|
|
841
|
-
* [`
|
|
842
|
-
* [`
|
|
843
|
-
* [`
|
|
844
|
-
* [`
|
|
845
|
-
* [`
|
|
846
|
-
* [`
|
|
847
|
-
* [`
|
|
848
|
-
* [`
|
|
849
|
-
* [`
|
|
850
|
-
* [`
|
|
851
|
-
* [`
|
|
852
|
-
* [`
|
|
853
|
-
* [`
|
|
854
|
-
* [`
|
|
855
|
-
* [`
|
|
856
|
-
* [`
|
|
857
|
-
* [`
|
|
858
|
-
* [`
|
|
859
|
-
* [`
|
|
860
|
-
* [`
|
|
861
|
-
* [`
|
|
862
|
-
* [`
|
|
863
|
-
* [`
|
|
864
|
-
* [`
|
|
865
|
-
* [`
|
|
866
|
-
* [`
|
|
867
|
-
* [`
|
|
868
|
-
* [`
|
|
869
|
-
* [`
|
|
870
|
-
* [`
|
|
871
|
-
* [`
|
|
872
|
-
* [`
|
|
873
|
-
* [`
|
|
874
|
-
* [`
|
|
875
|
-
* [`
|
|
876
|
-
* [`
|
|
877
|
-
* [`
|
|
878
|
-
* [`
|
|
879
|
-
* [`
|
|
880
|
-
* [`
|
|
881
|
-
* [`
|
|
882
|
-
* [`
|
|
883
|
-
* [`
|
|
884
|
-
* [`
|
|
885
|
-
* [`
|
|
886
|
-
* [`
|
|
887
|
-
* [`
|
|
888
|
-
* [`
|
|
889
|
-
* [`
|
|
890
|
-
* [`
|
|
891
|
-
* [`
|
|
892
|
-
* [`
|
|
893
|
-
* [`
|
|
894
|
-
* [`
|
|
895
|
-
* [`
|
|
896
|
-
* [`
|
|
897
|
-
* [`
|
|
898
|
-
* [`
|
|
899
|
-
* [`
|
|
900
|
-
* [`
|
|
901
|
-
* [`
|
|
902
|
-
* [`
|
|
903
|
-
* [`
|
|
904
|
-
* [`
|
|
905
|
-
* [`
|
|
906
|
-
* [`
|
|
907
|
-
* [`
|
|
908
|
-
* [`
|
|
909
|
-
* [`
|
|
910
|
-
* [`
|
|
911
|
-
* [`
|
|
912
|
-
* [`
|
|
913
|
-
* [`
|
|
825
|
+
* [`HonoApiError`](./src/models/errors/honoapierror.ts): Applicable to 10 of 131 methods.*
|
|
826
|
+
* [`RetrieveContactResponseBody`](./src/models/errors/retrievecontactresponsebody.ts): Contact not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
827
|
+
* [`UpdateContactResponseBody`](./src/models/errors/updatecontactresponsebody.ts): Contact not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
828
|
+
* [`DeleteContactResponseBody`](./src/models/errors/deletecontactresponsebody.ts): Contact not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
829
|
+
* [`GetAgentTaskResponseBody`](./src/models/errors/getagenttaskresponsebody.ts): Agent task not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
830
|
+
* [`GetAgentResponseBody`](./src/models/errors/getagentresponsebody.ts): Agent not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
831
|
+
* [`ListAgentTasksResponseBody`](./src/models/errors/listagenttasksresponsebody.ts): No agent tasks found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
832
|
+
* [`StreamRunAgentResponseBody`](./src/models/errors/streamrunagentresponsebody.ts): Model not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
833
|
+
* [`UpdatePromptResponseBody`](./src/models/errors/updatepromptresponsebody.ts): Prompt not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
834
|
+
* [`GetPromptVersionResponseBody`](./src/models/errors/getpromptversionresponsebody.ts): Not Found - The prompt or prompt version does not exist. Status code `404`. Applicable to 1 of 131 methods.*
|
|
835
|
+
* [`GetEvalsResponseBody`](./src/models/errors/getevalsresponsebody.ts): Workspace ID is not found on the request. Status code `404`. Applicable to 1 of 131 methods.*
|
|
836
|
+
* [`CreateEvalResponseBody`](./src/models/errors/createevalresponsebody.ts): Workspace ID is not found on the request. Status code `404`. Applicable to 1 of 131 methods.*
|
|
837
|
+
* [`UpdateEvalResponseBody`](./src/models/errors/updateevalresponsebody.ts): Workspace ID is not found on the request. Status code `404`. Applicable to 1 of 131 methods.*
|
|
838
|
+
* [`DeleteEvalResponseBody`](./src/models/errors/deleteevalresponsebody.ts): Workspace ID is not found on the request. Status code `404`. Applicable to 1 of 131 methods.*
|
|
839
|
+
* [`EvalsBertScoreResponseBody`](./src/models/errors/evalsbertscoreresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
840
|
+
* [`EvalsBleuScoreResponseBody`](./src/models/errors/evalsbleuscoreresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
841
|
+
* [`EvalsContainsAllResponseBody`](./src/models/errors/evalscontainsallresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
842
|
+
* [`EvalsContainsAnyResponseBody`](./src/models/errors/evalscontainsanyresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
843
|
+
* [`EvalsContainsEmailResponseBody`](./src/models/errors/evalscontainsemailresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
844
|
+
* [`EvalsContainsNoneResponseBody`](./src/models/errors/evalscontainsnoneresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
845
|
+
* [`EvalsContainsUrlResponseBody`](./src/models/errors/evalscontainsurlresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
846
|
+
* [`EvalsContainsValidLinkResponseBody`](./src/models/errors/evalscontainsvalidlinkresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
847
|
+
* [`EvalsContainsResponseBody`](./src/models/errors/evalscontainsresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
848
|
+
* [`EvalsEndsWithResponseBody`](./src/models/errors/evalsendswithresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
849
|
+
* [`EvalsExactMatchResponseBody`](./src/models/errors/evalsexactmatchresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
850
|
+
* [`EvalsLengthBetweenResponseBody`](./src/models/errors/evalslengthbetweenresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
851
|
+
* [`EvalsLengthGreaterThanResponseBody`](./src/models/errors/evalslengthgreaterthanresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
852
|
+
* [`EvalsLengthLessThanResponseBody`](./src/models/errors/evalslengthlessthanresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
853
|
+
* [`EvalsValidJsonResponseBody`](./src/models/errors/evalsvalidjsonresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
854
|
+
* [`EvalsAgeAppropriateResponseBody`](./src/models/errors/evalsageappropriateresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
855
|
+
* [`EvalsBotDetectionResponseBody`](./src/models/errors/evalsbotdetectionresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
856
|
+
* [`EvalsFactCheckingKnowledgeBaseResponseBody`](./src/models/errors/evalsfactcheckingknowledgebaseresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
857
|
+
* [`EvalsGrammarResponseBody`](./src/models/errors/evalsgrammarresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
858
|
+
* [`EvalsLocalizationResponseBody`](./src/models/errors/evalslocalizationresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
859
|
+
* [`EvalsPiiResponseBody`](./src/models/errors/evalspiiresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
860
|
+
* [`EvalsSentimentClassificationResponseBody`](./src/models/errors/evalssentimentclassificationresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
861
|
+
* [`EvalsSummarizationResponseBody`](./src/models/errors/evalssummarizationresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
862
|
+
* [`EvalsToneOfVoiceResponseBody`](./src/models/errors/evalstoneofvoiceresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
863
|
+
* [`EvalsTranslationResponseBody`](./src/models/errors/evalstranslationresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
864
|
+
* [`EvalsRagasCoherenceResponseBody`](./src/models/errors/evalsragascoherenceresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
865
|
+
* [`EvalsRagasConcisenessResponseBody`](./src/models/errors/evalsragasconcisenessresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
866
|
+
* [`EvalsRagasContextPrecisionResponseBody`](./src/models/errors/evalsragascontextprecisionresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
867
|
+
* [`EvalsRagasContextRecallResponseBody`](./src/models/errors/evalsragascontextrecallresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
868
|
+
* [`EvalsRagasContextEntitiesRecallResponseBody`](./src/models/errors/evalsragascontextentitiesrecallresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
869
|
+
* [`EvalsRagasCorrectnessResponseBody`](./src/models/errors/evalsragascorrectnessresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
870
|
+
* [`EvalsRagasFaithfulnessResponseBody`](./src/models/errors/evalsragasfaithfulnessresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
871
|
+
* [`EvalsRagasHarmfulnessResponseBody`](./src/models/errors/evalsragasharmfulnessresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
872
|
+
* [`EvalsRagasMaliciousnessResponseBody`](./src/models/errors/evalsragasmaliciousnessresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
873
|
+
* [`EvalsRagasNoiseSensitivityResponseBody`](./src/models/errors/evalsragasnoisesensitivityresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
874
|
+
* [`EvalsRagasResponseRelevancyResponseBody`](./src/models/errors/evalsragasresponserelevancyresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
875
|
+
* [`EvalsRagasSummarizationResponseBody`](./src/models/errors/evalsragassummarizationresponsebody.ts): Evaluator not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
876
|
+
* [`InvokeEvalResponseBody`](./src/models/errors/invokeevalresponsebody.ts): Workspace ID is not found on the request. Status code `404`. Applicable to 1 of 131 methods.*
|
|
877
|
+
* [`UpdateToolResponseBody`](./src/models/errors/updatetoolresponsebody.ts): Tool not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
878
|
+
* [`DuplicateToolResponseBody`](./src/models/errors/duplicatetoolresponsebody.ts): Tool not found. Status code `404`. Applicable to 1 of 131 methods.*
|
|
879
|
+
* [`EvalsBertScoreEvalsResponseBody`](./src/models/errors/evalsbertscoreevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
880
|
+
* [`EvalsBleuScoreEvalsResponseBody`](./src/models/errors/evalsbleuscoreevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
881
|
+
* [`EvalsContainsAllEvalsResponseBody`](./src/models/errors/evalscontainsallevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
882
|
+
* [`EvalsContainsAnyEvalsResponseBody`](./src/models/errors/evalscontainsanyevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
883
|
+
* [`EvalsContainsEmailEvalsResponseBody`](./src/models/errors/evalscontainsemailevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
884
|
+
* [`EvalsContainsNoneEvalsResponseBody`](./src/models/errors/evalscontainsnoneevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
885
|
+
* [`EvalsContainsUrlEvalsResponseBody`](./src/models/errors/evalscontainsurlevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
886
|
+
* [`EvalsContainsValidLinkEvalsResponseBody`](./src/models/errors/evalscontainsvalidlinkevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
887
|
+
* [`EvalsContainsEvalsResponseBody`](./src/models/errors/evalscontainsevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
888
|
+
* [`EvalsEndsWithEvalsResponseBody`](./src/models/errors/evalsendswithevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
889
|
+
* [`EvalsExactMatchEvalsResponseBody`](./src/models/errors/evalsexactmatchevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
890
|
+
* [`EvalsLengthBetweenEvalsResponseBody`](./src/models/errors/evalslengthbetweenevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
891
|
+
* [`EvalsLengthGreaterThanEvalsResponseBody`](./src/models/errors/evalslengthgreaterthanevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
892
|
+
* [`EvalsLengthLessThanEvalsResponseBody`](./src/models/errors/evalslengthlessthanevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
893
|
+
* [`EvalsValidJsonEvalsResponseBody`](./src/models/errors/evalsvalidjsonevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
894
|
+
* [`EvalsAgeAppropriateEvalsResponseBody`](./src/models/errors/evalsageappropriateevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
895
|
+
* [`EvalsBotDetectionEvalsResponseBody`](./src/models/errors/evalsbotdetectionevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
896
|
+
* [`EvalsFactCheckingKnowledgeBaseEvalsResponseBody`](./src/models/errors/evalsfactcheckingknowledgebaseevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
897
|
+
* [`EvalsGrammarEvalsResponseBody`](./src/models/errors/evalsgrammarevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
898
|
+
* [`EvalsLocalizationEvalsResponseBody`](./src/models/errors/evalslocalizationevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
899
|
+
* [`EvalsPiiEvalsResponseBody`](./src/models/errors/evalspiievalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
900
|
+
* [`EvalsSentimentClassificationEvalsResponseBody`](./src/models/errors/evalssentimentclassificationevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
901
|
+
* [`EvalsSummarizationEvalsResponseBody`](./src/models/errors/evalssummarizationevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
902
|
+
* [`EvalsToneOfVoiceEvalsResponseBody`](./src/models/errors/evalstoneofvoiceevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
903
|
+
* [`EvalsTranslationEvalsResponseBody`](./src/models/errors/evalstranslationevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
904
|
+
* [`EvalsRagasCoherenceEvalsResponseBody`](./src/models/errors/evalsragascoherenceevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
905
|
+
* [`EvalsRagasConcisenessEvalsResponseBody`](./src/models/errors/evalsragasconcisenessevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
906
|
+
* [`EvalsRagasContextPrecisionEvalsResponseBody`](./src/models/errors/evalsragascontextprecisionevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
907
|
+
* [`EvalsRagasContextRecallEvalsResponseBody`](./src/models/errors/evalsragascontextrecallevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
908
|
+
* [`EvalsRagasContextEntitiesRecallEvalsResponseBody`](./src/models/errors/evalsragascontextentitiesrecallevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
909
|
+
* [`EvalsRagasCorrectnessEvalsResponseBody`](./src/models/errors/evalsragascorrectnessevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
910
|
+
* [`EvalsRagasFaithfulnessEvalsResponseBody`](./src/models/errors/evalsragasfaithfulnessevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
911
|
+
* [`EvalsRagasHarmfulnessEvalsResponseBody`](./src/models/errors/evalsragasharmfulnessevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
912
|
+
* [`EvalsRagasMaliciousnessEvalsResponseBody`](./src/models/errors/evalsragasmaliciousnessevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
913
|
+
* [`EvalsRagasNoiseSensitivityEvalsResponseBody`](./src/models/errors/evalsragasnoisesensitivityevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
914
|
+
* [`EvalsRagasResponseRelevancyEvalsResponseBody`](./src/models/errors/evalsragasresponserelevancyevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
915
|
+
* [`EvalsRagasSummarizationEvalsResponseBody`](./src/models/errors/evalsragassummarizationevalsresponsebody.ts): Internal server error. Status code `500`. Applicable to 1 of 131 methods.*
|
|
916
|
+
* [`InvokeEvalEvalsResponseBody`](./src/models/errors/invokeevalevalsresponsebody.ts): Error running the evaluator. Status code `500`. Applicable to 1 of 131 methods.*
|
|
914
917
|
* [`ResponseValidationError`](./src/models/errors/responsevalidationerror.ts): Type mismatch between the data returned from the server and the structure expected by the SDK. See `error.rawValue` for the raw value and `error.pretty()` for a nicely formatted multi-line string.
|
|
915
918
|
|
|
916
919
|
</details>
|
|
@@ -5,14 +5,91 @@
|
|
|
5
5
|
|
|
6
6
|
### Available Operations
|
|
7
7
|
|
|
8
|
+
* [retrieveTask](#retrievetask) - Retrieve a specific agent task
|
|
8
9
|
* [list](#list) - List all agents
|
|
9
10
|
* [retrieve](#retrieve) - Get an agent
|
|
10
|
-
* [
|
|
11
|
+
* [listTasks](#listtasks) - List all tasks for an agent
|
|
11
12
|
* [run](#run) - Run an agent
|
|
12
13
|
* [streamRun](#streamrun) - Run and stream agent execution
|
|
13
14
|
* [listActions](#listactions) - List all actions
|
|
14
15
|
* [retrieveAction](#retrieveaction) - Retrieve an action executed by an agent task.
|
|
15
16
|
|
|
17
|
+
## retrieveTask
|
|
18
|
+
|
|
19
|
+
Retrieves detailed information about a specific task for a given agent, including execution status and results.
|
|
20
|
+
|
|
21
|
+
### Example Usage
|
|
22
|
+
|
|
23
|
+
<!-- UsageSnippet language="typescript" operationID="GetAgentTask" method="get" path="/v2/agents/{agent_key}/tasks/{task_id}" -->
|
|
24
|
+
```typescript
|
|
25
|
+
import { Orq } from "@orq-ai/node";
|
|
26
|
+
|
|
27
|
+
const orq = new Orq({
|
|
28
|
+
apiKey: process.env["ORQ_API_KEY"] ?? "",
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
async function run() {
|
|
32
|
+
const result = await orq.agents.retrieveTask({
|
|
33
|
+
agentKey: "<value>",
|
|
34
|
+
taskId: "<id>",
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
console.log(result);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
run();
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Standalone function
|
|
44
|
+
|
|
45
|
+
The standalone function version of this method:
|
|
46
|
+
|
|
47
|
+
```typescript
|
|
48
|
+
import { OrqCore } from "@orq-ai/node/core.js";
|
|
49
|
+
import { agentsRetrieveTask } from "@orq-ai/node/funcs/agentsRetrieveTask.js";
|
|
50
|
+
|
|
51
|
+
// Use `OrqCore` for best tree-shaking performance.
|
|
52
|
+
// You can create one instance of it to use across an application.
|
|
53
|
+
const orq = new OrqCore({
|
|
54
|
+
apiKey: process.env["ORQ_API_KEY"] ?? "",
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
async function run() {
|
|
58
|
+
const res = await agentsRetrieveTask(orq, {
|
|
59
|
+
agentKey: "<value>",
|
|
60
|
+
taskId: "<id>",
|
|
61
|
+
});
|
|
62
|
+
if (res.ok) {
|
|
63
|
+
const { value: result } = res;
|
|
64
|
+
console.log(result);
|
|
65
|
+
} else {
|
|
66
|
+
console.log("agentsRetrieveTask failed:", res.error);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
run();
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Parameters
|
|
74
|
+
|
|
75
|
+
| Parameter | Type | Required | Description |
|
|
76
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
77
|
+
| `request` | [operations.GetAgentTaskRequest](../../models/operations/getagenttaskrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
78
|
+
| `options` | RequestOptions | :heavy_minus_sign: | Used to set various options for making HTTP requests. |
|
|
79
|
+
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
80
|
+
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
81
|
+
|
|
82
|
+
### Response
|
|
83
|
+
|
|
84
|
+
**Promise\<[operations.GetAgentTaskResponseBody](../../models/operations/getagenttaskresponsebody.md)\>**
|
|
85
|
+
|
|
86
|
+
### Errors
|
|
87
|
+
|
|
88
|
+
| Error Type | Status Code | Content Type |
|
|
89
|
+
| ------------------------------- | ------------------------------- | ------------------------------- |
|
|
90
|
+
| errors.GetAgentTaskResponseBody | 404 | application/json |
|
|
91
|
+
| errors.APIError | 4XX, 5XX | \*/\* |
|
|
92
|
+
|
|
16
93
|
## list
|
|
17
94
|
|
|
18
95
|
Retrieves a paginated list of all agents in your workspace. Each agent includes its configuration, primary model, and optional fallback model settings.
|
|
@@ -84,11 +161,11 @@ run();
|
|
|
84
161
|
|
|
85
162
|
## retrieve
|
|
86
163
|
|
|
87
|
-
Retrieves a single agent by
|
|
164
|
+
Retrieves a single agent by its unique key, including its full configuration with primary and fallback model settings.
|
|
88
165
|
|
|
89
166
|
### Example Usage
|
|
90
167
|
|
|
91
|
-
<!-- UsageSnippet language="typescript" operationID="GetAgent" method="get" path="/v2/agents/{
|
|
168
|
+
<!-- UsageSnippet language="typescript" operationID="GetAgent" method="get" path="/v2/agents/{agent_key}" -->
|
|
92
169
|
```typescript
|
|
93
170
|
import { Orq } from "@orq-ai/node";
|
|
94
171
|
|
|
@@ -98,7 +175,7 @@ const orq = new Orq({
|
|
|
98
175
|
|
|
99
176
|
async function run() {
|
|
100
177
|
const result = await orq.agents.retrieve({
|
|
101
|
-
|
|
178
|
+
agentKey: "<value>",
|
|
102
179
|
});
|
|
103
180
|
|
|
104
181
|
console.log(result);
|
|
@@ -123,7 +200,7 @@ const orq = new OrqCore({
|
|
|
123
200
|
|
|
124
201
|
async function run() {
|
|
125
202
|
const res = await agentsRetrieve(orq, {
|
|
126
|
-
|
|
203
|
+
agentKey: "<value>",
|
|
127
204
|
});
|
|
128
205
|
if (res.ok) {
|
|
129
206
|
const { value: result } = res;
|
|
@@ -156,13 +233,13 @@ run();
|
|
|
156
233
|
| errors.GetAgentResponseBody | 404 | application/json |
|
|
157
234
|
| errors.APIError | 4XX, 5XX | \*/\* |
|
|
158
235
|
|
|
159
|
-
##
|
|
236
|
+
## listTasks
|
|
160
237
|
|
|
161
|
-
Retrieves
|
|
238
|
+
Retrieves a paginated list of all tasks associated with a specific agent, optionally filtered by status.
|
|
162
239
|
|
|
163
240
|
### Example Usage
|
|
164
241
|
|
|
165
|
-
<!-- UsageSnippet language="typescript" operationID="
|
|
242
|
+
<!-- UsageSnippet language="typescript" operationID="ListAgentTasks" method="get" path="/v2/agents/{agent_key}/tasks" -->
|
|
166
243
|
```typescript
|
|
167
244
|
import { Orq } from "@orq-ai/node";
|
|
168
245
|
|
|
@@ -171,9 +248,8 @@ const orq = new Orq({
|
|
|
171
248
|
});
|
|
172
249
|
|
|
173
250
|
async function run() {
|
|
174
|
-
const result = await orq.agents.
|
|
251
|
+
const result = await orq.agents.listTasks({
|
|
175
252
|
agentKey: "<value>",
|
|
176
|
-
taskId: "<id>",
|
|
177
253
|
});
|
|
178
254
|
|
|
179
255
|
console.log(result);
|
|
@@ -188,7 +264,7 @@ The standalone function version of this method:
|
|
|
188
264
|
|
|
189
265
|
```typescript
|
|
190
266
|
import { OrqCore } from "@orq-ai/node/core.js";
|
|
191
|
-
import {
|
|
267
|
+
import { agentsListTasks } from "@orq-ai/node/funcs/agentsListTasks.js";
|
|
192
268
|
|
|
193
269
|
// Use `OrqCore` for best tree-shaking performance.
|
|
194
270
|
// You can create one instance of it to use across an application.
|
|
@@ -197,15 +273,14 @@ const orq = new OrqCore({
|
|
|
197
273
|
});
|
|
198
274
|
|
|
199
275
|
async function run() {
|
|
200
|
-
const res = await
|
|
276
|
+
const res = await agentsListTasks(orq, {
|
|
201
277
|
agentKey: "<value>",
|
|
202
|
-
taskId: "<id>",
|
|
203
278
|
});
|
|
204
279
|
if (res.ok) {
|
|
205
280
|
const { value: result } = res;
|
|
206
281
|
console.log(result);
|
|
207
282
|
} else {
|
|
208
|
-
console.log("
|
|
283
|
+
console.log("agentsListTasks failed:", res.error);
|
|
209
284
|
}
|
|
210
285
|
}
|
|
211
286
|
|
|
@@ -216,21 +291,21 @@ run();
|
|
|
216
291
|
|
|
217
292
|
| Parameter | Type | Required | Description |
|
|
218
293
|
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
219
|
-
| `request` | [operations.
|
|
294
|
+
| `request` | [operations.ListAgentTasksRequest](../../models/operations/listagenttasksrequest.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
220
295
|
| `options` | RequestOptions | :heavy_minus_sign: | Used to set various options for making HTTP requests. |
|
|
221
296
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
222
297
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
223
298
|
|
|
224
299
|
### Response
|
|
225
300
|
|
|
226
|
-
**Promise\<[operations.
|
|
301
|
+
**Promise\<[operations.ListAgentTasksResponseBody](../../models/operations/listagenttasksresponsebody.md)\>**
|
|
227
302
|
|
|
228
303
|
### Errors
|
|
229
304
|
|
|
230
|
-
| Error Type
|
|
231
|
-
|
|
|
232
|
-
| errors.
|
|
233
|
-
| errors.APIError
|
|
305
|
+
| Error Type | Status Code | Content Type |
|
|
306
|
+
| --------------------------------- | --------------------------------- | --------------------------------- |
|
|
307
|
+
| errors.ListAgentTasksResponseBody | 404 | application/json |
|
|
308
|
+
| errors.APIError | 4XX, 5XX | \*/\* |
|
|
234
309
|
|
|
235
310
|
## run
|
|
236
311
|
|
package/packages/orq-rc/jsr.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orq-ai/node",
|
|
3
|
-
"version": "3.14.0-rc.
|
|
3
|
+
"version": "3.14.0-rc.11",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@orq-ai/node",
|
|
9
|
-
"version": "3.14.0-rc.
|
|
9
|
+
"version": "3.14.0-rc.11",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"zod": "^3.20.0"
|
|
12
12
|
},
|