@nimble-way/nimble-js 1.0.0 → 1.2.0
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/CHANGELOG.md +18 -0
- package/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/core/streaming.d.mts +33 -0
- package/core/streaming.d.mts.map +1 -0
- package/core/streaming.d.ts +33 -0
- package/core/streaming.d.ts.map +1 -0
- package/core/streaming.js +263 -0
- package/core/streaming.js.map +1 -0
- package/core/streaming.mjs +258 -0
- package/core/streaming.mjs.map +1 -0
- package/internal/decoders/line.d.mts +17 -0
- package/internal/decoders/line.d.mts.map +1 -0
- package/internal/decoders/line.d.ts +17 -0
- package/internal/decoders/line.d.ts.map +1 -0
- package/internal/decoders/line.js +113 -0
- package/internal/decoders/line.js.map +1 -0
- package/internal/decoders/line.mjs +108 -0
- package/internal/decoders/line.mjs.map +1 -0
- package/internal/parse.d.mts.map +1 -1
- package/internal/parse.d.ts.map +1 -1
- package/internal/parse.js +10 -0
- package/internal/parse.js.map +1 -1
- package/internal/parse.mjs +10 -0
- package/internal/parse.mjs.map +1 -1
- package/internal/request-options.d.mts +2 -0
- package/internal/request-options.d.mts.map +1 -1
- package/internal/request-options.d.ts +2 -0
- package/internal/request-options.d.ts.map +1 -1
- package/internal/request-options.js.map +1 -1
- package/internal/request-options.mjs.map +1 -1
- package/internal/tslib.js +18 -18
- package/package.json +11 -1
- package/resources/agents/agents.d.mts +200 -23
- package/resources/agents/agents.d.mts.map +1 -1
- package/resources/agents/agents.d.ts +200 -23
- package/resources/agents/agents.d.ts.map +1 -1
- package/resources/agents/agents.js +7 -0
- package/resources/agents/agents.js.map +1 -1
- package/resources/agents/agents.mjs +7 -0
- package/resources/agents/agents.mjs.map +1 -1
- package/resources/agents/index.d.mts +2 -2
- package/resources/agents/index.d.mts.map +1 -1
- package/resources/agents/index.d.ts +2 -2
- package/resources/agents/index.d.ts.map +1 -1
- package/resources/agents/index.js.map +1 -1
- package/resources/agents/index.mjs.map +1 -1
- package/resources/agents/runs.d.mts +25 -2
- package/resources/agents/runs.d.mts.map +1 -1
- package/resources/agents/runs.d.ts +25 -2
- package/resources/agents/runs.d.ts.map +1 -1
- package/resources/agents/runs.js +2 -1
- package/resources/agents/runs.js.map +1 -1
- package/resources/agents/runs.mjs +2 -1
- package/resources/agents/runs.mjs.map +1 -1
- package/resources/agents/templates.d.mts +8 -8
- package/resources/agents/templates.d.mts.map +1 -1
- package/resources/agents/templates.d.ts +8 -8
- package/resources/agents/templates.d.ts.map +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/src/client.ts +4 -0
- package/src/core/streaming.ts +315 -0
- package/src/internal/decoders/line.ts +135 -0
- package/src/internal/parse.ts +14 -0
- package/src/internal/request-options.ts +2 -0
- package/src/resources/agents/agents.ts +237 -25
- package/src/resources/agents/index.ts +3 -0
- package/src/resources/agents/runs.ts +37 -3
- package/src/resources/agents/templates.ts +10 -10
- package/src/resources/index.ts +2 -0
- package/src/streaming.ts +2 -0
- package/src/version.ts +1 -1
- package/streaming.d.mts +3 -0
- package/streaming.d.mts.map +1 -0
- package/streaming.d.ts +3 -0
- package/streaming.d.ts.map +1 -0
- package/streaming.js +6 -0
- package/streaming.js.map +1 -0
- package/streaming.mjs +3 -0
- package/streaming.mjs.map +1 -0
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { APIResource } from "../../core/resource.mjs";
|
|
2
2
|
import * as RunsAPI from "./runs.mjs";
|
|
3
|
-
import { RunCreateParams, RunCreateResponse, RunGetParams, RunGetResponse, RunListParams, RunListResponse, RunResultParams, RunResultResponse, RunStreamEventsParams, Runs } from "./runs.mjs";
|
|
3
|
+
import { RunCreateParams, RunCreateResponse, RunGetParams, RunGetResponse, RunListParams, RunListResponse, RunResultParams, RunResultResponse, RunStreamEventsParams, RunStreamEventsResponse, Runs } from "./runs.mjs";
|
|
4
4
|
import * as TemplatesAPI from "./templates.mjs";
|
|
5
5
|
import { TemplateGetResponse, TemplateListParams, TemplateListResponse, Templates } from "./templates.mjs";
|
|
6
6
|
import { APIPromise } from "../../core/api-promise.mjs";
|
|
@@ -38,6 +38,11 @@ export declare class Agents extends APIResource {
|
|
|
38
38
|
* Retrieve a single Web Search Agent by ID.
|
|
39
39
|
*/
|
|
40
40
|
get(agentID: string, options?: RequestOptions): APIPromise<AgentGetResponse>;
|
|
41
|
+
/**
|
|
42
|
+
* Creates a minimal persistent Web Search Agent and starts a run for it. The
|
|
43
|
+
* response includes `web_search_agent_id` for later agent and run queries.
|
|
44
|
+
*/
|
|
45
|
+
run(body: AgentRunParams, options?: RequestOptions): APIPromise<AgentRunResponse>;
|
|
41
46
|
}
|
|
42
47
|
export interface AgentCreateResponse {
|
|
43
48
|
/**
|
|
@@ -56,10 +61,6 @@ export interface AgentCreateResponse {
|
|
|
56
61
|
* Human-friendly agent name shown to users.
|
|
57
62
|
*/
|
|
58
63
|
display_name: string;
|
|
59
|
-
/**
|
|
60
|
-
* Domain expertise or operating context for the agent.
|
|
61
|
-
*/
|
|
62
|
-
domain_expertise: string;
|
|
63
64
|
/**
|
|
64
65
|
* Default effort level for this agent's runs.
|
|
65
66
|
*/
|
|
@@ -82,6 +83,10 @@ export interface AgentCreateResponse {
|
|
|
82
83
|
output_schema: {
|
|
83
84
|
[key: string]: unknown;
|
|
84
85
|
} | null;
|
|
86
|
+
/**
|
|
87
|
+
* Skill or operating context for the agent.
|
|
88
|
+
*/
|
|
89
|
+
skill: string;
|
|
85
90
|
/**
|
|
86
91
|
* Source guidance for the agent.
|
|
87
92
|
*/
|
|
@@ -209,10 +214,6 @@ export interface AgentUpdateResponse {
|
|
|
209
214
|
* Human-friendly agent name shown to users.
|
|
210
215
|
*/
|
|
211
216
|
display_name: string;
|
|
212
|
-
/**
|
|
213
|
-
* Domain expertise or operating context for the agent.
|
|
214
|
-
*/
|
|
215
|
-
domain_expertise: string;
|
|
216
217
|
/**
|
|
217
218
|
* Default effort level for this agent's runs.
|
|
218
219
|
*/
|
|
@@ -235,6 +236,10 @@ export interface AgentUpdateResponse {
|
|
|
235
236
|
output_schema: {
|
|
236
237
|
[key: string]: unknown;
|
|
237
238
|
} | null;
|
|
239
|
+
/**
|
|
240
|
+
* Skill or operating context for the agent.
|
|
241
|
+
*/
|
|
242
|
+
skill: string;
|
|
238
243
|
/**
|
|
239
244
|
* Source guidance for the agent.
|
|
240
245
|
*/
|
|
@@ -381,10 +386,6 @@ export declare namespace AgentListResponse {
|
|
|
381
386
|
* Human-friendly agent name shown to users.
|
|
382
387
|
*/
|
|
383
388
|
display_name: string;
|
|
384
|
-
/**
|
|
385
|
-
* Domain expertise or operating context for the agent.
|
|
386
|
-
*/
|
|
387
|
-
domain_expertise: string;
|
|
388
389
|
/**
|
|
389
390
|
* Default effort level for this agent's runs.
|
|
390
391
|
*/
|
|
@@ -407,6 +408,10 @@ export declare namespace AgentListResponse {
|
|
|
407
408
|
output_schema: {
|
|
408
409
|
[key: string]: unknown;
|
|
409
410
|
} | null;
|
|
411
|
+
/**
|
|
412
|
+
* Skill or operating context for the agent.
|
|
413
|
+
*/
|
|
414
|
+
skill: string;
|
|
410
415
|
/**
|
|
411
416
|
* Source guidance for the agent.
|
|
412
417
|
*/
|
|
@@ -535,10 +540,6 @@ export interface AgentGetResponse {
|
|
|
535
540
|
* Human-friendly agent name shown to users.
|
|
536
541
|
*/
|
|
537
542
|
display_name: string;
|
|
538
|
-
/**
|
|
539
|
-
* Domain expertise or operating context for the agent.
|
|
540
|
-
*/
|
|
541
|
-
domain_expertise: string;
|
|
542
543
|
/**
|
|
543
544
|
* Default effort level for this agent's runs.
|
|
544
545
|
*/
|
|
@@ -561,6 +562,10 @@ export interface AgentGetResponse {
|
|
|
561
562
|
output_schema: {
|
|
562
563
|
[key: string]: unknown;
|
|
563
564
|
} | null;
|
|
565
|
+
/**
|
|
566
|
+
* Skill or operating context for the agent.
|
|
567
|
+
*/
|
|
568
|
+
skill: string;
|
|
564
569
|
/**
|
|
565
570
|
* Source guidance for the agent.
|
|
566
571
|
*/
|
|
@@ -671,6 +676,67 @@ export declare namespace AgentGetResponse {
|
|
|
671
676
|
question: string;
|
|
672
677
|
}
|
|
673
678
|
}
|
|
679
|
+
export interface AgentRunResponse {
|
|
680
|
+
/**
|
|
681
|
+
* Run identifier, format "task*run*{uuid}".
|
|
682
|
+
*/
|
|
683
|
+
id: string;
|
|
684
|
+
/**
|
|
685
|
+
* When the run was created.
|
|
686
|
+
*/
|
|
687
|
+
created_at: string;
|
|
688
|
+
/**
|
|
689
|
+
* Effort level used for the run.
|
|
690
|
+
*/
|
|
691
|
+
effort: 'low' | 'medium' | 'high' | 'x-high' | 'max';
|
|
692
|
+
/**
|
|
693
|
+
* Interaction ID.
|
|
694
|
+
*/
|
|
695
|
+
interaction_id: string;
|
|
696
|
+
/**
|
|
697
|
+
* True while status is 'queued' or 'running'.
|
|
698
|
+
*/
|
|
699
|
+
is_active: boolean;
|
|
700
|
+
/**
|
|
701
|
+
* Current run status.
|
|
702
|
+
*/
|
|
703
|
+
status: 'queued' | 'running' | 'completed' | 'failed' | 'cancelled';
|
|
704
|
+
/**
|
|
705
|
+
* Web Search Agent instance this run belongs to.
|
|
706
|
+
*/
|
|
707
|
+
web_search_agent_id: string;
|
|
708
|
+
/**
|
|
709
|
+
* When the run completed.
|
|
710
|
+
*/
|
|
711
|
+
completed_at?: string | null;
|
|
712
|
+
/**
|
|
713
|
+
* Error details when the run failed.
|
|
714
|
+
*/
|
|
715
|
+
error?: AgentRunResponse.Error | null;
|
|
716
|
+
/**
|
|
717
|
+
* Prompt submitted for the run.
|
|
718
|
+
*/
|
|
719
|
+
prompt?: string | null;
|
|
720
|
+
/**
|
|
721
|
+
* When the run started executing.
|
|
722
|
+
*/
|
|
723
|
+
started_at?: string | null;
|
|
724
|
+
}
|
|
725
|
+
export declare namespace AgentRunResponse {
|
|
726
|
+
/**
|
|
727
|
+
* Error details when the run failed.
|
|
728
|
+
*/
|
|
729
|
+
interface Error {
|
|
730
|
+
/**
|
|
731
|
+
* Human-readable error description.
|
|
732
|
+
*/
|
|
733
|
+
message: string;
|
|
734
|
+
/**
|
|
735
|
+
* Reference ID (equals the run id).
|
|
736
|
+
*/
|
|
737
|
+
ref_id: string;
|
|
738
|
+
}
|
|
739
|
+
}
|
|
674
740
|
export interface AgentCreateParams {
|
|
675
741
|
/**
|
|
676
742
|
* Stable agent name.
|
|
@@ -684,10 +750,6 @@ export interface AgentCreateParams {
|
|
|
684
750
|
* Human-friendly agent name shown to users.
|
|
685
751
|
*/
|
|
686
752
|
display_name?: string | null;
|
|
687
|
-
/**
|
|
688
|
-
* Domain expertise or operating context for the agent.
|
|
689
|
-
*/
|
|
690
|
-
domain_expertise?: string | null;
|
|
691
753
|
/**
|
|
692
754
|
* Default effort level for this agent's runs.
|
|
693
755
|
*/
|
|
@@ -710,6 +772,10 @@ export interface AgentCreateParams {
|
|
|
710
772
|
output_schema?: {
|
|
711
773
|
[key: string]: unknown;
|
|
712
774
|
} | null;
|
|
775
|
+
/**
|
|
776
|
+
* Skill or operating context for the agent.
|
|
777
|
+
*/
|
|
778
|
+
skill?: string | null;
|
|
713
779
|
/**
|
|
714
780
|
* Source guidance for the agent.
|
|
715
781
|
*/
|
|
@@ -803,9 +869,120 @@ export interface AgentListParams {
|
|
|
803
869
|
offset?: number;
|
|
804
870
|
workspace_id?: string | null;
|
|
805
871
|
}
|
|
872
|
+
export interface AgentRunParams {
|
|
873
|
+
/**
|
|
874
|
+
* User prompt or task instructions for the run.
|
|
875
|
+
*/
|
|
876
|
+
input: string;
|
|
877
|
+
/**
|
|
878
|
+
* Stable agent name. On this no-agent-id route, an unseen name creates a new
|
|
879
|
+
* agent; an existing name reuses it. Ignored on the /{agent_id}/runs route.
|
|
880
|
+
*/
|
|
881
|
+
agent_name?: string | null;
|
|
882
|
+
/**
|
|
883
|
+
* Canonical effort tier names for the research graph.
|
|
884
|
+
*/
|
|
885
|
+
effort?: 'low' | 'medium' | 'high' | 'x-high' | 'max' | null;
|
|
886
|
+
/**
|
|
887
|
+
* Whether to stream run events when supported.
|
|
888
|
+
*/
|
|
889
|
+
enable_events?: boolean;
|
|
890
|
+
/**
|
|
891
|
+
* Existing records to ENRICH: a list of partial rows, or a single object,
|
|
892
|
+
* mirroring output_schema's shape.
|
|
893
|
+
*/
|
|
894
|
+
input_data?: Array<{
|
|
895
|
+
[key: string]: unknown;
|
|
896
|
+
}> | {
|
|
897
|
+
[key: string]: unknown;
|
|
898
|
+
} | null;
|
|
899
|
+
/**
|
|
900
|
+
* Origin of public API runs. Public requests are always API-originated.
|
|
901
|
+
*/
|
|
902
|
+
origin?: 'api';
|
|
903
|
+
/**
|
|
904
|
+
* JSON schema overriding the agent's default structured output for this run.
|
|
905
|
+
*/
|
|
906
|
+
output_schema?: {
|
|
907
|
+
[key: string]: unknown;
|
|
908
|
+
} | null;
|
|
909
|
+
/**
|
|
910
|
+
* Previous interaction identifier used to continue a conversation.
|
|
911
|
+
*/
|
|
912
|
+
previous_interaction_id?: string | null;
|
|
913
|
+
/**
|
|
914
|
+
* Skill override for this run. One-time only, except when this run creates a new
|
|
915
|
+
* agent via agent_name, in which case it becomes the new agent's stored skill.
|
|
916
|
+
*/
|
|
917
|
+
skill?: string | null;
|
|
918
|
+
/**
|
|
919
|
+
* Source guidance overriding the agent default.
|
|
920
|
+
*/
|
|
921
|
+
sources?: AgentRunParams.Sources | null;
|
|
922
|
+
/**
|
|
923
|
+
* Only settable when this run creates a new agent (via agent_name, or when no
|
|
924
|
+
* agent is resolved), in which case it becomes the new agent's stored use_case.
|
|
925
|
+
* For a run against an existing agent, this must match the agent's own use_case —
|
|
926
|
+
* passing the same value is accepted as a no-op, a different value is rejected.
|
|
927
|
+
*/
|
|
928
|
+
use_case?: 'research' | 'enrichment' | 'dataset_building' | null;
|
|
929
|
+
}
|
|
930
|
+
export declare namespace AgentRunParams {
|
|
931
|
+
/**
|
|
932
|
+
* Source guidance overriding the agent default.
|
|
933
|
+
*/
|
|
934
|
+
interface Sources {
|
|
935
|
+
/**
|
|
936
|
+
* Source groups the agent is allowed to use.
|
|
937
|
+
*/
|
|
938
|
+
allow?: Array<Sources.Allow>;
|
|
939
|
+
/**
|
|
940
|
+
* Free-text guidance describing sources or domains to avoid.
|
|
941
|
+
*/
|
|
942
|
+
avoid?: string | null;
|
|
943
|
+
/**
|
|
944
|
+
* Source groups the agent should not use.
|
|
945
|
+
*/
|
|
946
|
+
block?: Array<Sources.Block>;
|
|
947
|
+
/**
|
|
948
|
+
* Free-text guidance describing sources or domains to prioritize.
|
|
949
|
+
*/
|
|
950
|
+
prioritize?: string | null;
|
|
951
|
+
}
|
|
952
|
+
namespace Sources {
|
|
953
|
+
interface Allow {
|
|
954
|
+
/**
|
|
955
|
+
* Domains included in this source group.
|
|
956
|
+
*/
|
|
957
|
+
domains: Array<string>;
|
|
958
|
+
/**
|
|
959
|
+
* Source group title.
|
|
960
|
+
*/
|
|
961
|
+
title: string;
|
|
962
|
+
/**
|
|
963
|
+
* Zero-based source group position.
|
|
964
|
+
*/
|
|
965
|
+
order?: number;
|
|
966
|
+
}
|
|
967
|
+
interface Block {
|
|
968
|
+
/**
|
|
969
|
+
* Domains included in this source group.
|
|
970
|
+
*/
|
|
971
|
+
domains: Array<string>;
|
|
972
|
+
/**
|
|
973
|
+
* Source group title.
|
|
974
|
+
*/
|
|
975
|
+
title: string;
|
|
976
|
+
/**
|
|
977
|
+
* Zero-based source group position.
|
|
978
|
+
*/
|
|
979
|
+
order?: number;
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
}
|
|
806
983
|
export declare namespace Agents {
|
|
807
|
-
export { type AgentCreateResponse as AgentCreateResponse, type AgentUpdateResponse as AgentUpdateResponse, type AgentListResponse as AgentListResponse, type AgentGetResponse as AgentGetResponse, type AgentCreateParams as AgentCreateParams, type AgentUpdateParams as AgentUpdateParams, type AgentListParams as AgentListParams, };
|
|
984
|
+
export { type AgentCreateResponse as AgentCreateResponse, type AgentUpdateResponse as AgentUpdateResponse, type AgentListResponse as AgentListResponse, type AgentGetResponse as AgentGetResponse, type AgentRunResponse as AgentRunResponse, type AgentCreateParams as AgentCreateParams, type AgentUpdateParams as AgentUpdateParams, type AgentListParams as AgentListParams, type AgentRunParams as AgentRunParams, };
|
|
808
985
|
export { Templates as Templates, type TemplateListResponse as TemplateListResponse, type TemplateGetResponse as TemplateGetResponse, type TemplateListParams as TemplateListParams, };
|
|
809
|
-
export { Runs as Runs, type RunCreateResponse as RunCreateResponse, type RunListResponse as RunListResponse, type RunGetResponse as RunGetResponse, type RunResultResponse as RunResultResponse, type RunCreateParams as RunCreateParams, type RunListParams as RunListParams, type RunGetParams as RunGetParams, type RunResultParams as RunResultParams, type RunStreamEventsParams as RunStreamEventsParams, };
|
|
986
|
+
export { Runs as Runs, type RunCreateResponse as RunCreateResponse, type RunListResponse as RunListResponse, type RunGetResponse as RunGetResponse, type RunResultResponse as RunResultResponse, type RunStreamEventsResponse as RunStreamEventsResponse, type RunCreateParams as RunCreateParams, type RunListParams as RunListParams, type RunGetParams as RunGetParams, type RunResultParams as RunResultParams, type RunStreamEventsParams as RunStreamEventsParams, };
|
|
810
987
|
}
|
|
811
988
|
//# sourceMappingURL=agents.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agents.d.mts","sourceRoot":"","sources":["../../src/resources/agents/agents.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"agents.d.mts","sourceRoot":"","sources":["../../src/resources/agents/agents.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { APIResource } from "../../core/resource.js";
|
|
2
2
|
import * as RunsAPI from "./runs.js";
|
|
3
|
-
import { RunCreateParams, RunCreateResponse, RunGetParams, RunGetResponse, RunListParams, RunListResponse, RunResultParams, RunResultResponse, RunStreamEventsParams, Runs } from "./runs.js";
|
|
3
|
+
import { RunCreateParams, RunCreateResponse, RunGetParams, RunGetResponse, RunListParams, RunListResponse, RunResultParams, RunResultResponse, RunStreamEventsParams, RunStreamEventsResponse, Runs } from "./runs.js";
|
|
4
4
|
import * as TemplatesAPI from "./templates.js";
|
|
5
5
|
import { TemplateGetResponse, TemplateListParams, TemplateListResponse, Templates } from "./templates.js";
|
|
6
6
|
import { APIPromise } from "../../core/api-promise.js";
|
|
@@ -38,6 +38,11 @@ export declare class Agents extends APIResource {
|
|
|
38
38
|
* Retrieve a single Web Search Agent by ID.
|
|
39
39
|
*/
|
|
40
40
|
get(agentID: string, options?: RequestOptions): APIPromise<AgentGetResponse>;
|
|
41
|
+
/**
|
|
42
|
+
* Creates a minimal persistent Web Search Agent and starts a run for it. The
|
|
43
|
+
* response includes `web_search_agent_id` for later agent and run queries.
|
|
44
|
+
*/
|
|
45
|
+
run(body: AgentRunParams, options?: RequestOptions): APIPromise<AgentRunResponse>;
|
|
41
46
|
}
|
|
42
47
|
export interface AgentCreateResponse {
|
|
43
48
|
/**
|
|
@@ -56,10 +61,6 @@ export interface AgentCreateResponse {
|
|
|
56
61
|
* Human-friendly agent name shown to users.
|
|
57
62
|
*/
|
|
58
63
|
display_name: string;
|
|
59
|
-
/**
|
|
60
|
-
* Domain expertise or operating context for the agent.
|
|
61
|
-
*/
|
|
62
|
-
domain_expertise: string;
|
|
63
64
|
/**
|
|
64
65
|
* Default effort level for this agent's runs.
|
|
65
66
|
*/
|
|
@@ -82,6 +83,10 @@ export interface AgentCreateResponse {
|
|
|
82
83
|
output_schema: {
|
|
83
84
|
[key: string]: unknown;
|
|
84
85
|
} | null;
|
|
86
|
+
/**
|
|
87
|
+
* Skill or operating context for the agent.
|
|
88
|
+
*/
|
|
89
|
+
skill: string;
|
|
85
90
|
/**
|
|
86
91
|
* Source guidance for the agent.
|
|
87
92
|
*/
|
|
@@ -209,10 +214,6 @@ export interface AgentUpdateResponse {
|
|
|
209
214
|
* Human-friendly agent name shown to users.
|
|
210
215
|
*/
|
|
211
216
|
display_name: string;
|
|
212
|
-
/**
|
|
213
|
-
* Domain expertise or operating context for the agent.
|
|
214
|
-
*/
|
|
215
|
-
domain_expertise: string;
|
|
216
217
|
/**
|
|
217
218
|
* Default effort level for this agent's runs.
|
|
218
219
|
*/
|
|
@@ -235,6 +236,10 @@ export interface AgentUpdateResponse {
|
|
|
235
236
|
output_schema: {
|
|
236
237
|
[key: string]: unknown;
|
|
237
238
|
} | null;
|
|
239
|
+
/**
|
|
240
|
+
* Skill or operating context for the agent.
|
|
241
|
+
*/
|
|
242
|
+
skill: string;
|
|
238
243
|
/**
|
|
239
244
|
* Source guidance for the agent.
|
|
240
245
|
*/
|
|
@@ -381,10 +386,6 @@ export declare namespace AgentListResponse {
|
|
|
381
386
|
* Human-friendly agent name shown to users.
|
|
382
387
|
*/
|
|
383
388
|
display_name: string;
|
|
384
|
-
/**
|
|
385
|
-
* Domain expertise or operating context for the agent.
|
|
386
|
-
*/
|
|
387
|
-
domain_expertise: string;
|
|
388
389
|
/**
|
|
389
390
|
* Default effort level for this agent's runs.
|
|
390
391
|
*/
|
|
@@ -407,6 +408,10 @@ export declare namespace AgentListResponse {
|
|
|
407
408
|
output_schema: {
|
|
408
409
|
[key: string]: unknown;
|
|
409
410
|
} | null;
|
|
411
|
+
/**
|
|
412
|
+
* Skill or operating context for the agent.
|
|
413
|
+
*/
|
|
414
|
+
skill: string;
|
|
410
415
|
/**
|
|
411
416
|
* Source guidance for the agent.
|
|
412
417
|
*/
|
|
@@ -535,10 +540,6 @@ export interface AgentGetResponse {
|
|
|
535
540
|
* Human-friendly agent name shown to users.
|
|
536
541
|
*/
|
|
537
542
|
display_name: string;
|
|
538
|
-
/**
|
|
539
|
-
* Domain expertise or operating context for the agent.
|
|
540
|
-
*/
|
|
541
|
-
domain_expertise: string;
|
|
542
543
|
/**
|
|
543
544
|
* Default effort level for this agent's runs.
|
|
544
545
|
*/
|
|
@@ -561,6 +562,10 @@ export interface AgentGetResponse {
|
|
|
561
562
|
output_schema: {
|
|
562
563
|
[key: string]: unknown;
|
|
563
564
|
} | null;
|
|
565
|
+
/**
|
|
566
|
+
* Skill or operating context for the agent.
|
|
567
|
+
*/
|
|
568
|
+
skill: string;
|
|
564
569
|
/**
|
|
565
570
|
* Source guidance for the agent.
|
|
566
571
|
*/
|
|
@@ -671,6 +676,67 @@ export declare namespace AgentGetResponse {
|
|
|
671
676
|
question: string;
|
|
672
677
|
}
|
|
673
678
|
}
|
|
679
|
+
export interface AgentRunResponse {
|
|
680
|
+
/**
|
|
681
|
+
* Run identifier, format "task*run*{uuid}".
|
|
682
|
+
*/
|
|
683
|
+
id: string;
|
|
684
|
+
/**
|
|
685
|
+
* When the run was created.
|
|
686
|
+
*/
|
|
687
|
+
created_at: string;
|
|
688
|
+
/**
|
|
689
|
+
* Effort level used for the run.
|
|
690
|
+
*/
|
|
691
|
+
effort: 'low' | 'medium' | 'high' | 'x-high' | 'max';
|
|
692
|
+
/**
|
|
693
|
+
* Interaction ID.
|
|
694
|
+
*/
|
|
695
|
+
interaction_id: string;
|
|
696
|
+
/**
|
|
697
|
+
* True while status is 'queued' or 'running'.
|
|
698
|
+
*/
|
|
699
|
+
is_active: boolean;
|
|
700
|
+
/**
|
|
701
|
+
* Current run status.
|
|
702
|
+
*/
|
|
703
|
+
status: 'queued' | 'running' | 'completed' | 'failed' | 'cancelled';
|
|
704
|
+
/**
|
|
705
|
+
* Web Search Agent instance this run belongs to.
|
|
706
|
+
*/
|
|
707
|
+
web_search_agent_id: string;
|
|
708
|
+
/**
|
|
709
|
+
* When the run completed.
|
|
710
|
+
*/
|
|
711
|
+
completed_at?: string | null;
|
|
712
|
+
/**
|
|
713
|
+
* Error details when the run failed.
|
|
714
|
+
*/
|
|
715
|
+
error?: AgentRunResponse.Error | null;
|
|
716
|
+
/**
|
|
717
|
+
* Prompt submitted for the run.
|
|
718
|
+
*/
|
|
719
|
+
prompt?: string | null;
|
|
720
|
+
/**
|
|
721
|
+
* When the run started executing.
|
|
722
|
+
*/
|
|
723
|
+
started_at?: string | null;
|
|
724
|
+
}
|
|
725
|
+
export declare namespace AgentRunResponse {
|
|
726
|
+
/**
|
|
727
|
+
* Error details when the run failed.
|
|
728
|
+
*/
|
|
729
|
+
interface Error {
|
|
730
|
+
/**
|
|
731
|
+
* Human-readable error description.
|
|
732
|
+
*/
|
|
733
|
+
message: string;
|
|
734
|
+
/**
|
|
735
|
+
* Reference ID (equals the run id).
|
|
736
|
+
*/
|
|
737
|
+
ref_id: string;
|
|
738
|
+
}
|
|
739
|
+
}
|
|
674
740
|
export interface AgentCreateParams {
|
|
675
741
|
/**
|
|
676
742
|
* Stable agent name.
|
|
@@ -684,10 +750,6 @@ export interface AgentCreateParams {
|
|
|
684
750
|
* Human-friendly agent name shown to users.
|
|
685
751
|
*/
|
|
686
752
|
display_name?: string | null;
|
|
687
|
-
/**
|
|
688
|
-
* Domain expertise or operating context for the agent.
|
|
689
|
-
*/
|
|
690
|
-
domain_expertise?: string | null;
|
|
691
753
|
/**
|
|
692
754
|
* Default effort level for this agent's runs.
|
|
693
755
|
*/
|
|
@@ -710,6 +772,10 @@ export interface AgentCreateParams {
|
|
|
710
772
|
output_schema?: {
|
|
711
773
|
[key: string]: unknown;
|
|
712
774
|
} | null;
|
|
775
|
+
/**
|
|
776
|
+
* Skill or operating context for the agent.
|
|
777
|
+
*/
|
|
778
|
+
skill?: string | null;
|
|
713
779
|
/**
|
|
714
780
|
* Source guidance for the agent.
|
|
715
781
|
*/
|
|
@@ -803,9 +869,120 @@ export interface AgentListParams {
|
|
|
803
869
|
offset?: number;
|
|
804
870
|
workspace_id?: string | null;
|
|
805
871
|
}
|
|
872
|
+
export interface AgentRunParams {
|
|
873
|
+
/**
|
|
874
|
+
* User prompt or task instructions for the run.
|
|
875
|
+
*/
|
|
876
|
+
input: string;
|
|
877
|
+
/**
|
|
878
|
+
* Stable agent name. On this no-agent-id route, an unseen name creates a new
|
|
879
|
+
* agent; an existing name reuses it. Ignored on the /{agent_id}/runs route.
|
|
880
|
+
*/
|
|
881
|
+
agent_name?: string | null;
|
|
882
|
+
/**
|
|
883
|
+
* Canonical effort tier names for the research graph.
|
|
884
|
+
*/
|
|
885
|
+
effort?: 'low' | 'medium' | 'high' | 'x-high' | 'max' | null;
|
|
886
|
+
/**
|
|
887
|
+
* Whether to stream run events when supported.
|
|
888
|
+
*/
|
|
889
|
+
enable_events?: boolean;
|
|
890
|
+
/**
|
|
891
|
+
* Existing records to ENRICH: a list of partial rows, or a single object,
|
|
892
|
+
* mirroring output_schema's shape.
|
|
893
|
+
*/
|
|
894
|
+
input_data?: Array<{
|
|
895
|
+
[key: string]: unknown;
|
|
896
|
+
}> | {
|
|
897
|
+
[key: string]: unknown;
|
|
898
|
+
} | null;
|
|
899
|
+
/**
|
|
900
|
+
* Origin of public API runs. Public requests are always API-originated.
|
|
901
|
+
*/
|
|
902
|
+
origin?: 'api';
|
|
903
|
+
/**
|
|
904
|
+
* JSON schema overriding the agent's default structured output for this run.
|
|
905
|
+
*/
|
|
906
|
+
output_schema?: {
|
|
907
|
+
[key: string]: unknown;
|
|
908
|
+
} | null;
|
|
909
|
+
/**
|
|
910
|
+
* Previous interaction identifier used to continue a conversation.
|
|
911
|
+
*/
|
|
912
|
+
previous_interaction_id?: string | null;
|
|
913
|
+
/**
|
|
914
|
+
* Skill override for this run. One-time only, except when this run creates a new
|
|
915
|
+
* agent via agent_name, in which case it becomes the new agent's stored skill.
|
|
916
|
+
*/
|
|
917
|
+
skill?: string | null;
|
|
918
|
+
/**
|
|
919
|
+
* Source guidance overriding the agent default.
|
|
920
|
+
*/
|
|
921
|
+
sources?: AgentRunParams.Sources | null;
|
|
922
|
+
/**
|
|
923
|
+
* Only settable when this run creates a new agent (via agent_name, or when no
|
|
924
|
+
* agent is resolved), in which case it becomes the new agent's stored use_case.
|
|
925
|
+
* For a run against an existing agent, this must match the agent's own use_case —
|
|
926
|
+
* passing the same value is accepted as a no-op, a different value is rejected.
|
|
927
|
+
*/
|
|
928
|
+
use_case?: 'research' | 'enrichment' | 'dataset_building' | null;
|
|
929
|
+
}
|
|
930
|
+
export declare namespace AgentRunParams {
|
|
931
|
+
/**
|
|
932
|
+
* Source guidance overriding the agent default.
|
|
933
|
+
*/
|
|
934
|
+
interface Sources {
|
|
935
|
+
/**
|
|
936
|
+
* Source groups the agent is allowed to use.
|
|
937
|
+
*/
|
|
938
|
+
allow?: Array<Sources.Allow>;
|
|
939
|
+
/**
|
|
940
|
+
* Free-text guidance describing sources or domains to avoid.
|
|
941
|
+
*/
|
|
942
|
+
avoid?: string | null;
|
|
943
|
+
/**
|
|
944
|
+
* Source groups the agent should not use.
|
|
945
|
+
*/
|
|
946
|
+
block?: Array<Sources.Block>;
|
|
947
|
+
/**
|
|
948
|
+
* Free-text guidance describing sources or domains to prioritize.
|
|
949
|
+
*/
|
|
950
|
+
prioritize?: string | null;
|
|
951
|
+
}
|
|
952
|
+
namespace Sources {
|
|
953
|
+
interface Allow {
|
|
954
|
+
/**
|
|
955
|
+
* Domains included in this source group.
|
|
956
|
+
*/
|
|
957
|
+
domains: Array<string>;
|
|
958
|
+
/**
|
|
959
|
+
* Source group title.
|
|
960
|
+
*/
|
|
961
|
+
title: string;
|
|
962
|
+
/**
|
|
963
|
+
* Zero-based source group position.
|
|
964
|
+
*/
|
|
965
|
+
order?: number;
|
|
966
|
+
}
|
|
967
|
+
interface Block {
|
|
968
|
+
/**
|
|
969
|
+
* Domains included in this source group.
|
|
970
|
+
*/
|
|
971
|
+
domains: Array<string>;
|
|
972
|
+
/**
|
|
973
|
+
* Source group title.
|
|
974
|
+
*/
|
|
975
|
+
title: string;
|
|
976
|
+
/**
|
|
977
|
+
* Zero-based source group position.
|
|
978
|
+
*/
|
|
979
|
+
order?: number;
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
}
|
|
806
983
|
export declare namespace Agents {
|
|
807
|
-
export { type AgentCreateResponse as AgentCreateResponse, type AgentUpdateResponse as AgentUpdateResponse, type AgentListResponse as AgentListResponse, type AgentGetResponse as AgentGetResponse, type AgentCreateParams as AgentCreateParams, type AgentUpdateParams as AgentUpdateParams, type AgentListParams as AgentListParams, };
|
|
984
|
+
export { type AgentCreateResponse as AgentCreateResponse, type AgentUpdateResponse as AgentUpdateResponse, type AgentListResponse as AgentListResponse, type AgentGetResponse as AgentGetResponse, type AgentRunResponse as AgentRunResponse, type AgentCreateParams as AgentCreateParams, type AgentUpdateParams as AgentUpdateParams, type AgentListParams as AgentListParams, type AgentRunParams as AgentRunParams, };
|
|
808
985
|
export { Templates as Templates, type TemplateListResponse as TemplateListResponse, type TemplateGetResponse as TemplateGetResponse, type TemplateListParams as TemplateListParams, };
|
|
809
|
-
export { Runs as Runs, type RunCreateResponse as RunCreateResponse, type RunListResponse as RunListResponse, type RunGetResponse as RunGetResponse, type RunResultResponse as RunResultResponse, type RunCreateParams as RunCreateParams, type RunListParams as RunListParams, type RunGetParams as RunGetParams, type RunResultParams as RunResultParams, type RunStreamEventsParams as RunStreamEventsParams, };
|
|
986
|
+
export { Runs as Runs, type RunCreateResponse as RunCreateResponse, type RunListResponse as RunListResponse, type RunGetResponse as RunGetResponse, type RunResultResponse as RunResultResponse, type RunStreamEventsResponse as RunStreamEventsResponse, type RunCreateParams as RunCreateParams, type RunListParams as RunListParams, type RunGetParams as RunGetParams, type RunResultParams as RunResultParams, type RunStreamEventsParams as RunStreamEventsParams, };
|
|
810
987
|
}
|
|
811
988
|
//# sourceMappingURL=agents.d.ts.map
|