@theokit/sdk 2.19.0 → 2.21.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 +123 -0
- package/dist/a2a/index.cjs +611 -274
- package/dist/a2a/index.cjs.map +1 -1
- package/dist/a2a/index.js +612 -275
- package/dist/a2a/index.js.map +1 -1
- package/dist/a2a/types.d.cts +7 -0
- package/dist/a2a/types.d.ts +7 -0
- package/dist/agent-builder.d.ts +2 -1
- package/dist/agent-generate.d.ts +12 -0
- package/dist/client/index.cjs.map +1 -1
- package/dist/client/index.d.cts +5 -0
- package/dist/client/index.d.ts +5 -0
- package/dist/client/index.js.map +1 -1
- package/dist/client/theokit-client.d.cts +6 -0
- package/dist/client/theokit-client.d.ts +6 -0
- package/dist/client/types.d.cts +2 -0
- package/dist/client/types.d.ts +2 -0
- package/dist/create-skill.d.ts +29 -0
- package/dist/{cron-D_wK1S-0.d.cts → cron-YrmsszEN.d.cts} +110 -3
- package/dist/{cron-Cep07kTz.d.ts → cron-dpvtRoro.d.ts} +110 -3
- package/dist/cron.cjs +660 -370
- package/dist/cron.cjs.map +1 -1
- package/dist/cron.d.cts +3 -2
- package/dist/cron.d.ts +3 -2
- package/dist/cron.js +661 -371
- package/dist/cron.js.map +1 -1
- package/dist/{errors-5lj1EWgs.d.ts → errors-C4vZPqXf.d.ts} +2 -2
- package/dist/{errors-CE-lMBi2.d.cts → errors-DrcpYVfZ.d.cts} +2 -2
- package/dist/errors.d.cts +3 -2
- package/dist/eval.cjs +660 -370
- package/dist/eval.cjs.map +1 -1
- package/dist/eval.js +660 -370
- package/dist/eval.js.map +1 -1
- package/dist/generate-object.d.ts +19 -4
- package/dist/index.cjs +867 -371
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +274 -16
- package/dist/index.d.ts +274 -16
- package/dist/index.js +863 -373
- package/dist/index.js.map +1 -1
- package/dist/internal/agent-loop/loop-types.d.ts +2 -0
- package/dist/internal/agent-loop/tool-result-guard.d.ts +1 -0
- package/dist/internal/llm/tool-result-content.d.ts +40 -0
- package/dist/internal/llm/types.d.ts +6 -1
- package/dist/internal/persistence/conversation-storage-fs.d.cts +3 -1
- package/dist/internal/persistence/conversation-storage-fs.d.ts +3 -1
- package/dist/internal/persistence/conversation-storage-memory.d.cts +3 -1
- package/dist/internal/persistence/conversation-storage-memory.d.ts +3 -1
- package/dist/internal/persistence/session-meta.d.cts +13 -0
- package/dist/internal/persistence/session-meta.d.ts +13 -0
- package/dist/internal/runtime/model-selection.d.ts +14 -0
- package/dist/internal/structured-output-helpers.d.ts +1 -1
- package/dist/permission-engine.d.ts +32 -1
- package/dist/{run-BgfBWX-z.d.cts → run-BMo8yRwK.d.cts} +262 -19
- package/dist/{run-BgfBWX-z.d.ts → run-BMo8yRwK.d.ts} +262 -19
- package/dist/stream-object.d.ts +2 -1
- package/dist/tool-error.d.ts +30 -0
- package/dist/types/agent-prims.d.ts +10 -8
- package/dist/types/agent.d.ts +22 -1
- package/dist/types/content-blocks.d.ts +47 -0
- package/dist/types/conversation-storage.d.ts +38 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/messages.d.ts +2 -9
- package/dist/types/run-events.d.ts +84 -0
- package/dist/types/run.d.ts +115 -1
- package/dist/types/session.d.ts +99 -0
- package/dist/types/workflow.d.ts +7 -0
- package/dist/workflow.cjs +7 -2
- package/dist/workflow.cjs.map +1 -1
- package/dist/workflow.d.cts +2 -0
- package/dist/workflow.d.ts +2 -0
- package/dist/workflow.js +7 -2
- package/dist/workflow.js.map +1 -1
- package/package.json +3 -23
- package/dist/internal/observability/context.d.cts +0 -23
- package/dist/internal/observability/context.d.ts +0 -23
- package/dist/internal/observability/index.cjs +0 -38
- package/dist/internal/observability/index.cjs.map +0 -1
- package/dist/internal/observability/index.d.cts +0 -8
- package/dist/internal/observability/index.d.ts +0 -8
- package/dist/internal/observability/index.js +0 -33
- package/dist/internal/observability/index.js.map +0 -1
- package/dist/internal/plugins/index.cjs +0 -363
- package/dist/internal/plugins/index.cjs.map +0 -1
- package/dist/internal/plugins/index.js +0 -357
- package/dist/internal/plugins/index.js.map +0 -1
- package/dist/internal/workflow/index.d.ts +0 -12
- package/dist/server/adapter/index.d.cts +0 -8
- package/dist/server/adapter/index.d.ts +0 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { ZodType } from "zod";
|
|
2
|
-
import type { LocalOptions, ModelSelection } from "./types/agent.js";
|
|
1
|
+
import type { z as ZodNamespace, ZodType } from "zod";
|
|
2
|
+
import type { AgentOptions, LocalOptions, ModelSelection, SDKAgent } from "./types/agent.js";
|
|
3
3
|
import type { ProviderRoutingSettings } from "./types/providers.js";
|
|
4
4
|
/**
|
|
5
5
|
* Options accepted by {@link Agent.generateObject}. Returns a typed object
|
|
@@ -14,8 +14,16 @@ export interface GenerateObjectOptions<T extends ZodType> {
|
|
|
14
14
|
prompt: string;
|
|
15
15
|
/** Optional system prompt steering the model. */
|
|
16
16
|
systemPrompt?: string;
|
|
17
|
-
/** Model selection. Required (transient agents need a model).
|
|
18
|
-
|
|
17
|
+
/** Model selection. Required (transient agents need a model). SE8 — accepts a
|
|
18
|
+
* bare-string id shorthand (`"openai/gpt-4o-mini"`) or a {@link ModelSelection}. */
|
|
19
|
+
model: string | ModelSelection;
|
|
20
|
+
/**
|
|
21
|
+
* M21 — optional separate model for the STRUCTURING step. When set, `model` first produces a
|
|
22
|
+
* free-text reasoned answer to the prompt (phase 1), then `structuringModel` extracts the
|
|
23
|
+
* schema-matched object by calling the `output` tool over that answer (phase 2). Lets a large
|
|
24
|
+
* model reason while a cheap fast model does the extraction. Absent ⇒ today's single-model flow.
|
|
25
|
+
*/
|
|
26
|
+
structuringModel?: string | ModelSelection;
|
|
19
27
|
/** API key. Falls back to env (THEOKIT_API_KEY etc). */
|
|
20
28
|
apiKey?: string;
|
|
21
29
|
/** Local runtime config (cwd, sandbox). Required to keep the transient agent local-only. */
|
|
@@ -76,3 +84,10 @@ export declare class GenerateObjectError extends Error {
|
|
|
76
84
|
readonly cause?: unknown;
|
|
77
85
|
constructor(code: "no_tool_call" | "parse_failed", message: string, cause?: unknown);
|
|
78
86
|
}
|
|
87
|
+
interface GenerateObjectDeps {
|
|
88
|
+
create: (options: AgentOptions) => Promise<SDKAgent>;
|
|
89
|
+
/** Hard-delete the transient agent from the registry after dispose. */
|
|
90
|
+
delete: (agentId: string) => Promise<void>;
|
|
91
|
+
}
|
|
92
|
+
export declare function generateObjectImpl<T extends ZodType>(options: GenerateObjectOptions<T>, deps: GenerateObjectDeps): Promise<GenerateObjectResult<ZodNamespace.infer<T>>>;
|
|
93
|
+
export {};
|