@narrative.io/data-collaboration-sdk-ts 4.7.0 → 4.8.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/build/agents/types.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export type RunId = string;
|
|
|
16
16
|
export type ClientOpId = string;
|
|
17
17
|
export type ConversationVersion = number;
|
|
18
18
|
export type ToolUseId = string;
|
|
19
|
-
export type AgentModel = "anthropic.claude-haiku-4.5" | "anthropic.claude-sonnet-4.5" | "anthropic.claude-sonnet-4.6" | "anthropic.claude-sonnet-5.0" | "anthropic.claude-opus-4.5" | "anthropic.claude-opus-4.6" | "anthropic.claude-opus-4.7" | "anthropic.claude-opus-4.8" | "anthropic.claude-opus-5.0" | "openai.gpt-oss-120b" | "openai.gpt-4.1" | "openai.o4-mini" | (string & {});
|
|
19
|
+
export type AgentModel = "anthropic.claude-haiku-4.5" | "anthropic.claude-sonnet-4.5" | "anthropic.claude-sonnet-4.6" | "anthropic.claude-sonnet-5.0" | "anthropic.claude-opus-4.5" | "anthropic.claude-opus-4.6" | "anthropic.claude-opus-4.7" | "anthropic.claude-opus-4.8" | "anthropic.claude-opus-5.0" | "anthropic.claude-opus-5.5" | "openai.gpt-oss-120b" | "openai.gpt-4.1" | "openai.o4-mini" | (string & {});
|
|
20
20
|
export type ExecutionCluster = "shared" | "dedicated";
|
|
21
21
|
/** Subset of JSON Schema Draft 2020-12 accepted by Bedrock structured output. */
|
|
22
22
|
export type JsonSchemaObject = Record<string, unknown>;
|
|
@@ -15,6 +15,7 @@ type IsDeclaredModel<M extends string> = [Extract<AgentModel, M>] extends [
|
|
|
15
15
|
export type HasSonnet50 = AssertTrue<IsDeclaredModel<"anthropic.claude-sonnet-5.0">>;
|
|
16
16
|
export type HasOpus47 = AssertTrue<IsDeclaredModel<"anthropic.claude-opus-4.7">>;
|
|
17
17
|
export type HasOpus48 = AssertTrue<IsDeclaredModel<"anthropic.claude-opus-4.8">>;
|
|
18
|
+
export type HasOpus55 = AssertTrue<IsDeclaredModel<"anthropic.claude-opus-5.5">>;
|
|
18
19
|
export type HasSonnet46 = AssertTrue<IsDeclaredModel<"anthropic.claude-sonnet-4.6">>;
|
|
19
20
|
export type HasHaiku45 = AssertTrue<IsDeclaredModel<"anthropic.claude-haiku-4.5">>;
|
|
20
21
|
export type HasGpt41 = AssertTrue<IsDeclaredModel<"openai.gpt-4.1">>;
|