@anvia/studio 1.0.0-rc.1 → 1.0.0-rc.2
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 +18 -10
- package/dist/index.d.ts +30 -55
- package/dist/index.js +610 -338
- package/dist/index.js.map +1 -1
- package/dist/ui/assets/{ArrowClockwise.es-yNj_oSyD.js → ArrowClockwise.es-DMJj7Hv0.js} +2 -2
- package/dist/ui/assets/{ArrowClockwise.es-yNj_oSyD.js.map → ArrowClockwise.es-DMJj7Hv0.js.map} +1 -1
- package/dist/ui/assets/{agents-page-ucKNS0fS.js → agents-page-CbQpO3Tg.js} +2 -2
- package/dist/ui/assets/{agents-page-ucKNS0fS.js.map → agents-page-CbQpO3Tg.js.map} +1 -1
- package/dist/ui/assets/{badge-RJJoRC4P.js → badge-BIWy1K8W.js} +1 -1
- package/dist/ui/assets/{badge-RJJoRC4P.js.map → badge-BIWy1K8W.js.map} +1 -1
- package/dist/ui/assets/index-DizotQot.js +119 -0
- package/dist/ui/assets/index-DizotQot.js.map +1 -0
- package/dist/ui/assets/{input-BOUv3rgO.js → input-BTHDDFpv.js} +1 -1
- package/dist/ui/assets/{input-BOUv3rgO.js.map → input-BTHDDFpv.js.map} +1 -1
- package/dist/ui/assets/{knowledge-page-vwFOGhkh.js → knowledge-page-C8zg8uTL.js} +2 -2
- package/dist/ui/assets/{knowledge-page-vwFOGhkh.js.map → knowledge-page-C8zg8uTL.js.map} +1 -1
- package/dist/ui/assets/{mcps-page-Bsu_-w7A.js → mcps-page-gNYeqSPB.js} +2 -2
- package/dist/ui/assets/{mcps-page-Bsu_-w7A.js.map → mcps-page-gNYeqSPB.js.map} +1 -1
- package/dist/ui/assets/{memory-page-DJ_nq7Ip.js → memory-page-BLrfOqyU.js} +4 -4
- package/dist/ui/assets/memory-page-BLrfOqyU.js.map +1 -0
- package/dist/ui/assets/pipelines-page-hTEhFZGg.js +8 -0
- package/dist/ui/assets/pipelines-page-hTEhFZGg.js.map +1 -0
- package/dist/ui/assets/{renderers-5kT5HxmZ.js → renderers-DC_-TD_X.js} +3 -3
- package/dist/ui/assets/{renderers-5kT5HxmZ.js.map → renderers-DC_-TD_X.js.map} +1 -1
- package/dist/ui/assets/{sandboxes-page-BQuQepXk.js → sandboxes-page-DtPnuza7.js} +2 -2
- package/dist/ui/assets/{sandboxes-page-BQuQepXk.js.map → sandboxes-page-DtPnuza7.js.map} +1 -1
- package/dist/ui/assets/{sessions-page-BLGrHrQT.js → sessions-page-DBzoP7MV.js} +2 -2
- package/dist/ui/assets/{sessions-page-BLGrHrQT.js.map → sessions-page-DBzoP7MV.js.map} +1 -1
- package/dist/ui/assets/{status-page-D-BUKV_r.js → status-page-Bf1lq444.js} +2 -2
- package/dist/ui/assets/{status-page-D-BUKV_r.js.map → status-page-Bf1lq444.js.map} +1 -1
- package/dist/ui/assets/tool-runner-BbUlfPEO.js +2 -0
- package/dist/ui/assets/{tool-runner-6-N-OOCI.js.map → tool-runner-BbUlfPEO.js.map} +1 -1
- package/dist/ui/assets/{tools-page-BEQJgFX0.js → tools-page-BgUz-79v.js} +2 -2
- package/dist/ui/assets/{tools-page-BEQJgFX0.js.map → tools-page-BgUz-79v.js.map} +1 -1
- package/dist/ui/assets/trace-browser-qfYPcdR2.js +10 -0
- package/dist/ui/assets/trace-browser-qfYPcdR2.js.map +1 -0
- package/dist/ui/assets/{transcript-item-Bbf77TZa.js → transcript-item-HFuuqmKM.js} +3 -3
- package/dist/ui/assets/{transcript-item-Bbf77TZa.js.map → transcript-item-HFuuqmKM.js.map} +1 -1
- package/dist/ui/index.html +1 -2
- package/package.json +12 -11
- package/dist/ui/assets/chunk-ADH7NNCS-DM6fsnDI.js +0 -2
- package/dist/ui/assets/chunk-ADH7NNCS-DM6fsnDI.js.map +0 -1
- package/dist/ui/assets/index-DIV9J1_T.js +0 -56
- package/dist/ui/assets/index-DIV9J1_T.js.map +0 -1
- package/dist/ui/assets/memory-page-DJ_nq7Ip.js.map +0 -1
- package/dist/ui/assets/pipelines-page-BsHeSdbO.js +0 -8
- package/dist/ui/assets/pipelines-page-BsHeSdbO.js.map +0 -1
- package/dist/ui/assets/tool-runner-6-N-OOCI.js +0 -2
- package/dist/ui/assets/trace-browser-DdGcJyNX.js +0 -10
- package/dist/ui/assets/trace-browser-DdGcJyNX.js.map +0 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ const client = new OpenAIClient({
|
|
|
29
29
|
|
|
30
30
|
const agent = new Agent({
|
|
31
31
|
id: "support",
|
|
32
|
-
model: client.completionModel(),
|
|
32
|
+
model: client.completionModel({ modelId: "gpt-5", api: "responses" }),
|
|
33
33
|
name: "Support",
|
|
34
34
|
description: "Answers support questions.",
|
|
35
35
|
instructions: "Answer support questions clearly.",
|
|
@@ -61,7 +61,7 @@ const anthropic = new AnthropicClient({ apiKey: process.env.ANTHROPIC_API_KEY })
|
|
|
61
61
|
|
|
62
62
|
const agent = new Agent({
|
|
63
63
|
id: "support",
|
|
64
|
-
model: openai.completionModel("gpt-5"),
|
|
64
|
+
model: openai.completionModel({ modelId: "gpt-5", api: "responses" }),
|
|
65
65
|
name: "Support",
|
|
66
66
|
instructions: "Answer support questions clearly.",
|
|
67
67
|
});
|
|
@@ -72,8 +72,9 @@ new Studio([agent], {
|
|
|
72
72
|
{
|
|
73
73
|
id: "openai",
|
|
74
74
|
name: "OpenAI",
|
|
75
|
-
|
|
76
|
-
createCompletionModel: (
|
|
75
|
+
defaultModelId: "gpt-5",
|
|
76
|
+
createCompletionModel: ({ modelId }) =>
|
|
77
|
+
openai.completionModel({ modelId, api: "responses" }),
|
|
77
78
|
listModels: () => openai.listModels(),
|
|
78
79
|
models: [
|
|
79
80
|
{
|
|
@@ -85,14 +86,14 @@ new Studio([agent], {
|
|
|
85
86
|
{
|
|
86
87
|
id: "anthropic",
|
|
87
88
|
name: "Anthropic",
|
|
88
|
-
|
|
89
|
-
createCompletionModel: (
|
|
89
|
+
defaultModelId: "claude-sonnet-4-20250514",
|
|
90
|
+
createCompletionModel: ({ modelId }) => anthropic.completionModel({ modelId }),
|
|
90
91
|
},
|
|
91
92
|
],
|
|
92
93
|
agents: {
|
|
93
94
|
support: {
|
|
94
|
-
|
|
95
|
-
allowed: ["openai:*", "anthropic:claude-sonnet-4-20250514"],
|
|
95
|
+
defaultModelRef: { providerId: "openai", modelId: "gpt-5" },
|
|
96
|
+
allowed: ["openai:*", { providerId: "anthropic", modelId: "claude-sonnet-4-20250514" }],
|
|
96
97
|
},
|
|
97
98
|
},
|
|
98
99
|
},
|
|
@@ -104,8 +105,11 @@ also select a model per run:
|
|
|
104
105
|
|
|
105
106
|
```json
|
|
106
107
|
{
|
|
107
|
-
"
|
|
108
|
-
"model":
|
|
108
|
+
"messages": [{ "role": "user", "content": "Summarize this ticket" }],
|
|
109
|
+
"model": {
|
|
110
|
+
"providerId": "anthropic",
|
|
111
|
+
"modelId": "claude-sonnet-4-20250514"
|
|
112
|
+
},
|
|
109
113
|
"stream": true
|
|
110
114
|
}
|
|
111
115
|
```
|
|
@@ -124,6 +128,10 @@ Studio exposes:
|
|
|
124
128
|
- Status dashboard for storage adapters, record counts, and enabled capabilities
|
|
125
129
|
- Knowledge tabs for static context, dynamic context, dynamic tools, and retrieval log
|
|
126
130
|
|
|
131
|
+
Studio reads MCP provenance directly from `Agent.mcpServers`. Prefixes configured by an
|
|
132
|
+
`McpClient` remain visible in both the MCP inspector and direct tool runner, while the remote tool
|
|
133
|
+
name stays available on the typed MCP registration.
|
|
134
|
+
|
|
127
135
|
## Session Storage
|
|
128
136
|
|
|
129
137
|
Studio uses an in-memory store by default. Sessions, traces, and pipeline run history are available while the process is running, but they do not create local files unless you pass an explicit SQLite store. If you omit the port, Studio uses `RUNNER_PORT` and then falls back to `4021`.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Hono } from 'hono';
|
|
2
2
|
import { AgentObserver, AgentRunStartArgs, AgentRunObserver } from '@anvia/core/observability';
|
|
3
3
|
import { AgentResponse, AgentStreamEvent, Agent } from '@anvia/core/agent';
|
|
4
|
-
import { Message, JsonObject, JsonValue, CompletionModelCapabilities,
|
|
4
|
+
import { Message, JsonObject, JsonValue, CompletionModelCapabilities, ToolResultContentPart, Usage, CompletionModel, StreamingCompletionModel } from '@anvia/core/completion';
|
|
5
|
+
import { MemoryStore, MemoryAppendOptions, MemoryErrorOptions, MemoryScope } from '@anvia/core/memory';
|
|
5
6
|
import { ModelList } from '@anvia/core/model-listing';
|
|
6
7
|
import { Pipeline, PipelineGraph } from '@anvia/core/pipeline';
|
|
7
8
|
|
|
@@ -9,6 +10,7 @@ declare function traceSummary(trace: StudioTrace): StudioTraceSummary;
|
|
|
9
10
|
|
|
10
11
|
type StudioCapability = "agents" | "approvals" | "evals" | "memory" | "knowledge" | "mcps" | "observability" | "pipelines" | "sandboxes" | "sessions" | "status" | "tools" | "traces";
|
|
11
12
|
type AgentTraceInfo = {
|
|
13
|
+
observer: string;
|
|
12
14
|
traceId?: string | undefined;
|
|
13
15
|
observationId?: string | undefined;
|
|
14
16
|
};
|
|
@@ -16,15 +18,14 @@ type AgentTraceOptions = {
|
|
|
16
18
|
name?: string | undefined;
|
|
17
19
|
userId?: string | undefined;
|
|
18
20
|
sessionId?: string | undefined;
|
|
19
|
-
metadata?:
|
|
21
|
+
metadata?: JsonObject | undefined;
|
|
20
22
|
tags?: string[] | undefined;
|
|
21
23
|
version?: string | undefined;
|
|
22
24
|
traceId?: string | undefined;
|
|
23
|
-
failOnObserverError?: boolean | undefined;
|
|
24
25
|
};
|
|
25
|
-
type StudioModelRef =
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
type StudioModelRef = {
|
|
27
|
+
providerId: string;
|
|
28
|
+
modelId: string;
|
|
28
29
|
};
|
|
29
30
|
type StudioModelModality = "text" | "image" | "document" | "audio" | "video";
|
|
30
31
|
type StudioModelModalities = {
|
|
@@ -42,19 +43,23 @@ type StudioModelDefinition = {
|
|
|
42
43
|
type StudioModelProvider = {
|
|
43
44
|
id: string;
|
|
44
45
|
name?: string;
|
|
45
|
-
|
|
46
|
+
defaultModelId?: string;
|
|
46
47
|
models?: StudioModelDefinition[];
|
|
47
|
-
createCompletionModel(
|
|
48
|
-
|
|
48
|
+
createCompletionModel(options: {
|
|
49
|
+
modelId: string;
|
|
50
|
+
}): CompletionModel | StreamingCompletionModel;
|
|
51
|
+
listModels?: (options?: {
|
|
52
|
+
abortSignal?: AbortSignal | undefined;
|
|
53
|
+
}) => Promise<ModelList>;
|
|
49
54
|
metadata?: JsonObject;
|
|
50
55
|
};
|
|
51
56
|
type StudioAgentModelPolicy = {
|
|
52
|
-
|
|
57
|
+
defaultModelRef?: StudioModelRef;
|
|
53
58
|
allowed?: Array<StudioModelRef | `${string}:*`>;
|
|
54
59
|
};
|
|
55
60
|
type StudioModelConfig = {
|
|
56
61
|
providers: StudioModelProvider[];
|
|
57
|
-
|
|
62
|
+
defaultModelRef?: StudioModelRef;
|
|
58
63
|
agents?: Record<string, StudioAgentModelPolicy>;
|
|
59
64
|
};
|
|
60
65
|
type StudioModelSummary = StudioModelDefinition & {
|
|
@@ -65,23 +70,23 @@ type StudioModelSummary = StudioModelDefinition & {
|
|
|
65
70
|
type StudioModelProviderConfig = {
|
|
66
71
|
id: string;
|
|
67
72
|
name?: string;
|
|
68
|
-
|
|
73
|
+
defaultModelId?: string;
|
|
69
74
|
models: StudioModelSummary[];
|
|
70
75
|
metadata?: JsonObject;
|
|
71
76
|
warning?: string;
|
|
72
77
|
};
|
|
73
78
|
type StudioAgentModelPolicyConfig = {
|
|
74
|
-
|
|
79
|
+
defaultModelRef?: string;
|
|
75
80
|
allowed?: string[];
|
|
76
81
|
};
|
|
77
82
|
type StudioModelsConfig = {
|
|
78
83
|
providers: StudioModelProviderConfig[];
|
|
79
|
-
|
|
84
|
+
defaultModelRef?: string;
|
|
80
85
|
agents: Record<string, StudioAgentModelPolicyConfig>;
|
|
81
86
|
};
|
|
82
87
|
type StudioAgentModelsSummary = {
|
|
83
88
|
agentId: string;
|
|
84
|
-
|
|
89
|
+
defaultModelRef?: string;
|
|
85
90
|
models: StudioModelSummary[];
|
|
86
91
|
warnings?: JsonObject[];
|
|
87
92
|
};
|
|
@@ -148,7 +153,7 @@ type StudioEvalSuite<Input = any, _Output = any, _Expected = any> = {
|
|
|
148
153
|
metrics: any[];
|
|
149
154
|
concurrency?: number;
|
|
150
155
|
reporters?: any[];
|
|
151
|
-
|
|
156
|
+
reporterErrorPolicy?: "collect" | "throw";
|
|
152
157
|
id?: string;
|
|
153
158
|
description?: string;
|
|
154
159
|
metadata?: JsonObject;
|
|
@@ -353,7 +358,7 @@ type StudioTranscriptToolEntry = {
|
|
|
353
358
|
callId?: string;
|
|
354
359
|
args?: string;
|
|
355
360
|
result?: string;
|
|
356
|
-
structuredResult?:
|
|
361
|
+
structuredResult?: readonly ToolResultContentPart[];
|
|
357
362
|
childEvents?: StudioTranscriptChildAgentEvent[];
|
|
358
363
|
approval?: StudioToolApprovalTranscript;
|
|
359
364
|
question?: StudioToolQuestionTranscript;
|
|
@@ -377,7 +382,7 @@ type StudioTranscriptChildAgentEvent = {
|
|
|
377
382
|
callId?: string;
|
|
378
383
|
args?: string;
|
|
379
384
|
result?: string;
|
|
380
|
-
structuredResult?:
|
|
385
|
+
structuredResult?: readonly ToolResultContentPart[];
|
|
381
386
|
};
|
|
382
387
|
type StudioTranscriptEntry = StudioTranscriptChatEntry | StudioTranscriptReasoningEntry | StudioTranscriptToolEntry;
|
|
383
388
|
type StudioSessionSummary = {
|
|
@@ -440,29 +445,10 @@ type StudioSessionLogListOptions = {
|
|
|
440
445
|
limit: number;
|
|
441
446
|
after?: number;
|
|
442
447
|
};
|
|
443
|
-
type
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
};
|
|
448
|
-
type StudioMemoryAppendInput = {
|
|
449
|
-
context: StudioMemoryContext;
|
|
450
|
-
runId: string;
|
|
451
|
-
turn: number;
|
|
452
|
-
messages: Message[];
|
|
453
|
-
};
|
|
454
|
-
type StudioMemoryErrorInput = {
|
|
455
|
-
context: StudioMemoryContext;
|
|
456
|
-
runId: string;
|
|
457
|
-
error: unknown;
|
|
458
|
-
messages: Message[];
|
|
459
|
-
};
|
|
460
|
-
type StudioMemoryStore = {
|
|
461
|
-
load(context: StudioMemoryContext): Promise<Message[]>;
|
|
462
|
-
append(input: StudioMemoryAppendInput): Promise<void>;
|
|
463
|
-
clear(context: StudioMemoryContext): Promise<void>;
|
|
464
|
-
recordError?(input: StudioMemoryErrorInput): Promise<void>;
|
|
465
|
-
};
|
|
448
|
+
type StudioMemoryScope = MemoryScope;
|
|
449
|
+
type StudioMemoryAppendOptions = MemoryAppendOptions;
|
|
450
|
+
type StudioMemoryErrorOptions = MemoryErrorOptions;
|
|
451
|
+
type StudioMemoryStore = MemoryStore;
|
|
466
452
|
type StudioSessionStore = StudioMemoryStore & {
|
|
467
453
|
readonly kind?: string;
|
|
468
454
|
listSessions(options: StudioSessionListOptions): StudioSessionSummary[] | Promise<StudioSessionSummary[]>;
|
|
@@ -547,7 +533,7 @@ type StudioKnowledgeSourceSummary = {
|
|
|
547
533
|
count: number;
|
|
548
534
|
registrationIndex?: number;
|
|
549
535
|
topK?: number;
|
|
550
|
-
|
|
536
|
+
minScore?: number;
|
|
551
537
|
inspectable?: boolean;
|
|
552
538
|
itemCount?: number;
|
|
553
539
|
};
|
|
@@ -927,18 +913,7 @@ type StudioPipelineRunResponse = {
|
|
|
927
913
|
output: JsonValue;
|
|
928
914
|
};
|
|
929
915
|
type AgentRunRequest = {
|
|
930
|
-
|
|
931
|
-
history?: Message[];
|
|
932
|
-
sessionId?: string;
|
|
933
|
-
stream?: boolean;
|
|
934
|
-
maxTurns?: number;
|
|
935
|
-
toolConcurrency?: number;
|
|
936
|
-
model?: StudioModelRef;
|
|
937
|
-
metadata?: JsonObject;
|
|
938
|
-
trace?: AgentTraceOptions;
|
|
939
|
-
};
|
|
940
|
-
type AgentRunUIRequest = {
|
|
941
|
-
messages: Message[];
|
|
916
|
+
messages: readonly Message[];
|
|
942
917
|
sessionId?: string;
|
|
943
918
|
stream?: boolean;
|
|
944
919
|
maxTurns?: number;
|
|
@@ -1000,4 +975,4 @@ declare function createSqliteSessionStore(options?: SqliteSessionStoreOptions):
|
|
|
1000
975
|
|
|
1001
976
|
declare function createInMemoryStudioStore(): StudioSessionStore & StudioTraceStore & StudioPipelineLogStore & StudioPipelineRunStore;
|
|
1002
977
|
|
|
1003
|
-
export { type AgentRunRequest, type AgentRunResponse, type AgentRunStreamEvent, type
|
|
978
|
+
export { type AgentRunRequest, type AgentRunResponse, type AgentRunStreamEvent, type AgentTraceInfo, type AgentTraceOptions, type AnviaStudio, type SqliteSessionStoreOptions, Studio, type StudioAgent, type StudioAgentConfig, type StudioAgentKnowledgeConfig, type StudioAgentMcpServerMetadata, type StudioAgentMcpToolMetadata, type StudioAgentMcpsSummary, type StudioAgentModelPolicy, type StudioAgentModelPolicyConfig, type StudioAgentModelsSummary, type StudioAgentRuntimeSummary, type StudioAgentToolApprovalMetadata, type StudioAgentToolMetadata, type StudioAgentToolSource, type StudioAgentToolsSummary, type StudioCapability, type StudioCapabilityConfig, type StudioConfig, type StudioErrorCode, type StudioErrorResponse, type StudioEvalCasePreview, type StudioEvalMetricSummary, type StudioEvalRunRequest, type StudioEvalRunResponse, type StudioEvalSuite, type StudioEvalSuiteConfig, type StudioKnowledgeEvidence, type StudioKnowledgeEvidenceDocument, type StudioKnowledgeItem, type StudioKnowledgeItemKind, type StudioKnowledgeItemsPage, type StudioKnowledgeSourceKind, type StudioKnowledgeSourceSummary, type StudioKnowledgeSummary, type StudioMemoryAppendOptions, type StudioMemoryConversationMessages, type StudioMemoryConversationSteps, type StudioMemoryConversationSummary, type StudioMemoryConversationsPage, type StudioMemoryErrorOptions, type StudioMemoryMessageRecord, type StudioMemoryScope, type StudioMemorySourceConversationMessages, type StudioMemorySourceConversationSteps, type StudioMemorySourceConversationSummary, type StudioMemorySourceConversationsPage, type StudioMemorySourceKind, type StudioMemorySourceSummary, type StudioMemorySourceUsersPage, type StudioMemorySourcesPage, type StudioMemoryStore, type StudioMemoryUserSummary, type StudioMemoryUsersPage, type StudioModelConfig, type StudioModelDefinition, type StudioModelModalities, type StudioModelModality, type StudioModelProvider, type StudioModelProviderConfig, type StudioModelRef, type StudioModelSummary, type StudioModelsConfig, type StudioObservabilityEvent, type StudioObservabilityEventType, type StudioOptions, type StudioPipeline, type StudioPipelineConfig, type StudioPipelineDetail, type StudioPipelineFinalEvent, type StudioPipelineLogAppendInput, type StudioPipelineLogCategory, type StudioPipelineLogEntry, type StudioPipelineLogEvent, type StudioPipelineLogLevel, type StudioPipelineLogListOptions, type StudioPipelineLogStore, type StudioPipelineReplayRequest, type StudioPipelineRunGetOptions, type StudioPipelineRunListOptions, type StudioPipelineRunRecord, type StudioPipelineRunRequest, type StudioPipelineRunResponse, type StudioPipelineRunSaveInput, type StudioPipelineRunStatus, type StudioPipelineRunStore, type StudioSandboxCapabilities, type StudioSandboxFileEntry, type StudioSandboxFileType, type StudioSandboxFilesResponse, type StudioSandboxPort, type StudioSandboxPortsResponse, type StudioSandboxProcess, type StudioSandboxProcessLogsResponse, type StudioSandboxProcessStatus, type StudioSandboxProcessesResponse, type StudioSandboxSummary, type StudioSandboxesSummary, type StudioServeLifecycleOptions, type StudioServeOptions, type StudioSession, type StudioSessionCreateInput, type StudioSessionListOptions, type StudioSessionLogAppendInput, type StudioSessionLogCategory, type StudioSessionLogEntry, type StudioSessionLogEvent, type StudioSessionLogLevel, type StudioSessionLogListOptions, type StudioSessionRunStatus, type StudioSessionRunTranscriptInput, type StudioSessionStore, type StudioSessionSummary, type StudioSessionTraceListOptions, type StudioStaticKnowledgeDocument, type StudioStatusSummary, type StudioStores, type StudioTarget, type StudioToolApproval, type StudioToolApprovalDecision, type StudioToolApprovalRequestEvent, type StudioToolApprovalResultEvent, type StudioToolApprovalStatus, type StudioToolApprovalTranscript, type StudioToolQuestion, type StudioToolQuestionAnswer, type StudioToolQuestionChoice, type StudioToolQuestionPrompt, type StudioToolQuestionRequestEvent, type StudioToolQuestionResultEvent, type StudioToolQuestionStatus, type StudioToolQuestionTranscript, type StudioToolRunRequest, type StudioToolRunResponse, type StudioTrace, type StudioTraceListOptions, type StudioTraceObservation, type StudioTraceObservationKind, StudioTraceObserver, type StudioTraceObserverOptions, type StudioTraceStatus, type StudioTraceStore, type StudioTraceSummary, type StudioTranscriptAttachment, type StudioTranscriptChatEntry, type StudioTranscriptChildAgentEvent, type StudioTranscriptEntry, type StudioTranscriptReasoningEntry, type StudioTranscriptToolEntry, type StudioUiOptions, createInMemoryStudioStore, createSqliteSessionStore, traceSummary };
|