diff --git a/.codegraph/.gitignore b/.codegraph/.gitignore new file mode 100644 index 0000000000..d20c0fe4bd --- /dev/null +++ b/.codegraph/.gitignore @@ -0,0 +1,5 @@ +# CodeGraph data files — local to each machine, not for committing. +# Ignore everything in .codegraph/ except this file itself, so transient +# files (the database, daemon.pid, sockets, logs) never show up in git. +* +!.gitignore diff --git a/integrations/mastra/typescript/src/__tests__/abort.test.ts b/integrations/mastra/typescript/src/__tests__/abort.test.ts new file mode 100644 index 0000000000..d922d9bc68 --- /dev/null +++ b/integrations/mastra/typescript/src/__tests__/abort.test.ts @@ -0,0 +1,52 @@ +import { describe, expect, it } from "vitest"; +import { MastraAgent } from "../mastra"; +import { FakeLocalAgent, makeInput } from "./helpers"; + +describe("abortRun()", () => { + it("aborts the per-run signal passed to a local Mastra agent stream", async () => { + const fakeAgent = new FakeLocalAgent(); + let capturedSignal: AbortSignal | undefined; + let resolveStreamStarted!: () => void; + let resolveStream!: () => void; + const streamStarted = new Promise((resolve) => { + resolveStreamStarted = resolve; + }); + const releaseStream = new Promise((resolve) => { + resolveStream = resolve; + }); + + fakeAgent.stream = async (_messages: any, opts?: any) => { + capturedSignal = opts?.abortSignal; + resolveStreamStarted(); + return { + fullStream: (async function* () { + await releaseStream; + yield { type: "finish", payload: {} }; + })(), + }; + }; + + const agent = new MastraAgent({ + agentId: "test-agent", + agent: fakeAgent as any, + resourceId: "resource-1", + }); + + const runFinished = new Promise((resolve, reject) => { + agent.run(makeInput()).subscribe({ + error: reject, + complete: resolve, + }); + }); + + await streamStarted; + expect(capturedSignal).toBeInstanceOf(AbortSignal); + expect(capturedSignal?.aborted).toBe(false); + + agent.abortRun(); + + expect(capturedSignal?.aborted).toBe(true); + resolveStream(); + await runFinished; + }); +}); diff --git a/integrations/mastra/typescript/src/__tests__/edge-cases.test.ts b/integrations/mastra/typescript/src/__tests__/edge-cases.test.ts index e63d84c5a2..7d43302196 100644 --- a/integrations/mastra/typescript/src/__tests__/edge-cases.test.ts +++ b/integrations/mastra/typescript/src/__tests__/edge-cases.test.ts @@ -681,6 +681,43 @@ describe("event emission details (fake-only)", () => { warnSpy.mockRestore(); }); + it("treats abort chunks as a terminal stream boundary without warning", async () => { + const warnSpy = vi.spyOn(console, "warn").mockImplementation(() => {}); + + const agent = makeLocalMastraAgent({ + streamChunks: [ + { type: "text-delta", payload: { text: "before" } }, + { type: "abort" }, + { type: "text-delta", payload: { text: "after" } }, + { type: "finish", payload: { finishReason: "stop" } }, + ], + }); + + const events = await collectEvents(agent, makeInput()); + + expect(events.some((e) => e.type === EventType.RUN_FINISHED)).toBe(true); + const joinedText = events + .filter( + (e): e is TextMessageChunkEvent => + e.type === EventType.TEXT_MESSAGE_CHUNK, + ) + .map((e) => e.delta ?? "") + .join(""); + expect(joinedText).toContain("before"); + expect(joinedText).not.toContain("after"); + + const warnedTypes = warnSpy.mock.calls.map((c) => String(c[0])); + expect( + warnedTypes.some( + (m) => + m.includes("Unrecognized stream chunk type") && + m.includes("abort"), + ), + ).toBe(false); + + warnSpy.mockRestore(); + }); + it("warns at most once per payload-less chunk type (no log flood)", async () => { const warnSpy = vi.spyOn(console, "warn").mockImplementation(() => {}); diff --git a/integrations/mastra/typescript/src/__tests__/helpers.ts b/integrations/mastra/typescript/src/__tests__/helpers.ts index 361fe69fd5..18b1f57b45 100644 --- a/integrations/mastra/typescript/src/__tests__/helpers.ts +++ b/integrations/mastra/typescript/src/__tests__/helpers.ts @@ -79,6 +79,10 @@ export class FakeLocalAgent { return this.memory; } + async listTools(_opts?: any) { + return {}; + } + async stream(messages: any, opts?: any) { this.lastStreamMessages = messages; this.lastStreamOpts = opts; diff --git a/integrations/mastra/typescript/src/__tests__/local-stream-hooks.test.ts b/integrations/mastra/typescript/src/__tests__/local-stream-hooks.test.ts new file mode 100644 index 0000000000..c26ef64d61 --- /dev/null +++ b/integrations/mastra/typescript/src/__tests__/local-stream-hooks.test.ts @@ -0,0 +1,99 @@ +import { describe, expect, it, vi } from "vitest"; +import { MastraAgent } from "../mastra"; +import { + FakeLocalAgent, + FakeRemoteAgent, + collectEvents, + makeInput, +} from "./helpers"; +import { getLocalAgent, getLocalAgents } from "../utils"; + +const finishChunks = [{ type: "finish", payload: {} }]; + +describe("local Mastra stream hooks", () => { + it("forwards Mastra prepareStep and lifecycle hooks", async () => { + const prepareStep = vi.fn(); + const onFinish = vi.fn(); + const onStepFinish = vi.fn(); + const fake = new FakeLocalAgent({ streamChunks: finishChunks }); + const agent = new MastraAgent({ + agentId: "test-agent", + agent: fake as any, + prepareStep, + onFinish, + onStepFinish, + }); + + await collectEvents(agent, makeInput()); + + expect(fake.lastStreamOpts?.prepareStep).toBe(prepareStep); + expect(fake.lastStreamOpts?.onFinish).toBe(onFinish); + expect(fake.lastStreamOpts?.onStepFinish).toBe(onStepFinish); + }); + + it("does not forward in-process callbacks to remote agents", async () => { + const fake = new FakeRemoteAgent({ streamChunks: finishChunks }); + const agent = new MastraAgent({ + agentId: "test-agent", + agent: fake as any, + prepareStep: vi.fn(), + onFinish: vi.fn(), + onStepFinish: vi.fn(), + }); + + await collectEvents(agent, makeInput()); + + expect(fake.lastStreamOpts).not.toHaveProperty("prepareStep"); + expect(fake.lastStreamOpts).not.toHaveProperty("onFinish"); + expect(fake.lastStreamOpts).not.toHaveProperty("onStepFinish"); + }); + + it("getLocalAgent exposes and forwards the hooks", async () => { + const prepareStep = vi.fn(); + const onFinish = vi.fn(); + const onStepFinish = vi.fn(); + const fake = new FakeLocalAgent({ streamChunks: finishChunks }); + const mastra = { getAgent: vi.fn(() => fake) } as any; + const agent = getLocalAgent({ + mastra, + agentId: "test-agent", + resourceId: "resource-1", + prepareStep, + onFinish, + onStepFinish, + }) as MastraAgent; + + await collectEvents(agent, makeInput()); + + expect(fake.lastStreamOpts?.prepareStep).toBe(prepareStep); + expect(fake.lastStreamOpts?.onFinish).toBe(onFinish); + expect(fake.lastStreamOpts?.onStepFinish).toBe(onStepFinish); + }); + + it("getLocalAgents exposes and forwards the hooks to each agent", async () => { + const prepareStep = vi.fn(); + const onFinish = vi.fn(); + const onStepFinish = vi.fn(); + const first = new FakeLocalAgent({ streamChunks: finishChunks }); + const second = new FakeLocalAgent({ streamChunks: finishChunks }); + const mastra = { + listAgents: vi.fn(() => ({ first, second })), + } as any; + const agents = getLocalAgents({ + mastra, + resourceId: "resource-1", + prepareStep, + onFinish, + onStepFinish, + }); + + await collectEvents(agents.first as MastraAgent, makeInput()); + await collectEvents(agents.second as MastraAgent, makeInput()); + + for (const fake of [first, second]) { + expect(fake.lastStreamOpts?.prepareStep).toBe(prepareStep); + expect(fake.lastStreamOpts?.onFinish).toBe(onFinish); + expect(fake.lastStreamOpts?.onStepFinish).toBe(onStepFinish); + } + }); +}); diff --git a/integrations/mastra/typescript/src/mastra.ts b/integrations/mastra/typescript/src/mastra.ts index b588d1674b..ebda8595ef 100644 --- a/integrations/mastra/typescript/src/mastra.ts +++ b/integrations/mastra/typescript/src/mastra.ts @@ -24,7 +24,10 @@ import type { ToolCallStartEvent, } from "@ag-ui/client"; import { AbstractAgent, EventType } from "@ag-ui/client"; -import type { Agent as LocalMastraAgent } from "@mastra/core/agent"; +import type { + Agent as LocalMastraAgent, + AgentExecutionOptions, +} from "@mastra/core/agent"; import { RequestContext } from "@mastra/core/request-context"; import { randomUUID } from "@ag-ui/client"; import jsonpatch from "fast-json-patch"; @@ -338,6 +341,18 @@ export interface MastraAgentConfig extends AgentConfig { agent: LocalMastraAgent | RemoteMastraAgent; resourceId?: string; requestContext?: RequestContext; + /** + * Local agents only. Runs before every Mastra agent step and may adjust that + * step's model, tool choice, active tools, messages, or workspace. + * + * This is an in-process callback and is intentionally not forwarded to + * RemoteMastraAgent, where functions cannot cross the HTTP boundary. + */ + prepareStep?: AgentExecutionOptions["prepareStep"]; + /** Local agents only. Called when the Mastra agent execution completes. */ + onFinish?: AgentExecutionOptions["onFinish"]; + /** Local agents only. Called after each Mastra agent execution step. */ + onStepFinish?: AgentExecutionOptions["onStepFinish"]; /** * Forward Mastra tracing options into the run's `agent.stream(...)` (and the * resume path). Chiefly lets a caller inject a self-chosen `traceId` so the @@ -565,6 +580,9 @@ export class MastraAgent extends AbstractAgent { untilIdle?: boolean | { maxIdleMs?: number }; observationalMemory?: boolean; tracingOptions?: MastraTracingOptions; + prepareStep?: AgentExecutionOptions["prepareStep"]; + onFinish?: AgentExecutionOptions["onFinish"]; + onStepFinish?: AgentExecutionOptions["onStepFinish"]; public headers?: Record; /** See MastraAgentConfig.emitInterruptOutcome. Default true. */ emitInterruptOutcome: boolean; @@ -574,6 +592,7 @@ export class MastraAgent extends AbstractAgent { remoteClient?: MastraClient; /** See MastraAgentConfig.useProcessedFinalText. Default false. */ useProcessedFinalText: boolean; + private activeAbortController?: AbortController; /** * Suffix appended to a turn's base (Mastra-stored) messageId to key the @@ -601,6 +620,9 @@ export class MastraAgent extends AbstractAgent { requestContext, untilIdle, tracingOptions, + prepareStep, + onFinish, + onStepFinish, emitInterruptOutcome, a2ui, remoteClient, @@ -619,6 +641,9 @@ export class MastraAgent extends AbstractAgent { this.useProcessedFinalText = useProcessedFinalText ?? false; this.observationalMemory = observationalMemory; this.tracingOptions = tracingOptions; + this.prepareStep = prepareStep; + this.onFinish = onFinish; + this.onStepFinish = onStepFinish; } public clone() { @@ -657,6 +682,14 @@ export class MastraAgent extends AbstractAgent { const pendingInterrupts: Interrupt[] = []; return new Observable((subscriber) => { + const abortController = new AbortController(); + this.activeAbortController = abortController; + const clearActiveAbortController = () => { + if (this.activeAbortController === abortController) { + this.activeAbortController = undefined; + } + }; + const run = async () => { const runStartedEvent: RunStartedEvent = { type: EventType.RUN_STARTED, @@ -763,6 +796,9 @@ export class MastraAgent extends AbstractAgent { }, requestContext: resumeRequestContext, }; + if (this.isLocalMastraAgent(this.agent)) { + resumeOptions.abortSignal = abortController.signal; + } if (this.tracingOptions) { resumeOptions.tracingOptions = this.tracingOptions; } @@ -921,38 +957,56 @@ export class MastraAgent extends AbstractAgent { pendingInterrupts, ); - await this.streamMastraAgent(input, { - ...streamCallbacks, - onError: (error) => { - subscriber.error(error); - }, - onRunFinished: async (traceId) => { - await this.emitWorkingMemorySnapshot(subscriber, input.threadId); - subscriber.next( - this.makeRunFinishedEvent( + await this.streamMastraAgent( + input, + { + ...streamCallbacks, + onError: (error) => { + subscriber.error(error); + }, + onRunFinished: async (traceId) => { + await this.emitWorkingMemorySnapshot( + subscriber, input.threadId, - input.runId, - pendingInterrupts, - traceId, - ), - ); - subscriber.complete(); + ); + subscriber.next( + this.makeRunFinishedEvent( + input.threadId, + input.runId, + pendingInterrupts, + traceId, + ), + ); + subscriber.complete(); + }, }, - }); + abortController.signal, + ); } catch (error) { subscriber.error(error); } }; - run().catch((err) => { - if (subscriber.closed) return; - subscriber.error(err); - }); + run() + .catch((err) => { + if (subscriber.closed) return; + subscriber.error(err); + }) + .finally(clearActiveAbortController); - return () => {}; + return () => { + abortController.abort(); + clearActiveAbortController(); + }; }); } + override abortRun(): void { + this.activeAbortController?.abort(); + this.activeAbortController = undefined; + super.abortRun(); + } + isLocalMastraAgent( agent: LocalMastraAgent | RemoteMastraAgent, ): agent is LocalMastraAgent { @@ -1433,6 +1487,7 @@ export class MastraAgent extends AbstractAgent { toolName: string; args: any; } | null = null; + let streamAborted = false; // Tool calls for which we have emitted TOOL_CALL_START via the streaming // (delta) path, and (separately) for which we have emitted TOOL_CALL_END. const streamedStarted = new Set(); @@ -1820,6 +1875,14 @@ export class MastraAgent extends AbstractAgent { }; const handleChunk = (chunk: any): boolean => { + if (streamAborted) return false; + + if (chunk?.type === "abort") { + streamAborted = true; + flush(); + return false; + } + // Observational Memory data parts arrive on fullStream as // `{ type: "data-om-*", data: {...} }` (no `payload`). Handle them before // the payload guard below so they map to activity when surfacing is on, @@ -2612,6 +2675,7 @@ export class MastraAgent extends AbstractAgent { onError, onRunFinished, }: MastraAgentStreamOptions, + abortSignal?: AbortSignal, ): Promise { const clientTools = tools.reduce( (acc, tool) => { @@ -2710,6 +2774,7 @@ export class MastraAgent extends AbstractAgent { clientTools, requestContext, ...(a2uiToolsets ? { toolsets: a2uiToolsets } : {}), + ...(abortSignal ? { abortSignal } : {}), }; // Pipe the background-task lifecycle into this run's fullStream (and // re-enter the loop on completion) when opted in. Only meaningful for @@ -2721,6 +2786,15 @@ export class MastraAgent extends AbstractAgent { if (this.tracingOptions) { streamOptions.tracingOptions = this.tracingOptions; } + if (this.prepareStep) { + streamOptions.prepareStep = this.prepareStep; + } + if (this.onFinish) { + streamOptions.onFinish = this.onFinish; + } + if (this.onStepFinish) { + streamOptions.onStepFinish = this.onStepFinish; + } if (this.headers && Object.keys(this.headers).length > 0) { streamOptions.modelSettings = { ...((streamOptions.modelSettings as diff --git a/integrations/mastra/typescript/src/utils.ts b/integrations/mastra/typescript/src/utils.ts index 305a878276..df5588c9c8 100644 --- a/integrations/mastra/typescript/src/utils.ts +++ b/integrations/mastra/typescript/src/utils.ts @@ -8,7 +8,10 @@ import { AbstractAgent } from "@ag-ui/client"; import { MastraClient } from "@mastra/client-js"; import type { Mastra } from "@mastra/core"; import type { CoreMessage } from "@mastra/core/llm"; -import { Agent as LocalMastraAgent } from "@mastra/core/agent"; +import { + Agent as LocalMastraAgent, + type AgentExecutionOptions, +} from "@mastra/core/agent"; import { RequestContext } from "@mastra/core/request-context"; import { MastraAgent, MastraTracingOptions } from "./mastra"; @@ -258,6 +261,12 @@ export interface GetLocalAgentsOptions { observationalMemory?: boolean | string[]; /** Mastra tracing options forwarded to each run. See MastraAgentConfig.tracingOptions. */ tracingOptions?: MastraTracingOptions; + /** Local-only Mastra callback forwarded to every agent run. */ + prepareStep?: AgentExecutionOptions["prepareStep"]; + /** Local-only Mastra callback forwarded to every agent run. */ + onFinish?: AgentExecutionOptions["onFinish"]; + /** Local-only Mastra callback forwarded to every agent run. */ + onStepFinish?: AgentExecutionOptions["onStepFinish"]; } export function getLocalAgents({ @@ -267,6 +276,9 @@ export function getLocalAgents({ untilIdle, observationalMemory, tracingOptions, + prepareStep, + onFinish, + onStepFinish, }: GetLocalAgentsOptions): Record { const agents = mastra.listAgents() || {}; @@ -291,6 +303,9 @@ export function getLocalAgents({ ? true : undefined, tracingOptions, + prepareStep, + onFinish, + onStepFinish, }); return acc; }, @@ -307,6 +322,12 @@ export interface GetLocalAgentOptions { requestContext?: RequestContext; /** Mastra tracing options forwarded to the run. See MastraAgentConfig.tracingOptions. */ tracingOptions?: MastraTracingOptions; + /** Local-only Mastra callback forwarded to the run. */ + prepareStep?: AgentExecutionOptions["prepareStep"]; + /** Local-only Mastra callback forwarded to the run. */ + onFinish?: AgentExecutionOptions["onFinish"]; + /** Local-only Mastra callback forwarded to the run. */ + onStepFinish?: AgentExecutionOptions["onStepFinish"]; } export function getLocalAgent({ @@ -315,6 +336,9 @@ export function getLocalAgent({ resourceId, requestContext, tracingOptions, + prepareStep, + onFinish, + onStepFinish, }: GetLocalAgentOptions) { const agent = mastra.getAgent(agentId); if (!agent) { @@ -326,6 +350,9 @@ export function getLocalAgent({ resourceId, requestContext, tracingOptions, + prepareStep, + onFinish, + onStepFinish, }) as AbstractAgent; } diff --git a/sdks/community/dart/test/client/config_test.dill b/sdks/community/dart/test/client/config_test.dill index 4434cf7284..e9e0ea7a16 100644 Binary files a/sdks/community/dart/test/client/config_test.dill and b/sdks/community/dart/test/client/config_test.dill differ diff --git a/sdks/community/java/examples/copilot-app/src/app/favicon.ico b/sdks/community/java/examples/copilot-app/src/app/favicon.ico index 718d6fea48..34d8ac757c 100644 Binary files a/sdks/community/java/examples/copilot-app/src/app/favicon.ico and b/sdks/community/java/examples/copilot-app/src/app/favicon.ico differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp index c209e78ecd..9e42a21b20 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp index b2dfe3d1ba..b6ca90749b 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp index 4f0f1d64e5..093094e80f 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp index 62b611da08..acb4b1a748 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp index 948a3070fe..7cafaf78bf 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp index 1b9a6956b3..1457001a99 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp index 28d4b77f9f..fba5dcf506 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp index 9287f50836..d2f6e79728 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp index aa7d6427e6..1c94e009f5 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp index 9126ae37cb..f2143ae6f5 100644 Binary files a/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp and b/sdks/community/kotlin/examples/chatapp/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.01.Request.Client.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.01.Request.Client.NET.verified.json deleted file mode 100644 index 13ddd2b8c7..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.01.Request.Client.NET.verified.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "role": "user", - "contents": [ - { - "$type": "text", - "text": "Two things, please: (1) what city am I in right now, and (2) what\u0027s the weather in Paris? Call get_user_location for #1 and get_weather for #2." - } - ] - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.02.Request.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.02.Request.Client.AGUI.verified.json deleted file mode 100644 index 0949587f4b..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.02.Request.Client.AGUI.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "messages": [ - { - "role": "user", - "content": "Two things, please: (1) what city am I in right now, and (2) what\u0027s the weather in Paris? Call get_user_location for #1 and get_weather for #2." - } - ], - "tools": [ - { - "name": "get_user_location", - "description": "Gets the user\u0027s current city via GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.03.Request.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.03.Request.Server.AGUI.verified.json deleted file mode 100644 index 0949587f4b..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.03.Request.Server.AGUI.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "messages": [ - { - "role": "user", - "content": "Two things, please: (1) what city am I in right now, and (2) what\u0027s the weather in Paris? Call get_user_location for #1 and get_weather for #2." - } - ], - "tools": [ - { - "name": "get_user_location", - "description": "Gets the user\u0027s current city via GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.04.Request.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.04.Request.Server.NET.verified.json deleted file mode 100644 index 64eb82141f..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.04.Request.Server.NET.verified.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "messages": [ - { - "role": "user", - "contents": [ - { - "$type": "text", - "text": "Two things, please: (1) what city am I in right now, and (2) what\u0027s the weather in Paris? Call get_user_location for #1 and get_weather for #2." - } - ] - } - ], - "options": { - "tools": [ - { - "type": "DefaultAIFunctionDeclaration", - "name": "get_user_location", - "description": "Gets the user\u0027s current city via GPS." - }, - { - "type": "ReflectionAIFunction", - "name": "get_weather", - "description": "Gets the current weather for a given city." - } - ] - } -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.05.Response.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.05.Response.Server.NET.verified.json deleted file mode 100644 index 6ad772fc41..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.05.Response.Server.NET.verified.json +++ /dev/null @@ -1,121 +0,0 @@ -[ - { - "contents": [], - "responseId": "", - "messageId": "", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "finishReason": "tool_calls", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "usage", - "details": { - "inputTokenCount": 184, - "outputTokenCount": 116, - "cachedInputTokenCount": 0, - "reasoningTokenCount": 64, - "additionalCounts": { - "InputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AcceptedPredictionTokenCount": 0, - "OutputTokenDetails.RejectedPredictionTokenCount": 0 - } - } - } - ], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "finishReason": "tool_calls", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.06.Response.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.06.Response.Server.AGUI.verified.json deleted file mode 100644 index 062bad0fde..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.06.Response.Server.AGUI.verified.json +++ /dev/null @@ -1,195 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_1", - "toolCallName": "get_user_location", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_1", - "delta": "{}", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_2", - "toolCallName": "get_weather", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_2", - "delta": "{\n \u0022city\u0022: \u0022Paris\u0022\n}", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_2", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.07.Response.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.07.Response.Client.AGUI.verified.json deleted file mode 100644 index 84c76c87bf..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.07.Response.Client.AGUI.verified.json +++ /dev/null @@ -1,243 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_1", - "toolCallName": "get_user_location", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_1", - "delta": "{}", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_2", - "toolCallName": "get_weather", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_2", - "delta": "{\u0022city\u0022:\u0022Paris\u0022}", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_2", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.08.Response.Client.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.08.Response.Client.NET.verified.json deleted file mode 100644 index 40f719b55e..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_01.08.Response.Client.NET.verified.json +++ /dev/null @@ -1,1398 +0,0 @@ -[ - { - "role": "assistant", - "contents": [], - "additionalProperties": { - "agui_thread_id": "thread_Id_1" - }, - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": true, - "callId": "call_Id_1", - "additionalProperties": {} - } - ], - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_2", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [], - "responseId": "run_Id_1", - "finishReason": "stop", - "rawRepresentation": { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "Tokyo, Japan", - "callId": "call_Id_1" - } - ], - "responseId": "guid_Id_1", - "messageId": "guid_Id_1" - }, - { - "role": "assistant", - "contents": [], - "additionalProperties": { - "agui_thread_id": "thread_Id_1" - }, - "responseId": "run_Id_2", - "rawRepresentation": { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_2" - } - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "\u0022Paris: 18C, rainy\u0022", - "callId": "call_Id_2" - } - ], - "responseId": "run_Id_2", - "rawRepresentation": { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_2", - "toolCallId": "call_Id_2", - "content": "\u0022Paris: 18C, rainy\u0022", - "rawEvent": { - "authorName": null, - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "Paris: 18C, rainy", - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "guid_Id_2", - "messageId": "guid_Id_2", - "conversationId": null, - "finishReason": null, - "modelId": null, - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "1" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "1", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Your" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Your", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Your", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " current", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Tokyo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Japan" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Japan", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Japan", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "2" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "2", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Weather" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Weather", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Weather", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Paris", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0C", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rainy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Would" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Would", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Would", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " like", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " forecast" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " forecast", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " forecast", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " more" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " more", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " more", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " details" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " details", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " details", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " either" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " either", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " either", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " location" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " location", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " location", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "?" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "?", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "?", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [], - "responseId": "run_Id_2", - "finishReason": "stop", - "rawRepresentation": { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "outcome": { - "type": "success" - } - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.02.Request.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.02.Request.Client.AGUI.verified.json deleted file mode 100644 index 9bc3315fb4..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.02.Request.Client.AGUI.verified.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "messages": [ - { - "role": "user", - "content": "Two things, please: (1) what city am I in right now, and (2) what\u0027s the weather in Paris? Call get_user_location for #1 and get_weather for #2." - }, - { - "role": "assistant", - "toolCalls": [ - { - "id": "call_Id_1", - "type": "function", - "function": { - "name": "get_user_location", - "arguments": "{}" - } - }, - { - "id": "call_Id_2", - "type": "function", - "function": { - "name": "get_weather", - "arguments": "{\u0022city\u0022:\u0022Paris\u0022}" - } - } - ] - }, - { - "role": "tool", - "content": "\u0022Tokyo, Japan\u0022", - "toolCallId": "call_Id_1", - "id": "call_Id_1" - } - ], - "tools": [ - { - "name": "get_user_location", - "description": "Gets the user\u0027s current city via GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.03.Request.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.03.Request.Server.AGUI.verified.json deleted file mode 100644 index 9bc3315fb4..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.03.Request.Server.AGUI.verified.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "messages": [ - { - "role": "user", - "content": "Two things, please: (1) what city am I in right now, and (2) what\u0027s the weather in Paris? Call get_user_location for #1 and get_weather for #2." - }, - { - "role": "assistant", - "toolCalls": [ - { - "id": "call_Id_1", - "type": "function", - "function": { - "name": "get_user_location", - "arguments": "{}" - } - }, - { - "id": "call_Id_2", - "type": "function", - "function": { - "name": "get_weather", - "arguments": "{\u0022city\u0022:\u0022Paris\u0022}" - } - } - ] - }, - { - "role": "tool", - "content": "\u0022Tokyo, Japan\u0022", - "toolCallId": "call_Id_1", - "id": "call_Id_1" - } - ], - "tools": [ - { - "name": "get_user_location", - "description": "Gets the user\u0027s current city via GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.04.Request.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.04.Request.Server.NET.verified.json deleted file mode 100644 index 8493cb5c27..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.04.Request.Server.NET.verified.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "messages": [ - { - "role": "user", - "contents": [ - { - "$type": "text", - "text": "Two things, please: (1) what city am I in right now, and (2) what\u0027s the weather in Paris? Call get_user_location for #1 and get_weather for #2." - } - ] - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_user_location", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - }, - { - "$type": "toolApprovalRequest", - "toolCall": { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - }, - "requestId": "approval_Id_1" - } - ] - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "\u0022Tokyo, Japan\u0022", - "callId": "call_Id_1" - } - ], - "messageId": "call_Id_1" - }, - { - "role": "user", - "contents": [ - { - "$type": "toolApprovalResponse", - "approved": true, - "toolCall": { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": false, - "callId": "call_Id_2" - }, - "requestId": "approval_Id_1" - } - ] - } - ], - "options": { - "tools": [ - { - "type": "ApprovalRequiredAIFunction", - "name": "get_user_location", - "description": "" - }, - { - "type": "ReflectionAIFunction", - "name": "get_weather", - "description": "Gets the current weather for a given city." - } - ] - } -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.05.Response.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.05.Response.Server.NET.verified.json deleted file mode 100644 index 567d7bbf05..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.05.Response.Server.NET.verified.json +++ /dev/null @@ -1,488 +0,0 @@ -[ - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "guid_Id_3", - "messageId": "guid_Id_3" - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "Paris: 18C, rainy", - "callId": "call_Id_2" - } - ], - "responseId": "guid_Id_2", - "messageId": "guid_Id_2" - }, - { - "contents": [], - "responseId": "", - "messageId": "", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "1" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Your" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Japan" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "2" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Weather" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Would" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " forecast" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " more" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " details" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " either" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " location" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "?" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "finishReason": "stop", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "usage", - "details": { - "inputTokenCount": 243, - "outputTokenCount": 172, - "cachedInputTokenCount": 0, - "reasoningTokenCount": 128, - "additionalCounts": { - "InputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AcceptedPredictionTokenCount": 0, - "OutputTokenDetails.RejectedPredictionTokenCount": 0 - } - } - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "finishReason": "stop", - "modelId": "" - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.06.Response.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.06.Response.Server.AGUI.verified.json deleted file mode 100644 index ec9456fe37..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.06.Response.Server.AGUI.verified.json +++ /dev/null @@ -1,632 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_2" - }, - { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_2", - "toolCallId": "call_Id_2", - "content": "\u0022Paris: 18C, rainy\u0022", - "rawEvent": { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "Paris: 18C, rainy", - "callId": "call_Id_2" - } - ], - "responseId": "guid_Id_2", - "messageId": "guid_Id_2" - } - }, - { - "type": "TEXT_MESSAGE_START", - "messageId": "chatcmpl-Id_2", - "role": "assistant", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "1", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "1" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Your", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Your" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " current", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Tokyo", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Japan", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Japan" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "2", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "2" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Weather", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Weather" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Paris", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0C", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rainy", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Would", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Would" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " like", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " forecast", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " forecast" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " more", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " more" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " details", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " details" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " either", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " either" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " location", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " location" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "?", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "?" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_END", - "messageId": "chatcmpl-Id_2" - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.07.Response.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.07.Response.Client.AGUI.verified.json deleted file mode 100644 index cdf711d4e8..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/MixedToolInvocationIntegration/MixedInvocation_TwoTurnFlow_EmitsToolCallsThenServerResults#Turn_02.07.Response.Client.AGUI.verified.json +++ /dev/null @@ -1,885 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_2" - }, - { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_2", - "toolCallId": "call_Id_2", - "content": "\u0022Paris: 18C, rainy\u0022", - "rawEvent": { - "authorName": null, - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "Paris: 18C, rainy", - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "guid_Id_2", - "messageId": "guid_Id_2", - "conversationId": null, - "finishReason": null, - "modelId": null, - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_START", - "messageId": "chatcmpl-Id_2", - "role": "assistant", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "1", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Your", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Your", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " current", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Tokyo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Japan", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Japan", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "2", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Weather", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Weather", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Paris", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0C", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rainy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Would", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Would", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " like", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " forecast", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " forecast", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " more", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " more", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " details", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " details", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " either", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " either", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " location", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " location", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "?", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "?", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_END", - "messageId": "chatcmpl-Id_2" - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.02.Request.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.02.Request.Client.AGUI.verified.json deleted file mode 100644 index 014284f42a..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.02.Request.Client.AGUI.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "messages": [ - { - "role": "user", - "content": "What are some fun things to do near me?" - } - ], - "tools": [ - { - "name": "GetUserLocation", - "description": "Get the user\u0027s current location from GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.03.Request.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.03.Request.Server.AGUI.verified.json deleted file mode 100644 index 014284f42a..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.03.Request.Server.AGUI.verified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "messages": [ - { - "role": "user", - "content": "What are some fun things to do near me?" - } - ], - "tools": [ - { - "name": "GetUserLocation", - "description": "Get the user\u0027s current location from GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.05.Response.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.05.Response.Server.NET.verified.json deleted file mode 100644 index f5ca8a9ac5..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.05.Response.Server.NET.verified.json +++ /dev/null @@ -1,70 +0,0 @@ -[ - { - "contents": [], - "responseId": "", - "messageId": "", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "finishReason": "tool_calls", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "usage", - "details": { - "inputTokenCount": 131, - "outputTokenCount": 85, - "cachedInputTokenCount": 0, - "reasoningTokenCount": 64, - "additionalCounts": { - "InputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AcceptedPredictionTokenCount": 0, - "OutputTokenDetails.RejectedPredictionTokenCount": 0 - } - } - } - ], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "finishReason": "tool_calls", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.06.Response.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.06.Response.Server.AGUI.verified.json deleted file mode 100644 index 4bdebcbed9..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.06.Response.Server.AGUI.verified.json +++ /dev/null @@ -1,78 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_1", - "toolCallName": "GetUserLocation", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_1", - "delta": "{}", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.07.Response.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.07.Response.Client.AGUI.verified.json deleted file mode 100644 index c79d136f17..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.07.Response.Client.AGUI.verified.json +++ /dev/null @@ -1,96 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_1", - "toolCallName": "GetUserLocation", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_1", - "delta": "{}", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.08.Response.Client.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.08.Response.Client.NET.verified.json deleted file mode 100644 index d1489fd56e..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_01.08.Response.Client.NET.verified.json +++ /dev/null @@ -1,19113 +0,0 @@ -[ - { - "role": "assistant", - "contents": [], - "additionalProperties": { - "agui_thread_id": "thread_Id_1" - }, - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": true, - "callId": "call_Id_1", - "additionalProperties": {} - } - ], - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "GetUserLocation", - "arguments": {}, - "informationalOnly": false, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [], - "responseId": "run_Id_1", - "finishReason": "stop", - "rawRepresentation": { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "Amsterdam, Netherlands (52.37\u00B0N, 4.90\u00B0E)", - "callId": "call_Id_1" - } - ], - "responseId": "guid_Id_1", - "messageId": "guid_Id_1" - }, - { - "role": "assistant", - "contents": [], - "additionalProperties": { - "agui_thread_id": "thread_Id_1" - }, - "responseId": "run_Id_2", - "rawRepresentation": { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_2" - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Great" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Great", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Great", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019re", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "!" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "!", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "!", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Here" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Here", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Here", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fun" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " fun", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fun", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " options" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " options", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " options", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " organized" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " organized", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " organized", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " by", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interest" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " interest", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interest", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " so" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " so", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " so", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " can", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pick" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " pick", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pick", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " what", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fits" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " fits", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fits", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " your", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " mood" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " mood", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " mood", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Must" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Must", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Must", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-see" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-see", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-see", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " iconic" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " iconic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " iconic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Canal" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Canal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Canal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cruise", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "day" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "day", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "day", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " evening" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " evening", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " evening", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "):" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "):", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "):", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " classic" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " classic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " classic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " way" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " way", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " way", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " see" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " see", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " see", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " from", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " water" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " water", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " water", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Anne" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Anne", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Anne", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Frank", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " House", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " powerful" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " powerful", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " powerful", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " popular" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " popular", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " popular", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " book" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " book", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " book", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tickets" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tickets", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tickets", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " advance", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " A" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " A", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " A", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u0027D" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u0027D", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u0027D", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "AM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Look" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Look", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Look", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "out" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "out", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "out", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u201C" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u201C", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u201C", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Over" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Over", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Over", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Edge" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Edge", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Edge", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u201D" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u201D", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u201D", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " swing" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " swing", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " swing", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " skyline" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " skyline", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " skyline", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " views" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " views", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " views", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " thrill" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " thrill", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " thrill", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Muse" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Muse", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Muse", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ums", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " culture" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " culture", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " culture", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rijks" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rijks", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rijks", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "museum" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "museum", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "museum", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Dutch" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Dutch", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Dutch", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " masters" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " masters", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " masters", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "),", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "),", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Van", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Gogh", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Museum", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " St" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " St", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " St", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ed" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ed", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ed", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "elijk" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "elijk", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "elijk", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "modern" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "modern", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "modern", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " art", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " He" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " He", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " He", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ine" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ine", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ine", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ken" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ken", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ken", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Experience" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Experience", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Experience", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " House", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " of", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bols" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bols", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bols", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interactive" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " interactive", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interactive", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brewery" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " brewery", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brewery", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/dist" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "/dist", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/dist", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "illery" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "illery", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "illery", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " experiences" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " experiences", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " experiences", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " FO" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " FO", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " FO", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "AM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "phot" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "phot", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "phot", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ography" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ography", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ography", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Herm" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Herm", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Herm", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "itage" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "itage", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "itage", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rotating" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rotating", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rotating", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " exhibits" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " exhibits", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " exhibits", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Out" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Out", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Out", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "doors" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "doors", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "doors", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " active" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " active", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " active", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rent" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rent", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rent", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bike" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bike", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bike", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " explore" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " explore", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " explore", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " V" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " V", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " V", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ond" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ond", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ond", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "el" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "el", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "el", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "park" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "park", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "park", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Jord", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aan", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cycle" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cycle", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cycle", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "se", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bos" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bos", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bos", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Boat" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Boat", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Boat", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rental" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rental", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rental", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " SUP" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " SUP", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " SUP", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " on" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " on", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " on", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " smaller" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " smaller", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " smaller", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canals" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canals", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canals", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " if", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " weather" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " weather", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " weather", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019s" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019s", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019s", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nice" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " nice", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nice", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Walk" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Walk", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Walk", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " historic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ring" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ring", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ring", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Un" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Un", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Un", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "esco" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "esco", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "esco", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " charming" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " charming", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " charming", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " narrow" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " narrow", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " narrow", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " streets" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " streets", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " streets", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " of", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Stra", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "at", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "jes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Food" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " markets" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " markets", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " markets", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " local", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eats" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " eats", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eats", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Albert" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Albert", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Albert", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cu" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Cu", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cu", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "yp" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "yp", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "yp", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Market" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Market", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Market", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " street", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " stro" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " stro", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " stro", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "op" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "op", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "op", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "w" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "w", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "w", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "af" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "af", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "af", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "els" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "els", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "els", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " local", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shopping" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " shopping", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shopping", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Try" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Try", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Try", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " h" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " h", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " h", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "erring" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "erring", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "erring", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " from", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " har" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " har", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " har", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ing" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ing", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ing", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kra" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "kra", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kra", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "am" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "am", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "am", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Dutch" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Dutch", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Dutch", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pancakes" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " pancakes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pancakes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Indonesian" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Indonesian", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Indonesian", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rij" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rij", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rij", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "st" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "st", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "st", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ta" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ta", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ta", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "fel" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "fel", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "fel", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " P", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ijp", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Food" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hallen" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "hallen", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hallen", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " varied" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " varied", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " varied", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trendy" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trendy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trendy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eateries" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " eateries", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eateries", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bars", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Day" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Day", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Day", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trips" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trips", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trips", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "easy" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "easy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "easy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " by", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " train" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " train", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " train", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Z", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aanse" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aanse", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aanse", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Sch" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Sch", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Sch", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ans" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ans", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ans", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "wind" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "wind", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "wind", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "mills" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "mills", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "mills", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " craft" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " craft", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " craft", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " demonstrations" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " demonstrations", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " demonstrations", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Haarlem" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Haarlem", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Haarlem", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "qu" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "qu", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "qu", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ieter" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ieter", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ieter", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " historic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " great" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " great", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " great", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " caf\u00E9s", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Z", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "vo" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "vo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "vo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ort" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ort", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ort", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Blo" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Blo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Blo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "em" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "em", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "em", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "enda" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "enda", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "enda", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "al" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "al", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "al", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " beach" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " beach", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " beach", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " summer" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " summer", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " summer", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Ke" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Ke", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Ke", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "uken" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "uken", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "uken", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hof" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "hof", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hof", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spring" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spring", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spring", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tul" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tul", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tul", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ips" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ips", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ips", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Night" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Night", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Night", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "life" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "life", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "life", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " entertainment" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " entertainment", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " entertainment", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Live" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Live", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Live", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " music" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " music", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " music", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " clubs" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " clubs", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " clubs", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " around" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " around", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " around", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Leid" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Leid", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Leid", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "se", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "plein", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rem" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rem", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rem", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "brandt" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "brandt", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "brandt", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "plein", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cozy" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Cozy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cozy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brown" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " brown", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brown", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " caf\u00E9s", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " relaxed" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " relaxed", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " relaxed", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " drink" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " drink", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " drink", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " jazz" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " jazz", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " jazz", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bars", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rooftop" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rooftop", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rooftop", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " terraces" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " terraces", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " terraces", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " also" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " also", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " also", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " common", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Evening" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Evening", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Evening", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cruise", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " theatre" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " theatre", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " theatre", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/con" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "/con", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/con", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "cert" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "cert", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "cert", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " at" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " at", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " at", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Concert" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Concert", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Concert", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "gebouw" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "gebouw", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "gebouw", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Family" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Family", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Family", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-friendly" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-friendly", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-friendly", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ART" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ART", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ART", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "IS" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "IS", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "IS", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Royal" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Royal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Royal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Zoo" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Zoo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Zoo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " N", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "EM" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "EM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "EM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "O" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "O", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "O", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Science" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Science", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Science", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Museum", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Hort" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Hort", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Hort", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "us", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bot" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bot", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bot", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "anic" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "anic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "anic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "us", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Interactive" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Interactive", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Interactive", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " museums" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " museums", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " museums", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " boat" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " boat", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " boat", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tours" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tours", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tours", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " that" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " that", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " that", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " keep" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " keep", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " keep", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " kids", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " engaged" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " engaged", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " engaged", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Off" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Off", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Off", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "beat" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "beat", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "beat", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " arts" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " arts", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " arts", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "y" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "y", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "y", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " N", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "DSM" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "DSM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "DSM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Wharf" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Wharf", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Wharf", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " North" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " North", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " North", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " street", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " art", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " creative" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " creative", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " creative", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spaces" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spaces", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spaces", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " festivals" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " festivals", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " festivals", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Independent" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Independent", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Independent", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " galleries" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " galleries", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " galleries", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Jord", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aan", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " P", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ijp", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " vintage" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " vintage", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " vintage", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shops" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " shops", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shops", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Stra", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "at", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "jes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Pr" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Pr", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Pr", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "actical" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "actical", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "actical", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tips" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tips", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tips", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bikes" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bikes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bikes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tr" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tr", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tr", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ams" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ams", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ams", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trains" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trains", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trains", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " easy" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " easy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " easy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " use", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " get" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " get", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " get", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " an" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " an", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " an", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " OV" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " OV", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " OV", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-chip" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-chip", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-chip", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kaart" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "kaart", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kaart", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " use", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " contact" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " contact", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " contact", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "less" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "less", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "less", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " payment" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " payment", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " payment", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Many" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Many", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Many", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " attractions" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " attractions", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " attractions", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " require" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " require", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " require", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " advance", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " booking" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " booking", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " booking", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Anne" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Anne", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Anne", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Frank", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Van", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Gogh", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " English" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " English", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " English", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " is" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " is", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " is", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " widely" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " widely", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " widely", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spoken" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spoken", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spoken", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rainy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " days" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " days", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " days", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " common", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " have", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " light" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " light", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " light", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rain" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rain", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rain", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " layer" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " layer", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " layer", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "If" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "If", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "If", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tell" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tell", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tell", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " me" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " me", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " me", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " what", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " like", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "m" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "m", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "m", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "use" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "use", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "use", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ums", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " outdoors" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " outdoors", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " outdoors", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nightlife" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " nightlife", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nightlife", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "),", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "),", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " how" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " how", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " how", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " long" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " long", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " long", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " have", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " if", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019re", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " with" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " with", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " with", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " kids", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " others" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " others", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " others", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " I" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " I", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " I", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " can", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " make" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " make", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " make", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " short" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " short", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " short", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tailored" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tailored", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tailored", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " itinerary" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " itinerary", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " itinerary", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " find" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " find", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " find", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " current", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " events" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " events", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " events", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " your", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " dates" - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " dates", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " dates", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "." - } - ], - "responseId": "run_Id_2", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [], - "responseId": "run_Id_2", - "finishReason": "stop", - "rawRepresentation": { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "outcome": { - "type": "success" - } - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.02.Request.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.02.Request.Client.AGUI.verified.json deleted file mode 100644 index a9dcbe6619..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.02.Request.Client.AGUI.verified.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "messages": [ - { - "role": "user", - "content": "What are some fun things to do near me?" - }, - { - "role": "assistant", - "toolCalls": [ - { - "id": "call_Id_1", - "type": "function", - "function": { - "name": "GetUserLocation", - "arguments": "{}" - } - } - ] - }, - { - "role": "tool", - "content": "\u0022Amsterdam, Netherlands (52.37\u00B0N, 4.90\u00B0E)\u0022", - "toolCallId": "call_Id_1", - "id": "call_Id_1" - } - ], - "tools": [ - { - "name": "GetUserLocation", - "description": "Get the user\u0027s current location from GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.03.Request.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.03.Request.Server.AGUI.verified.json deleted file mode 100644 index a9dcbe6619..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.03.Request.Server.AGUI.verified.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "messages": [ - { - "role": "user", - "content": "What are some fun things to do near me?" - }, - { - "role": "assistant", - "toolCalls": [ - { - "id": "call_Id_1", - "type": "function", - "function": { - "name": "GetUserLocation", - "arguments": "{}" - } - } - ] - }, - { - "role": "tool", - "content": "\u0022Amsterdam, Netherlands (52.37\u00B0N, 4.90\u00B0E)\u0022", - "toolCallId": "call_Id_1", - "id": "call_Id_1" - } - ], - "tools": [ - { - "name": "GetUserLocation", - "description": "Get the user\u0027s current location from GPS.", - "parameters": { - "type": "object", - "properties": {} - } - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.05.Response.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.05.Response.Server.NET.verified.json deleted file mode 100644 index ab7a75367e..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.05.Response.Server.NET.verified.json +++ /dev/null @@ -1,6568 +0,0 @@ -[ - { - "contents": [], - "responseId": "", - "messageId": "", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Great" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "!" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Here" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fun" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " options" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " organized" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interest" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " so" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pick" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fits" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " mood" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Must" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-see" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " iconic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Canal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "day" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " evening" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "):" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " classic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " way" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " see" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " water" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Anne" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " powerful" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " popular" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " book" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tickets" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " A" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u0027D" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Look" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "out" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u201C" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Over" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Edge" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u201D" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " swing" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " skyline" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " views" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " thrill" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Muse" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " culture" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rijks" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "museum" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Dutch" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " masters" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " St" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ed" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "elijk" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "modern" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " He" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ine" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ken" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Experience" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bols" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interactive" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brewery" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/dist" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "illery" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " experiences" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " FO" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "phot" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ography" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Herm" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "itage" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rotating" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " exhibits" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Out" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "doors" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " active" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rent" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bike" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " explore" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " V" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ond" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "el" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "park" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cycle" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bos" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Boat" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rental" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " SUP" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " on" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " smaller" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canals" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " weather" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019s" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nice" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Walk" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ring" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Un" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "esco" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " charming" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " narrow" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " streets" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " markets" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eats" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Albert" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cu" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "yp" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Market" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " stro" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "op" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "w" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "af" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "els" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shopping" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Try" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " h" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "erring" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " har" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ing" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kra" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "am" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Dutch" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pancakes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Indonesian" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rij" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "st" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ta" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "fel" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hallen" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " varied" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trendy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eateries" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Day" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trips" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "easy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " train" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aanse" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Sch" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ans" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "wind" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "mills" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " craft" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " demonstrations" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Haarlem" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "qu" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ieter" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " great" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "vo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ort" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Blo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "em" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "enda" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "al" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " beach" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " summer" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Ke" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "uken" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hof" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spring" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tul" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ips" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Night" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "life" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " entertainment" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Live" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " music" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " clubs" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " around" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Leid" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rem" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "brandt" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cozy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brown" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " relaxed" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " drink" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " jazz" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rooftop" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " terraces" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " also" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Evening" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " theatre" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/con" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "cert" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " at" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Concert" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "gebouw" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Family" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-friendly" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ART" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "IS" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Royal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Zoo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "EM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "O" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Science" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Hort" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bot" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "anic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Interactive" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " museums" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " boat" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tours" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " that" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " keep" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " engaged" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Off" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "beat" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " arts" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "y" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "DSM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Wharf" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " North" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " creative" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spaces" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " festivals" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Independent" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " galleries" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " vintage" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shops" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Pr" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "actical" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tips" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bikes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tr" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ams" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trains" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " easy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " get" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " an" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " OV" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-chip" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kaart" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " contact" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "less" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " payment" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Many" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " attractions" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " require" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " booking" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Anne" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " English" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " is" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " widely" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spoken" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " days" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " light" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rain" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " layer" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "If" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tell" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " me" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "m" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "use" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " outdoors" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nightlife" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " how" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " long" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " with" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " others" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " I" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " make" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " short" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tailored" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " itinerary" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " find" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " events" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " dates" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "." - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "finishReason": "stop", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "usage", - "details": { - "inputTokenCount": 166, - "outputTokenCount": 937, - "cachedInputTokenCount": 0, - "reasoningTokenCount": 384, - "additionalCounts": { - "InputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AcceptedPredictionTokenCount": 0, - "OutputTokenDetails.RejectedPredictionTokenCount": 0 - } - } - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "finishReason": "stop", - "modelId": "" - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.06.Response.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.06.Response.Server.AGUI.verified.json deleted file mode 100644 index 36618b95bd..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.06.Response.Server.AGUI.verified.json +++ /dev/null @@ -1,9267 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_2" - }, - { - "type": "TEXT_MESSAGE_START", - "messageId": "chatcmpl-Id_2", - "role": "assistant", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Great", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Great" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019re", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "!", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "!" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Here", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Here" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " fun", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fun" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " options", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " options" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " organized", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " organized" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " by", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " interest", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interest" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " so", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " so" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " can", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " pick", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pick" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " what", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " fits", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fits" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " your", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " mood", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " mood" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Must", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Must" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-see", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-see" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " iconic", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " iconic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Canal", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Canal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cruise", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "day", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "day" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " evening", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " evening" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "):", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "):" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " classic", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " classic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " way", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " way" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " see", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " see" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " from", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " water", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " water" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Anne", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Anne" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Frank", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " House", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " powerful", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " powerful" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " popular", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " popular" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " book", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " book" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tickets", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tickets" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " advance", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " A", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " A" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u0027D", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u0027D" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "AM", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Look", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Look" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "out", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "out" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u201C", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u201C" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Over", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Over" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Edge", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Edge" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u201D", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u201D" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " swing", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " swing" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " skyline", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " skyline" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " views", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " views" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " thrill", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " thrill" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Muse", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Muse" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ums", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " culture", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " culture" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rijks", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rijks" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "museum", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "museum" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Dutch", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Dutch" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " masters", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " masters" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "),", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Van", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Gogh", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Museum", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " St", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " St" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ed", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ed" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "elijk", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "elijk" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "modern", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "modern" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " art", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " He", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " He" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ine", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ine" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ken", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ken" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Experience", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Experience" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " House", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " of", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bols", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bols" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " interactive", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interactive" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " brewery", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brewery" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "/dist", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/dist" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "illery", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "illery" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " experiences", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " experiences" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " FO", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " FO" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "AM", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "phot", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "phot" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ography", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ography" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Herm", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Herm" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "itage", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "itage" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rotating", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rotating" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " exhibits", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " exhibits" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Out", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Out" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "doors", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "doors" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " active", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " active" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rent", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rent" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bike", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bike" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " explore", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " explore" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " V", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " V" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ond", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ond" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "el", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "el" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "park", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "park" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Jord", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aan", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cycle", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cycle" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "se", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bos", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bos" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Boat", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Boat" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rental", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rental" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " SUP", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " SUP" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " on", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " on" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " smaller", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " smaller" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canals", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canals" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " if", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " weather", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " weather" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019s", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019s" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " nice", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nice" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Walk", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Walk" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " historic", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canal", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ring", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ring" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Un", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Un" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "esco", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "esco" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " charming", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " charming" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " narrow", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " narrow" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " streets", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " streets" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " of", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Stra", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "at", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "jes", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Food", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " markets", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " markets" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " local", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " eats", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eats" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Albert", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Albert" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Cu", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cu" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "yp", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "yp" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Market", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Market" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " street", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " food", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " stro", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " stro" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "op", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "op" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "w", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "w" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "af", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "af" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "els", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "els" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " local", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " shopping", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shopping" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Try", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Try" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " h", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " h" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "erring", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "erring" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " from", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " har", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " har" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ing", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ing" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "kra", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kra" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "am", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "am" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Dutch", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Dutch" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " pancakes", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pancakes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Indonesian", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Indonesian" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rij", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rij" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "st", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "st" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ta", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ta" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "fel", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "fel" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " P", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ijp", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Food", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "hallen", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hallen" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " varied", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " varied" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trendy", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trendy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " eateries", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eateries" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bars", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Day", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Day" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trips", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trips" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "easy", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "easy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " by", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " train", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " train" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Z", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aanse", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aanse" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Sch", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Sch" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ans", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ans" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "wind", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "wind" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "mills", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "mills" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " craft", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " craft" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " demonstrations", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " demonstrations" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Haarlem", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Haarlem" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "qu", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "qu" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ieter", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ieter" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " historic", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " great", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " great" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " caf\u00E9s", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Z", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "vo", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "vo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ort", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ort" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Blo", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Blo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "em", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "em" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "enda", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "enda" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "al", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "al" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " beach", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " beach" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " summer", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " summer" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Ke", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Ke" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "uken", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "uken" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "hof", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hof" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spring", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spring" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tul", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tul" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ips", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ips" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Night", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Night" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "life", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "life" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " entertainment", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " entertainment" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Live", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Live" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " music", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " music" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " clubs", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " clubs" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " around", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " around" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Leid", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Leid" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "se", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "plein", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rem", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rem" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "brandt", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "brandt" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "plein", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Cozy", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cozy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " brown", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brown" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " caf\u00E9s", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " relaxed", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " relaxed" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " drink", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " drink" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " jazz", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " jazz" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bars", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rooftop", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rooftop" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " terraces", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " terraces" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " also", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " also" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " common", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Evening", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Evening" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canal", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cruise", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " theatre", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " theatre" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "/con", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/con" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "cert", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "cert" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " at", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " at" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Concert", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Concert" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "gebouw", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "gebouw" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Family", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Family" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-friendly", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-friendly" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ART", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ART" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "IS", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "IS" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Royal", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Royal" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Zoo", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Zoo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " N", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "EM", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "EM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "O", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "O" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Science", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Science" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Museum", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Hort", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Hort" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "us", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bot", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bot" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "anic", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "anic" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "us", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Interactive", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Interactive" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " museums", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " museums" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " boat", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " boat" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tours", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tours" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " that", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " that" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " keep", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " keep" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " kids", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " engaged", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " engaged" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Off", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Off" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "beat", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "beat" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " arts", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " arts" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "y", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "y" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " N", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "DSM", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "DSM" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Wharf", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Wharf" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " North", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " North" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " street", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " art", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " creative", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " creative" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spaces", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spaces" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " festivals", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " festivals" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Independent", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Independent" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " galleries", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " galleries" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Jord", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aan", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " P", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ijp", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " vintage", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " vintage" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " shops", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shops" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Stra", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "at", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "jes", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Pr", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Pr" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "actical", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "actical" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tips", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tips" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bikes", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bikes" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tr", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tr" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ams", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ams" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trains", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trains" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " easy", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " easy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " use", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " get", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " get" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " an", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " an" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " OV", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " OV" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-chip", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-chip" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "kaart", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kaart" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " use", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " contact", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " contact" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "less", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "less" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " payment", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " payment" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Many", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Many" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " attractions", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " attractions" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " require", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " require" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " advance", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " booking", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " booking" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Anne", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Anne" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Frank", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Van", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Gogh", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " English", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " English" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " is", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " is" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " widely", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " widely" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spoken", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spoken" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rainy", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " days", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " days" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " common", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " have", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " light", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " light" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rain", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rain" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " layer", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " layer" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "If", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "If" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tell", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tell" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " me", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " me" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " what", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " like", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "m", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "m" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "use", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "use" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ums", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " outdoors", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " outdoors" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " food", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " nightlife", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nightlife" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "),", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " how", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " how" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " long", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " long" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " have", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " if", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019re", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " with", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " with" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " kids", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " others", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " others" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " I", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " I" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " can", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " make", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " make" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " short", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " short" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tailored", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tailored" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " itinerary", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " itinerary" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " find", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " find" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " current", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " events", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " events" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " your", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " dates", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " dates" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "." - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_END", - "messageId": "chatcmpl-Id_2" - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.07.Response.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.07.Response.Client.AGUI.verified.json deleted file mode 100644 index 671f6fe28e..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step03_FrontendTools/PostRun_WithFrontendToolCall_InvokesToolLocallyAndStreamsResult#Turn_02.07.Response.Client.AGUI.verified.json +++ /dev/null @@ -1,13075 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_2" - }, - { - "type": "TEXT_MESSAGE_START", - "messageId": "chatcmpl-Id_2", - "role": "assistant", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Great", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Great", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019re", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "!", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "!", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Here", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Here", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " fun", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fun", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " options", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " options", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " organized", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " organized", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " by", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " interest", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interest", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " so", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " so", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " can", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " pick", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pick", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " what", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " fits", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " fits", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " your", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " mood", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " mood", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Must", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Must", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-see", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-see", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " iconic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " iconic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Canal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Canal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cruise", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "day", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "day", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " evening", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " evening", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "):", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "):", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " classic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " classic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " way", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " way", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " see", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " see", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " from", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " water", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " water", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Anne", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Anne", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Frank", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " House", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " powerful", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " powerful", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " popular", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " popular", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " book", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " book", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tickets", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tickets", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " advance", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " A", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " A", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u0027D", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u0027D", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "AM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Look", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Look", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "out", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "out", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u201C", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u201C", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Over", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Over", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Edge", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Edge", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u201D", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u201D", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " swing", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " swing", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " skyline", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " skyline", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " views", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " views", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " thrill", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " thrill", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Muse", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Muse", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ums", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " culture", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " culture", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rijks", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rijks", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "museum", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "museum", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Dutch", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Dutch", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " masters", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " masters", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "),", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "),", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Van", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Gogh", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Museum", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " St", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " St", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ed", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ed", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "elijk", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "elijk", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "modern", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "modern", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " art", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " He", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " He", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ine", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ine", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ken", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ken", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Experience", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Experience", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " House", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " House", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " of", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bols", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bols", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " interactive", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " interactive", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " brewery", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brewery", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "/dist", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/dist", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "illery", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "illery", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " experiences", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " experiences", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " FO", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " FO", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "AM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "AM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "phot", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "phot", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ography", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ography", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Herm", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Herm", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "itage", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "itage", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rotating", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rotating", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " exhibits", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " exhibits", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Out", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Out", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "doors", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "doors", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " active", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " active", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rent", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rent", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bike", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bike", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " explore", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " explore", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " V", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " V", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ond", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ond", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "el", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "el", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "park", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "park", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Jord", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aan", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cycle", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cycle", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "se", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bos", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bos", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Boat", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Boat", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rental", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rental", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " SUP", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " SUP", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " on", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " on", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " smaller", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " smaller", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canals", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canals", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " if", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " weather", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " weather", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019s", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019s", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " nice", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nice", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Walk", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Walk", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " historic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ring", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ring", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Un", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Un", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "esco", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "esco", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " charming", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " charming", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " narrow", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " narrow", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " streets", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " streets", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " of", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " of", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Stra", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "at", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "jes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " markets", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " markets", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " local", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " eats", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eats", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Albert", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Albert", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Cu", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cu", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "yp", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "yp", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Market", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Market", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " street", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " stro", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " stro", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "op", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "op", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "w", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "w", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "af", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "af", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "els", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "els", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " local", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " local", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " shopping", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shopping", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Try", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Try", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " h", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " h", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "erring", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "erring", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " from", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " from", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " har", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " har", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ing", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ing", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "kra", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kra", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "am", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "am", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Dutch", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Dutch", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " pancakes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " pancakes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Indonesian", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Indonesian", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rij", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rij", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "st", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "st", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ta", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ta", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "fel", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "fel", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " P", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ijp", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "hallen", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hallen", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " varied", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " varied", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trendy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trendy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " eateries", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " eateries", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bars", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Day", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Day", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trips", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trips", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "easy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "easy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " by", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " by", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " train", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " train", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ")\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Z", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aanse", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aanse", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Sch", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Sch", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ans", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ans", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "wind", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "wind", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "mills", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "mills", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " craft", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " craft", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " demonstrations", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " demonstrations", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Haarlem", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Haarlem", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "qu", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "qu", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ieter", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ieter", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " historic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " historic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " city", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " city", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " great", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " great", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " caf\u00E9s", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Z", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Z", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "vo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "vo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ort", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ort", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Blo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Blo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "em", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "em", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "enda", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "enda", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "al", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "al", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " beach", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " beach", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " summer", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " summer", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Ke", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Ke", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "uken", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "uken", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "hof", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "hof", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spring", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spring", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tul", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tul", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ips", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ips", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Night", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Night", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "life", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "life", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " entertainment", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " entertainment", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Live", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Live", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " music", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " music", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " clubs", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " clubs", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " around", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " around", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Leid", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Leid", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "se", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "se", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "plein", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Rem", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Rem", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "brandt", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "brandt", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "plein", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "plein", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Cozy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Cozy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " brown", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " brown", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " caf\u00E9s", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " caf\u00E9s", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " relaxed", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " relaxed", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " drink", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " drink", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " jazz", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " jazz", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " bars", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " bars", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rooftop", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rooftop", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " terraces", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " terraces", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " also", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " also", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " common", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Evening", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Evening", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " canal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " canal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " cruise", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " cruise", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " theatre", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " theatre", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "/con", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "/con", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "cert", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "cert", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " at", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " at", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Concert", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Concert", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "gebouw", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "gebouw", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Family", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Family", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-friendly", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-friendly", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ART", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ART", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "IS", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "IS", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Royal", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Royal", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Zoo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Zoo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " N", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "EM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "EM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "O", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "O", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Science", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Science", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Museum", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Museum", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Hort", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Hort", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "us", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bot", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bot", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "anic", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "anic", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "us", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "us", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Interactive", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Interactive", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " museums", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " museums", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " boat", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " boat", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tours", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tours", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " that", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " that", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " keep", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " keep", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " kids", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " engaged", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " engaged", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Off", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Off", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "beat", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "beat", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u0026", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u0026", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " arts", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " arts", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "y", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "y", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " N", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " N", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "DSM", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "DSM", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Wharf", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Wharf", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Amsterdam", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Amsterdam", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " North", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " North", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " street", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " street", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " art", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " art", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " creative", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " creative", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spaces", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spaces", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " festivals", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " festivals", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Independent", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Independent", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " galleries", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " galleries", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Jord", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Jord", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "aan", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "aan", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " De", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " De", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " P", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " P", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ijp", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ijp", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " vintage", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " vintage", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " shops", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " shops", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " in", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " in", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " the", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " the", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Stra", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Stra", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "at", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "at", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "jes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "jes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Pr", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Pr", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "actical", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "actical", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tips", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tips", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Bikes", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Bikes", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tr", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tr", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ams", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ams", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " trains", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " trains", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " easy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " easy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " to", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " to", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " use", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " get", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " get", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " an", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " an", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " OV", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " OV", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-chip", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-chip", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "kaart", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "kaart", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " use", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " use", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " contact", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " contact", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "less", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "less", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " payment", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " payment", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Many", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Many", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " attractions", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " attractions", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " require", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " require", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " advance", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " advance", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " booking", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " booking", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "Anne", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "Anne", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Frank", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Frank", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Van", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Van", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Gogh", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Gogh", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " English", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " English", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " is", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " is", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " widely", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " widely", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " spoken", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " spoken", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ";", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ";", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rainy", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rainy", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " days", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " days", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " are", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " are", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " common", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " common", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " have", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " light", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " light", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " rain", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " rain", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " layer", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " layer", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".\n\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".\n\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "If", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "If", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tell", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tell", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " me", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " me", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " what", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " what", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " like", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " like", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "m", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "m", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "use", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "use", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ums", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ums", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " outdoors", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " outdoors", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " food", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " food", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " nightlife", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " nightlife", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "),", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "),", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " how", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " how", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " long", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " long", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " have", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " have", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " and", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " and", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " if", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " if", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " you", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " you", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2019re", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2019re", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " with", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " with", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " kids", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " kids", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " others", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " others", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " I", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " I", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " can", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " can", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " make", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " make", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " a", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " a", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " short", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " short", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " tailored", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " tailored", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " itinerary", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " itinerary", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " or", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " or", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " find", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " find", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " current", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " current", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " events", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " events", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " for", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " for", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " your", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " your", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " dates", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " dates", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ".", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ".", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_END", - "messageId": "chatcmpl-Id_2" - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_2", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.01.Request.Client.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.01.Request.Client.NET.verified.json deleted file mode 100644 index 373dfac373..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.01.Request.Client.NET.verified.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "role": "user", - "contents": [ - { - "$type": "text", - "text": "What\u0027s the weather in Paris and the current time in Tokyo?" - } - ] - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.02.Request.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.02.Request.Client.AGUI.verified.json deleted file mode 100644 index 2006870224..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.02.Request.Client.AGUI.verified.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "messages": [ - { - "role": "user", - "content": "What\u0027s the weather in Paris and the current time in Tokyo?" - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.03.Request.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.03.Request.Server.AGUI.verified.json deleted file mode 100644 index 2006870224..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.03.Request.Server.AGUI.verified.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "messages": [ - { - "role": "user", - "content": "What\u0027s the weather in Paris and the current time in Tokyo?" - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.04.Request.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.04.Request.Server.NET.verified.json deleted file mode 100644 index 2b28436c3d..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.04.Request.Server.NET.verified.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "messages": [ - { - "role": "user", - "contents": [ - { - "$type": "text", - "text": "What\u0027s the weather in Paris and the current time in Tokyo?" - } - ] - } - ] -} \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.05.Response.Server.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.05.Response.Server.NET.verified.json deleted file mode 100644 index e3ceb8d75b..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.05.Response.Server.NET.verified.json +++ /dev/null @@ -1,664 +0,0 @@ -[ - { - "contents": [], - "responseId": "", - "messageId": "", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "finishReason": "tool_calls", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "usage", - "details": { - "inputTokenCount": 191, - "outputTokenCount": 122, - "cachedInputTokenCount": 0, - "reasoningTokenCount": 64, - "additionalCounts": { - "InputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AcceptedPredictionTokenCount": 0, - "OutputTokenDetails.RejectedPredictionTokenCount": 0 - } - } - } - ], - "responseId": "chatcmpl-Id_1", - "messageId": "chatcmpl-Id_1", - "finishReason": "tool_calls", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": { - "City": "Paris", - "Conditions": "sunny", - "TemperatureCelsius": 22 - }, - "callId": "call_Id_1" - }, - { - "$type": "functionResult", - "result": { - "Timezone": "Asia/Tokyo", - "CurrentTime": "2026-06-18 09:30 UTC" - }, - "callId": "call_Id_2" - } - ], - "responseId": "guid_Id_1", - "messageId": "guid_Id_1" - }, - { - "contents": [], - "responseId": "", - "messageId": "", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " sunny" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " about" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "22" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2248" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "72" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0F" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "202" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "6" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "06" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "30" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "J" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ST" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " UTC" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u002B" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")." - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - }, - { - "role": "assistant", - "contents": [], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "finishReason": "stop", - "modelId": "" - }, - { - "role": "assistant", - "contents": [ - { - "$type": "usage", - "details": { - "inputTokenCount": 304, - "outputTokenCount": 366, - "cachedInputTokenCount": 0, - "reasoningTokenCount": 320, - "additionalCounts": { - "InputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AudioTokenCount": 0, - "OutputTokenDetails.AcceptedPredictionTokenCount": 0, - "OutputTokenDetails.RejectedPredictionTokenCount": 0 - } - } - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "finishReason": "stop", - "modelId": "" - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.06.Response.Server.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.06.Response.Server.AGUI.verified.json deleted file mode 100644 index 6710eaec3f..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.06.Response.Server.AGUI.verified.json +++ /dev/null @@ -1,900 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_1", - "toolCallName": "get_weather", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_1", - "delta": "{\n \u0022city\u0022: \u0022Paris\u0022\n}", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_2", - "toolCallName": "get_current_time", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_2", - "delta": "{\n \u0022timezone\u0022: \u0022Asia/Tokyo\u0022\n}", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_2", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "", - "messageId": "", - "finishReason": "tool_calls", - "modelId": "" - } - }, - { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_1", - "toolCallId": "call_Id_1", - "content": "{\n \u0022City\u0022: \u0022Paris\u0022,\n \u0022Conditions\u0022: \u0022sunny\u0022,\n \u0022TemperatureCelsius\u0022: 22\n }", - "rawEvent": { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": { - "City": "Paris", - "Conditions": "sunny", - "TemperatureCelsius": 22 - }, - "callId": "call_Id_1" - }, - { - "$type": "functionResult", - "result": { - "Timezone": "Asia/Tokyo", - "CurrentTime": "2026-06-18 09:30 UTC" - }, - "callId": "call_Id_2" - } - ], - "responseId": "guid_Id_1", - "messageId": "guid_Id_1" - } - }, - { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_2", - "toolCallId": "call_Id_2", - "content": "{\n \u0022Timezone\u0022: \u0022Asia/Tokyo\u0022,\n \u0022CurrentTime\u0022: \u00222026-06-18 09:30 UTC\u0022\n }", - "rawEvent": { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": { - "City": "Paris", - "Conditions": "sunny", - "TemperatureCelsius": 22 - }, - "callId": "call_Id_1" - }, - { - "$type": "functionResult", - "result": { - "Timezone": "Asia/Tokyo", - "CurrentTime": "2026-06-18 09:30 UTC" - }, - "callId": "call_Id_2" - } - ], - "responseId": "guid_Id_1", - "messageId": "guid_Id_1" - } - }, - { - "type": "TEXT_MESSAGE_START", - "messageId": "chatcmpl-Id_2", - "role": "assistant", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Paris", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " sunny", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " sunny" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " about", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " about" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "22", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "22" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0C", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2248", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2248" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "72", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "72" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0F", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0F" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Tokyo", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "202", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "202" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "6", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "6" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "06", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "06" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "30", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "30" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "J", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "J" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ST", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ST" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " UTC", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " UTC" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u002B", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u002B" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").", - "rawEvent": { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")." - } - ], - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "modelId": "" - } - }, - { - "type": "TEXT_MESSAGE_END", - "messageId": "chatcmpl-Id_2" - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.07.Response.Client.AGUI.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.07.Response.Client.AGUI.verified.json deleted file mode 100644 index 3fb328274f..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.07.Response.Client.AGUI.verified.json +++ /dev/null @@ -1,1227 +0,0 @@ -[ - { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_1", - "toolCallName": "get_weather", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_1", - "delta": "{\u0022city\u0022:\u0022Paris\u0022}", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_START", - "parentMessageId": "", - "toolCallId": "call_Id_2", - "toolCallName": "get_current_time", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_ARGS", - "toolCallId": "call_Id_2", - "delta": "{\u0022timezone\u0022:\u0022Asia/Tokyo\u0022}", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_2", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_1", - "toolCallId": "call_Id_1", - "content": "{\n \u0022City\u0022: \u0022Paris\u0022,\n \u0022Conditions\u0022: \u0022sunny\u0022,\n \u0022TemperatureCelsius\u0022: 22\n }", - "rawEvent": { - "authorName": null, - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": { - "City": "Paris", - "Conditions": "sunny", - "TemperatureCelsius": 22 - }, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionResult", - "result": { - "Timezone": "Asia/Tokyo", - "CurrentTime": "2026-06-18 09:30 UTC" - }, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "guid_Id_1", - "messageId": "guid_Id_1", - "conversationId": null, - "finishReason": null, - "modelId": null, - "continuationToken": null - } - }, - { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_2", - "toolCallId": "call_Id_2", - "content": "{\n \u0022Timezone\u0022: \u0022Asia/Tokyo\u0022,\n \u0022CurrentTime\u0022: \u00222026-06-18 09:30 UTC\u0022\n }", - "rawEvent": { - "authorName": null, - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": { - "City": "Paris", - "Conditions": "sunny", - "TemperatureCelsius": 22 - }, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionResult", - "result": { - "Timezone": "Asia/Tokyo", - "CurrentTime": "2026-06-18 09:30 UTC" - }, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "guid_Id_1", - "messageId": "guid_Id_1", - "conversationId": null, - "finishReason": null, - "modelId": null, - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_START", - "messageId": "chatcmpl-Id_2", - "role": "assistant", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Paris", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " sunny", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " sunny", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " about", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " about", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "22", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "22", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0C", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2248", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2248", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "72", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "72", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0F", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0F", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Tokyo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "202", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "202", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "6", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "6", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "06", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "06", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "30", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "30", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "J", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "J", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ST", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ST", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " UTC", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " UTC", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u002B", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u002B", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - }, - { - "type": "TEXT_MESSAGE_END", - "messageId": "chatcmpl-Id_2" - }, - { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } -] \ No newline at end of file diff --git a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.08.Response.Client.NET.verified.json b/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.08.Response.Client.NET.verified.json deleted file mode 100644 index 7f0e3f5a42..0000000000 --- a/sdks/dotnet/tests/AGUI.Hosting.AspNetCore.IntegrationTests/Samples/GettingStarted/baselines/Step12_ParallelToolCalls/PostRun_WithParallelToolCalls_InvokesBothToolsAndStreamsResults#Turn_01.08.Response.Client.NET.verified.json +++ /dev/null @@ -1,1499 +0,0 @@ -[ - { - "role": "assistant", - "contents": [], - "additionalProperties": { - "agui_thread_id": "thread_Id_1" - }, - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "RUN_STARTED", - "threadId": "thread_Id_1", - "runId": "run_Id_1" - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1" - } - ], - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_1", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2" - } - ], - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "TOOL_CALL_END", - "toolCallId": "call_Id_2", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "functionCall", - "name": "get_weather", - "arguments": { - "city": "Paris" - }, - "informationalOnly": true, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionCall", - "name": "get_current_time", - "arguments": { - "timezone": "Asia/Tokyo" - }, - "informationalOnly": true, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "", - "messageId": "", - "conversationId": null, - "finishReason": "tool_calls", - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "{\n \u0022City\u0022: \u0022Paris\u0022,\n \u0022Conditions\u0022: \u0022sunny\u0022,\n \u0022TemperatureCelsius\u0022: 22\n }", - "callId": "call_Id_1" - } - ], - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_1", - "toolCallId": "call_Id_1", - "content": "{\n \u0022City\u0022: \u0022Paris\u0022,\n \u0022Conditions\u0022: \u0022sunny\u0022,\n \u0022TemperatureCelsius\u0022: 22\n }", - "rawEvent": { - "authorName": null, - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": { - "City": "Paris", - "Conditions": "sunny", - "TemperatureCelsius": 22 - }, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionResult", - "result": { - "Timezone": "Asia/Tokyo", - "CurrentTime": "2026-06-18 09:30 UTC" - }, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "guid_Id_1", - "messageId": "guid_Id_1", - "conversationId": null, - "finishReason": null, - "modelId": null, - "continuationToken": null - } - } - }, - { - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": "{\n \u0022Timezone\u0022: \u0022Asia/Tokyo\u0022,\n \u0022CurrentTime\u0022: \u00222026-06-18 09:30 UTC\u0022\n }", - "callId": "call_Id_2" - } - ], - "responseId": "run_Id_1", - "rawRepresentation": { - "type": "TOOL_CALL_RESULT", - "messageId": "call_Id_2", - "toolCallId": "call_Id_2", - "content": "{\n \u0022Timezone\u0022: \u0022Asia/Tokyo\u0022,\n \u0022CurrentTime\u0022: \u00222026-06-18 09:30 UTC\u0022\n }", - "rawEvent": { - "authorName": null, - "role": "tool", - "contents": [ - { - "$type": "functionResult", - "result": { - "City": "Paris", - "Conditions": "sunny", - "TemperatureCelsius": 22 - }, - "callId": "call_Id_1", - "annotations": null, - "additionalProperties": null - }, - { - "$type": "functionResult", - "result": { - "Timezone": "Asia/Tokyo", - "CurrentTime": "2026-06-18 09:30 UTC" - }, - "callId": "call_Id_2", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "guid_Id_1", - "messageId": "guid_Id_1", - "conversationId": null, - "finishReason": null, - "modelId": null, - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Paris", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Paris", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " sunny" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " sunny", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " sunny", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "," - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ",", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ",", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " about" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " about", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " about", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "22" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "22", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "22", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0C", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0C", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2248" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u2248", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u2248", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "72" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "72", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "72", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0F" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u00B0F", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u00B0F", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").\n", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").\n", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " Tokyo", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " Tokyo", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "202" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "202", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "202", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "6" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "6", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "6", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "06" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "06", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "06", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "-", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "-", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " " - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " ", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " ", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "18", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "18", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ":", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ":", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "30" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "30", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "30", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " (", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " (", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "J" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "J", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "J", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ST" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "ST", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "ST", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " \u2014", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " \u2014", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " UTC" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": " UTC", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": " UTC", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u002B" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "\u002B", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "\u002B", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9" - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": "9", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": "9", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ")." - } - ], - "responseId": "run_Id_1", - "messageId": "chatcmpl-Id_2", - "rawRepresentation": { - "type": "TEXT_MESSAGE_CONTENT", - "messageId": "chatcmpl-Id_2", - "delta": ").", - "rawEvent": { - "authorName": null, - "role": "assistant", - "contents": [ - { - "$type": "text", - "text": ").", - "annotations": null, - "additionalProperties": null - } - ], - "additionalProperties": null, - "responseId": "chatcmpl-Id_2", - "messageId": "chatcmpl-Id_2", - "conversationId": null, - "finishReason": null, - "modelId": "", - "continuationToken": null - } - } - }, - { - "role": "assistant", - "contents": [], - "responseId": "run_Id_1", - "finishReason": "stop", - "rawRepresentation": { - "type": "RUN_FINISHED", - "threadId": "thread_Id_1", - "runId": "run_Id_1", - "outcome": { - "type": "success" - } - } - } -] \ No newline at end of file diff --git a/sdks/typescript/packages/proto/src/generated/events.ts b/sdks/typescript/packages/proto/src/generated/events.ts index ed9a605163..cef6467449 100644 --- a/sdks/typescript/packages/proto/src/generated/events.ts +++ b/sdks/typescript/packages/proto/src/generated/events.ts @@ -1,7 +1,7 @@ // Code generated by protoc-gen-ts_proto. DO NOT EDIT. // versions: // protoc-gen-ts_proto v2.7.7 -// protoc v7.34.1 +// protoc v7.35.1 // source: events.proto /* eslint-disable */ diff --git a/sdks/typescript/packages/proto/src/generated/google/protobuf/struct.ts b/sdks/typescript/packages/proto/src/generated/google/protobuf/struct.ts index a6982dafd4..67ab4cb087 100644 --- a/sdks/typescript/packages/proto/src/generated/google/protobuf/struct.ts +++ b/sdks/typescript/packages/proto/src/generated/google/protobuf/struct.ts @@ -1,7 +1,7 @@ // Code generated by protoc-gen-ts_proto. DO NOT EDIT. // versions: // protoc-gen-ts_proto v2.7.7 -// protoc v7.34.1 +// protoc v7.35.1 // source: google/protobuf/struct.proto /* eslint-disable */ @@ -10,10 +10,15 @@ import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export const protobufPackage = "google.protobuf"; /** - * `NullValue` is a singleton enumeration to represent the null value for the - * `Value` type union. + * Represents a JSON `null`. * - * The JSON representation for `NullValue` is JSON `null`. + * `NullValue` is a sentinel, using an enum with only one value to represent + * the null value for the `Value` type union. + * + * A field of type `NullValue` with any value other than `0` is considered + * invalid. Most ProtoJSON serializers will emit a Value with a `null_value` set + * as a JSON `null` regardless of the integer value, and so will round trip to + * a `0` value. */ export enum NullValue { /** NULL_VALUE - Null value. */ @@ -22,14 +27,19 @@ export enum NullValue { } /** - * `Struct` represents a structured data value, consisting of fields - * which map to dynamically typed values. In some languages, `Struct` - * might be supported by a native representation. For example, in - * scripting languages like JS a struct is represented as an - * object. The details of that representation are described together - * with the proto support for the language. + * Represents a JSON object. + * + * An unordered key-value map, intending to perfectly capture the semantics of a + * JSON object. This enables parsing any arbitrary JSON payload as a message + * field in ProtoJSON format. * - * The JSON representation for `Struct` is JSON object. + * This follows RFC 8259 guidelines for interoperable JSON: notably this type + * cannot represent large Int64 values or `NaN`/`Infinity` numbers, + * since the JSON format generally does not support those values in its number + * type. + * + * If you do not intend to parse arbitrary JSON into your message, a custom + * typed message should be preferred instead of using this type. */ export interface Struct { /** Unordered map of dynamically typed values. */ @@ -42,43 +52,44 @@ export interface Struct_FieldsEntry { } /** + * Represents a JSON value. + * * `Value` represents a dynamically typed value which can be either * null, a number, a string, a boolean, a recursive struct value, or a * list of values. A producer of value is expected to set one of these - * variants. Absence of any variant indicates an error. - * - * The JSON representation for `Value` is JSON value. + * variants. Absence of any variant is an invalid state. */ export interface Value { - /** Represents a null value. */ + /** Represents a JSON `null`. */ nullValue?: | NullValue | undefined; - /** Represents a double value. */ + /** + * Represents a JSON number. Must not be `NaN`, `Infinity` or + * `-Infinity`, since those are not supported in JSON. This also cannot + * represent large Int64 values, since JSON format generally does not + * support them in its number type. + */ numberValue?: | number | undefined; - /** Represents a string value. */ + /** Represents a JSON string. */ stringValue?: | string | undefined; - /** Represents a boolean value. */ + /** Represents a JSON boolean (`true` or `false` literal in JSON). */ boolValue?: | boolean | undefined; - /** Represents a structured value. */ + /** Represents a JSON object. */ structValue?: | { [key: string]: any } | undefined; - /** Represents a repeated `Value`. */ + /** Represents a JSON array. */ listValue?: Array | undefined; } -/** - * `ListValue` is a wrapper around a repeated field of values. - * - * The JSON representation for `ListValue` is JSON array. - */ +/** Represents a JSON array. */ export interface ListValue { /** Repeated field of dynamically typed values. */ values: any[]; diff --git a/sdks/typescript/packages/proto/src/generated/patch.ts b/sdks/typescript/packages/proto/src/generated/patch.ts index ac45d0604c..21df24a24d 100644 --- a/sdks/typescript/packages/proto/src/generated/patch.ts +++ b/sdks/typescript/packages/proto/src/generated/patch.ts @@ -1,7 +1,7 @@ // Code generated by protoc-gen-ts_proto. DO NOT EDIT. // versions: // protoc-gen-ts_proto v2.7.7 -// protoc v7.34.1 +// protoc v7.35.1 // source: patch.proto /* eslint-disable */ diff --git a/sdks/typescript/packages/proto/src/generated/types.ts b/sdks/typescript/packages/proto/src/generated/types.ts index e47f902a5d..1cd1fe51f6 100644 --- a/sdks/typescript/packages/proto/src/generated/types.ts +++ b/sdks/typescript/packages/proto/src/generated/types.ts @@ -1,7 +1,7 @@ // Code generated by protoc-gen-ts_proto. DO NOT EDIT. // versions: // protoc-gen-ts_proto v2.7.7 -// protoc v7.34.1 +// protoc v7.35.1 // source: types.proto /* eslint-disable */