diff --git a/payloads/cases/advanced.ts b/payloads/cases/advanced.ts index 2ea18699..b850f64a 100644 --- a/payloads/cases/advanced.ts +++ b/payloads/cases/advanced.ts @@ -5,6 +5,7 @@ import { OPENAI_RESPONSES_MODEL, ANTHROPIC_MODEL, BEDROCK_MODEL, + MISTRAL_MODEL, } from "./models"; const IMAGE_BASE64 = @@ -121,6 +122,9 @@ export const advancedCases: TestCaseCollection = { maxTokens: 300, }, }, + + // Mistral-7B doesn't support multimodal (images) + mistral: null, }, complexReasoningRequest: { @@ -193,6 +197,18 @@ export const advancedCases: TestCaseCollection = { maxTokens: 20_000, }, }, + + mistral: { + model: MISTRAL_MODEL, + maxTokens: 20_000, + messages: [ + { + role: "user", + content: + "There is a digital clock, with minutes and hours in the form of 00:00. The clock shows all times from 00:00 to 23:59 and repeating. Imagine you had a list of all these times. Which digit(s) is the most common and which is the rarest? Can you find their percentage?", + }, + ], + }, }, reasoningWithOutput: { @@ -244,6 +260,16 @@ export const advancedCases: TestCaseCollection = { }, ], }, + + mistral: { + model: MISTRAL_MODEL, + messages: [ + { + role: "user", + content: "What color is the sky?", + }, + ], + }, }, toolCallRequest: { @@ -394,5 +420,36 @@ export const advancedCases: TestCaseCollection = { ], }, }, + + mistral: { + model: MISTRAL_MODEL, + maxTokens: 20_000, + messages: [ + { + role: "user", + content: "What's the weather like in San Francisco?", + }, + ], + tools: [ + { + type: "function", + function: { + name: "get_weather", + description: "Get the current weather for a location", + parameters: { + type: "object", + properties: { + location: { + type: "string", + description: "The city and state, e.g. San Francisco, CA", + }, + }, + required: ["location"], + }, + }, + }, + ], + toolChoice: "auto", + }, }, }; diff --git a/payloads/cases/models.ts b/payloads/cases/models.ts index efa31748..55eaaeab 100644 --- a/payloads/cases/models.ts +++ b/payloads/cases/models.ts @@ -4,3 +4,4 @@ export const OPENAI_RESPONSES_MODEL = "gpt-5-nano"; export const ANTHROPIC_MODEL = "claude-sonnet-4-20250514"; export const GOOGLE_MODEL = "gemini-2.5-flash"; export const BEDROCK_MODEL = "us.anthropic.claude-haiku-4-5-20251001-v1:0"; +export const MISTRAL_MODEL = "open-mistral-7b"; diff --git a/payloads/cases/simple.ts b/payloads/cases/simple.ts index 8fbdf0f6..fea2c545 100644 --- a/payloads/cases/simple.ts +++ b/payloads/cases/simple.ts @@ -5,6 +5,7 @@ import { OPENAI_RESPONSES_MODEL, ANTHROPIC_MODEL, BEDROCK_MODEL, + MISTRAL_MODEL, } from "./models"; // Simple test cases - basic functionality testing @@ -62,6 +63,16 @@ export const simpleCases: TestCaseCollection = { }, ], }, + + mistral: { + model: MISTRAL_MODEL, + messages: [ + { + role: "user", + content: "What is the capital of France?", + }, + ], + }, }, reasoningRequest: { @@ -125,6 +136,17 @@ export const simpleCases: TestCaseCollection = { }, ], }, + + mistral: { + model: MISTRAL_MODEL, + messages: [ + { + role: "user", + content: + "Solve this step by step: If a train travels 60 mph for 2 hours, then 80 mph for 1 hour, what's the average speed?", + }, + ], + }, }, reasoningRequestTruncated: { @@ -196,6 +218,18 @@ export const simpleCases: TestCaseCollection = { maxTokens: 100, }, }, + + mistral: { + model: MISTRAL_MODEL, + maxTokens: 100, + messages: [ + { + role: "user", + content: + "Solve this step by step: If a train travels 60 mph for 2 hours, then 80 mph for 1 hour, what's the average speed?", + }, + ], + }, }, toolCallRequest: { @@ -343,5 +377,35 @@ export const simpleCases: TestCaseCollection = { ], }, }, + + mistral: { + model: MISTRAL_MODEL, + messages: [ + { + role: "user", + content: "What's the weather like in San Francisco?", + }, + ], + tools: [ + { + type: "function", + function: { + name: "get_weather", + description: "Get the current weather for a location", + parameters: { + type: "object", + properties: { + location: { + type: "string", + description: "The city and state, e.g. San Francisco, CA", + }, + }, + required: ["location"], + }, + }, + }, + ], + toolChoice: "auto", + }, }, }; diff --git a/payloads/cases/types.ts b/payloads/cases/types.ts index 7765ab4f..f9354296 100644 --- a/payloads/cases/types.ts +++ b/payloads/cases/types.ts @@ -2,6 +2,7 @@ import OpenAI from "openai"; import Anthropic from "@anthropic-ai/sdk"; import type { Content, GenerateContentConfig, Tool } from "@google/genai"; import type { ConverseCommandInput } from "@aws-sdk/client-bedrock-runtime"; +import type { ChatCompletionRequest } from "@mistralai/mistralai/models/components"; // Google Gemini API request type (matching the js-genai library) export interface GoogleGenerateContentRequest { @@ -14,6 +15,9 @@ export interface GoogleGenerateContentRequest { // Re-export Bedrock type for convenience export type BedrockConverseRequest = ConverseCommandInput; +// Re-export Mistral type for convenience +export type MistralChatCompletionRequest = ChatCompletionRequest; + // Well-defined types for test cases export interface TestCase { "chat-completions": OpenAI.Chat.Completions.ChatCompletionCreateParams | null; @@ -21,6 +25,7 @@ export interface TestCase { anthropic: Anthropic.Messages.MessageCreateParams | null; google: GoogleGenerateContentRequest | null; bedrock: BedrockConverseRequest | null; + mistral: MistralChatCompletionRequest | null; } // Collection of test cases organized by name @@ -37,4 +42,5 @@ export const PROVIDER_TYPES = [ "anthropic", "google", "bedrock", + "mistral", ] as const; diff --git a/payloads/package.json b/payloads/package.json index e5951ec1..d6c51208 100644 --- a/payloads/package.json +++ b/payloads/package.json @@ -15,6 +15,7 @@ "@anthropic-ai/sdk": "^0.63.0", "@aws-sdk/client-bedrock-runtime": "^3.700.0", "@google/genai": "^1.34.0", + "@mistralai/mistralai": "^1.11.0", "openai": "^5.22.0" }, "devDependencies": { diff --git a/payloads/scripts/capture.ts b/payloads/scripts/capture.ts index 9c71cc2c..bc6e6afb 100644 --- a/payloads/scripts/capture.ts +++ b/payloads/scripts/capture.ts @@ -11,6 +11,7 @@ import { openaiResponsesExecutor } from "./providers/openai-responses"; import { anthropicExecutor } from "./providers/anthropic"; import { googleExecutor } from "./providers/google"; import { bedrockExecutor } from "./providers/bedrock"; +import { mistralExecutor } from "./providers/mistral"; import { ProviderExecutor } from "./types"; // Update provider names to be more descriptive @@ -20,6 +21,7 @@ const allProviders = [ anthropicExecutor, googleExecutor, bedrockExecutor, + mistralExecutor, ] as const; interface CaptureOptions { diff --git a/payloads/scripts/providers/mistral.ts b/payloads/scripts/providers/mistral.ts new file mode 100644 index 00000000..2b13ad5d --- /dev/null +++ b/payloads/scripts/providers/mistral.ts @@ -0,0 +1,210 @@ +import { Mistral } from "@mistralai/mistralai"; +import type { + ChatCompletionRequest, + ChatCompletionResponse, + CompletionChunk, +} from "@mistralai/mistralai/models/components"; +import { CaptureResult, ProviderExecutor } from "../types"; +import { + allTestCases, + getCaseNames, + getCaseForProvider, + MISTRAL_MODEL, +} from "../../cases"; + +// Mistral cases - extracted from unified cases +export const mistralCases: Record = {}; + +// Populate cases from unified structure +getCaseNames(allTestCases).forEach((caseName) => { + const caseData = getCaseForProvider(allTestCases, caseName, "mistral"); + if (caseData) { + mistralCases[caseName] = caseData; + } +}); + +type ParallelMistralResult = + | { + type: "response"; + data: ChatCompletionResponse; + } + | { + type: "streamingResponse"; + data: Array; + }; + +export async function executeMistral( + caseName: string, + payload: ChatCompletionRequest, + stream?: boolean +): Promise< + CaptureResult +> { + const client = new Mistral({ apiKey: process.env.MISTRAL_API_KEY }); + const result: CaptureResult< + ChatCompletionRequest, + ChatCompletionResponse, + CompletionChunk + > = { request: payload }; + + try { + // Create promises for parallel execution + const promises: Promise[] = []; + + // Add non-streaming call if requested + if (stream !== true) { + promises.push( + client.chat + .complete({ + ...payload, + model: MISTRAL_MODEL, + }) + .then((response) => ({ type: "response", data: response })) + ); + } + + // Add streaming call if requested + if (stream !== false) { + promises.push( + (async () => { + const streamChunks: Array = []; + const streamResponse = await client.chat.stream({ + ...payload, + model: MISTRAL_MODEL, + }); + + for await (const event of streamResponse) { + streamChunks.push(event.data); + } + return { type: "streamingResponse", data: streamChunks }; + })() + ); + } + + // Execute initial calls in parallel + const initialResults = await Promise.all(promises); + + // Process results + for (const result_ of initialResults) { + if (result_.type === "response") { + result.response = result_.data; + } else if (result_.type === "streamingResponse") { + result.streamingResponse = result_.data; + } + } + + // Create follow-up conversation if we have a non-streaming response + if ( + result.response && + "choices" in result.response && + result.response.choices?.[0]?.message + ) { + const assistantMessage = result.response.choices[0].message; + + // Build follow-up messages, handling tool calls + const followUpMessages: ChatCompletionRequest["messages"] = [ + ...payload.messages, + { + role: "assistant", + content: assistantMessage.content || "", + toolCalls: assistantMessage.toolCalls, + }, + ]; + + // If the assistant message contains tool calls, add dummy tool responses + if (assistantMessage.toolCalls && assistantMessage.toolCalls.length > 0) { + for (const toolCall of assistantMessage.toolCalls) { + followUpMessages.push({ + role: "tool", + toolCallId: toolCall.id, + content: "71 degrees", + }); + } + } else { + // Always add the user follow-up message + followUpMessages.push({ + role: "user", + content: "What should I do next?", + }); + } + + const followUpPayload: ChatCompletionRequest = { + ...payload, + messages: followUpMessages, + }; + + result.followupRequest = followUpPayload; + + // Create follow-up promises for parallel execution + type FollowupMistralResult = + | { + type: "followupResponse"; + data: ChatCompletionResponse; + } + | { + type: "followupStreamingResponse"; + data: Array; + }; + + const followupPromises: Promise[] = []; + + if (stream !== true) { + followupPromises.push( + client.chat + .complete({ + ...followUpPayload, + model: MISTRAL_MODEL, + }) + .then((response) => ({ type: "followupResponse", data: response })) + ); + } + + if (stream !== false) { + followupPromises.push( + (async () => { + const followupStreamChunks: Array = []; + const followupStreamResponse = await client.chat.stream({ + ...followUpPayload, + model: MISTRAL_MODEL, + }); + + for await (const event of followupStreamResponse) { + followupStreamChunks.push(event.data); + } + return { + type: "followupStreamingResponse", + data: followupStreamChunks, + }; + })() + ); + } + + // Execute follow-up calls in parallel + if (followupPromises.length > 0) { + const followupResults = await Promise.all(followupPromises); + + for (const result_ of followupResults) { + if (result_.type === "followupResponse") { + result.followupResponse = result_.data; + } else if (result_.type === "followupStreamingResponse") { + result.followupStreamingResponse = result_.data; + } + } + } + } + } catch (error) { + result.error = String(error); + } + + return result; +} + +export const mistralExecutor: ProviderExecutor< + ChatCompletionRequest, + ChatCompletionResponse, + CompletionChunk +> = { + name: "mistral", + cases: mistralCases, + execute: executeMistral, +}; diff --git a/payloads/snapshots/complexReasoningRequest/mistral/followup-request.json b/payloads/snapshots/complexReasoningRequest/mistral/followup-request.json new file mode 100644 index 00000000..31335f70 --- /dev/null +++ b/payloads/snapshots/complexReasoningRequest/mistral/followup-request.json @@ -0,0 +1,19 @@ +{ + "model": "open-mistral-7b", + "maxTokens": 20000, + "messages": [ + { + "role": "user", + "content": "There is a digital clock, with minutes and hours in the form of 00:00. The clock shows all times from 00:00 to 23:59 and repeating. Imagine you had a list of all these times. Which digit(s) is the most common and which is the rarest? Can you find their percentage?" + }, + { + "role": "assistant", + "content": "To find the most common and rarest digits in the hours and minutes, let's analyze each separately.\n\nFor the hours, there are 10 possible digits from 0 to 9. The hour digit repeats 24 times in the sequence (from 00:00 to 23:59).\n\nHere is the count of each hour digit:\n0: 24\n1: 24\n2: 24\n3: 24\n4: 24\n5: 24\n6: 24\n7: 24\n8: 24\n9: 24\n\nSince each digit appears 24 times, they all have the same frequency of 24/100 = 24%.\n\nFor the minutes, there are also 10 possible digits from 0 to 9. Each minute digit repeats 60 times in the sequence (from 00:00 to 59:59), as the minutes reset every hour.\n\nHere is the count of each minute digit:\n0: 60\n1: 60\n2: 60\n3: 60\n4: 60\n5: 60\n6: 60\n7: 54 (since there are no 57 minutes or 63 minutes)\n8: 54 (since there are no 58 minutes or 62 minutes)\n9: 54 (since there are no 59 minutes)\n\nThe digits 0, 1, 2, 4, 6 have a frequency of 60/100 = 60%, and the digits 3, 7, 8, 9 have a frequency of 54/60 = 90% (or 54/100 = 90%).\n\nSo, for minutes, the most common digits are 0, 1, 2, 4, 6, with a frequency of 60%, and the rarest digits are 3, 7, 8, and 9, with a frequency of 90%. The frequency difference between the most common and rarest digits is 30% (90% - 60%).", + "toolCalls": null + }, + { + "role": "user", + "content": "What should I do next?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/complexReasoningRequest/mistral/followup-response-streaming.json b/payloads/snapshots/complexReasoningRequest/mistral/followup-response-streaming.json new file mode 100644 index 00000000..146ad17e --- /dev/null +++ b/payloads/snapshots/complexReasoningRequest/mistral/followup-response-streaming.json @@ -0,0 +1,6353 @@ +[ + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "In" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " previous" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " answer" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " showed" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " how" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " rare" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "st" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digital" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " clock" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " However" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " didn" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "t" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " calculate" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " their" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " exact" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "To" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " divide" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " count" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " that" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " number" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " multip" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ly" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "For" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " since" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appears" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " out" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " x" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " x" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " seconds" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hour" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "/" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " \\" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "*" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "≈" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "For" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " since" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appear" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " out" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " x" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " seconds" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " their" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "/" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " \\" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "*" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "≈" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " For" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " remaining" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " since" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " they" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appear" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " out" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " their" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "/" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " \\" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "*" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "≈" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "So" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occurring" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " approximately" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occurring" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " approximately" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " least" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occurring" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " approximately" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " least" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occurring" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " approximately" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " frequency" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " difference" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " between" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " rare" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "st" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "813d5c46089e4fbbada7b5e6b4eeda63", + "object": "chat.completion.chunk", + "created": 1767640582, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 600, + "completionTokens": 422, + "totalTokens": 1022 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/complexReasoningRequest/mistral/followup-response.json b/payloads/snapshots/complexReasoningRequest/mistral/followup-response.json new file mode 100644 index 00000000..fadc7218 --- /dev/null +++ b/payloads/snapshots/complexReasoningRequest/mistral/followup-response.json @@ -0,0 +1,23 @@ +{ + "id": "c58e7e38d3e84125a477c9ad2e2dd6be", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 600, + "completionTokens": 741, + "totalTokens": 1341 + }, + "created": 1767640582, + "choices": [ + { + "index": 0, + "message": { + "content": "To find the most common and rarest digits in the combined hours and minutes, we can calculate the frequency of each digit by considering all possible two-digit combinations.\n\nThere are 100 possible two-digit combinations (from 00 to 99), and each combination appears once in the sequence (from 00:00 to 23:59).\n\nSince we have already found that the most common digits for hours and minutes are the same (0, 1, 2, 4, 6), they will still be the most common in the combined list. To find their frequency, we can count the number of times they appear in the two-digit combinations.\n\nThe count of each common digit in two-digit combinations:\n00: 1\n10: 9\n20: 9\n40: 9\n60: 9\n\nThe total number of occurrences of the common digits: 1 + 9 + 9 + 9 + 9 = 38.\n\nSince there are 100 two-digit combinations, the frequency of the common digits is 38/100 = 38%.\n\nNow let's find the frequency of the rarest digits (3, 7, 8, 9). We will consider the hours and minutes separately, and then combine the results.\n\nHours:\n30: 24\n43: 24\n56: 24\n67: 24\n78: 24\n89: 24\n\nThe total number of occurrences of the rare digits for hours: 24 + 24 + 24 + 24 + 24 + 24 = 144.\n\nMinutes:\n30: 54\n40: 54\n50: 60\n60: 54\n70: 54\n80: 54\n90: 54\n\nThe total number of occurrences of the rare digits for minutes: 54 + 54 + 60 + 54 + 54 + 54 + 54 = 336.\n\nThe total number of occurrences of the rare digits: 144 + 336 = 480.\n\nSince there are 100 two-digit combinations, the frequency of the rare digits is 480/100 = 480%.\n\nThe combined frequency of the common and rare digits is 38% (common) + 480% (rare) = 518%. However, percentages should not exceed 100%, so we can say that the combined frequency of the common digits is approximately 38%, and the combined frequency of the rare digits is approximately 100% - 38% = 62%.\n\nIn summary, the most common digit(s) in the combined hours and minutes are 0, 1, 2, 4, and 6, with a frequency of approximately 38%, and the rarest digit(s) are 3, 7, 8, and 9, with a frequency of approximately 62%.", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/complexReasoningRequest/mistral/request.json b/payloads/snapshots/complexReasoningRequest/mistral/request.json new file mode 100644 index 00000000..09d8cabd --- /dev/null +++ b/payloads/snapshots/complexReasoningRequest/mistral/request.json @@ -0,0 +1,10 @@ +{ + "model": "open-mistral-7b", + "maxTokens": 20000, + "messages": [ + { + "role": "user", + "content": "There is a digital clock, with minutes and hours in the form of 00:00. The clock shows all times from 00:00 to 23:59 and repeating. Imagine you had a list of all these times. Which digit(s) is the most common and which is the rarest? Can you find their percentage?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/complexReasoningRequest/mistral/response-streaming.json b/payloads/snapshots/complexReasoningRequest/mistral/response-streaming.json new file mode 100644 index 00000000..6fab1440 --- /dev/null +++ b/payloads/snapshots/complexReasoningRequest/mistral/response-streaming.json @@ -0,0 +1,9443 @@ +[ + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "To" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " solve" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " this" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " problem" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " let" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "s" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " first" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " understand" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " structure" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digital" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " clock" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " from" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " consists" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " two" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " two" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "For" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " numbers" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " through" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " once" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " twice" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " number" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " except" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "For" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " from" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occurs" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " twice" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " making" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "Since" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " have" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " non" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "uniform" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distribution" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " let" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "s" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " calculate" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hour" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "it" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appears" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appear" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "So" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " least" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " only" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "For" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " all" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " equally" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "To" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " divide" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " number" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " number" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " times" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appear" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "hour" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " period" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Since" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " there" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " per" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hour" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " there" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " *" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "hour" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " period" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " /" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "/" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "≈" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "-" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "9" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " /" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "/" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "≈" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "In" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " conclusion" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " all" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " other" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " have" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " equal" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " occur" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ren" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ces" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " minutes" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " least" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " common" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " digit" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " approximately" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%," + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " percentage" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " other" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dig" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "its" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " approximately" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "%." + }, + "finishReason": null + } + ] + }, + { + "id": "4e66710b52d446999b02711d2ddb1f50", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 79, + "completionTokens": 629, + "totalTokens": 708 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/complexReasoningRequest/mistral/response.json b/payloads/snapshots/complexReasoningRequest/mistral/response.json new file mode 100644 index 00000000..4405991c --- /dev/null +++ b/payloads/snapshots/complexReasoningRequest/mistral/response.json @@ -0,0 +1,23 @@ +{ + "id": "85a92f35a9aa4a3d9451d4642ac3b050", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 79, + "completionTokens": 513, + "totalTokens": 592 + }, + "created": 1767640578, + "choices": [ + { + "index": 0, + "message": { + "content": "To find the most common and rarest digits in the hours and minutes, let's analyze each separately.\n\nFor the hours, there are 10 possible digits from 0 to 9. The hour digit repeats 24 times in the sequence (from 00:00 to 23:59).\n\nHere is the count of each hour digit:\n0: 24\n1: 24\n2: 24\n3: 24\n4: 24\n5: 24\n6: 24\n7: 24\n8: 24\n9: 24\n\nSince each digit appears 24 times, they all have the same frequency of 24/100 = 24%.\n\nFor the minutes, there are also 10 possible digits from 0 to 9. Each minute digit repeats 60 times in the sequence (from 00:00 to 59:59), as the minutes reset every hour.\n\nHere is the count of each minute digit:\n0: 60\n1: 60\n2: 60\n3: 60\n4: 60\n5: 60\n6: 60\n7: 54 (since there are no 57 minutes or 63 minutes)\n8: 54 (since there are no 58 minutes or 62 minutes)\n9: 54 (since there are no 59 minutes)\n\nThe digits 0, 1, 2, 4, 6 have a frequency of 60/100 = 60%, and the digits 3, 7, 8, 9 have a frequency of 54/60 = 90% (or 54/100 = 90%).\n\nSo, for minutes, the most common digits are 0, 1, 2, 4, 6, with a frequency of 60%, and the rarest digits are 3, 7, 8, and 9, with a frequency of 90%. The frequency difference between the most common and rarest digits is 30% (90% - 60%).", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequest/mistral/followup-request.json b/payloads/snapshots/reasoningRequest/mistral/followup-request.json new file mode 100644 index 00000000..42e48de0 --- /dev/null +++ b/payloads/snapshots/reasoningRequest/mistral/followup-request.json @@ -0,0 +1,18 @@ +{ + "model": "open-mistral-7b", + "messages": [ + { + "role": "user", + "content": "Solve this step by step: If a train travels 60 mph for 2 hours, then 80 mph for 1 hour, what's the average speed?" + }, + { + "role": "assistant", + "content": "To find the average speed, we first need to calculate the total distance traveled and then divide it by the total time taken.\n\n1. First, let's find the distance traveled during the first 2 hours at 60 mph:\n Distance1 = Speed1 * Time1\n Distance1 = 60 mph * 2 hours = 120 miles\n\n2. Next, let's find the distance traveled during the next 1 hour at 80 mph:\n Distance2 = Speed2 * Time2\n Distance2 = 80 mph * 1 hour = 80 miles\n\n3. Now, let's find the total distance traveled:\n Total distance = Distance1 + Distance2\n Total distance = 120 miles + 80 miles = 200 miles\n\n4. The total time taken is the sum of the individual times:\n Total time = Time1 + Time2\n Total time = 2 hours + 1 hour = 3 hours\n\n5. Finally, let's find the average speed:\n Average speed = Total distance / Total time\n Average speed = 200 miles / 3 hours ≈ 66.67 mph (approximately)\n\nSo, the average speed of the train is approximately 66.67 mph.", + "toolCalls": null + }, + { + "role": "user", + "content": "What should I do next?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequest/mistral/followup-response-streaming.json b/payloads/snapshots/reasoningRequest/mistral/followup-response-streaming.json new file mode 100644 index 00000000..1f2df019 --- /dev/null +++ b/payloads/snapshots/reasoningRequest/mistral/followup-response-streaming.json @@ -0,0 +1,1148 @@ +[ + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "You" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " now" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " use" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " calculated" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " average" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " answer" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " question" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " use" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " further" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " calculations" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " there" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " additional" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " details" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " conditions" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " question" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " that" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " need" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " be" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " considered" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " might" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " need" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " re" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "visit" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " steps" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " adjust" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " your" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " calculations" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " accordingly" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " For" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " example" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " if" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " train" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " stopped" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " certain" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " period" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " during" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " trip" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " would" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " need" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " adjust" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " accordingly" + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "8169d434e8174ca08437dcc6727a68d2", + "object": "chat.completion.chunk", + "created": 1767640580, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 355, + "completionTokens": 75, + "totalTokens": 430 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequest/mistral/followup-response.json b/payloads/snapshots/reasoningRequest/mistral/followup-response.json new file mode 100644 index 00000000..ae0075ed --- /dev/null +++ b/payloads/snapshots/reasoningRequest/mistral/followup-response.json @@ -0,0 +1,23 @@ +{ + "id": "bb3334c73acc483a8741ea20d6c265d4", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 355, + "completionTokens": 85, + "totalTokens": 440 + }, + "created": 1767640580, + "choices": [ + { + "index": 0, + "message": { + "content": "You have now solved the problem and found the average speed of the train. If you want to verify your answer, you can use a calculator or another method to ensure that the calculation is correct. If the problem is part of a larger set or assignment, you may need to use the average speed to solve additional problems. If you have any other questions or need help with a different problem, feel free to ask!", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequest/mistral/request.json b/payloads/snapshots/reasoningRequest/mistral/request.json new file mode 100644 index 00000000..ab297d9c --- /dev/null +++ b/payloads/snapshots/reasoningRequest/mistral/request.json @@ -0,0 +1,9 @@ +{ + "model": "open-mistral-7b", + "messages": [ + { + "role": "user", + "content": "Solve this step by step: If a train travels 60 mph for 2 hours, then 80 mph for 1 hour, what's the average speed?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequest/mistral/response-streaming.json b/payloads/snapshots/reasoningRequest/mistral/response-streaming.json new file mode 100644 index 00000000..e56bc6ed --- /dev/null +++ b/payloads/snapshots/reasoningRequest/mistral/response-streaming.json @@ -0,0 +1,3518 @@ +[ + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "To" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " average" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " we" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " first" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " need" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " traveled" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " taken" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " For" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " first" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " part" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " journey" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " train" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " travels" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " at" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " m" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ph" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " so" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " covers" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " *" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " For" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " second" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " part" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " journey" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " train" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " travels" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " at" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " m" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ph" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hour" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " so" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " covers" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " *" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " traveled" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " +" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " taken" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "for" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " first" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " part" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " +" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hour" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "for" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " second" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " part" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " To" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " average" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " we" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " divide" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " /" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " m" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ph" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "appro" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "xim" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ately" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "So" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " average" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " entire" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " trip" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " approximately" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " m" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ph" + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01fbef6b5d3e4244b5b879d62080c74a", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 42, + "completionTokens": 233, + "totalTokens": 275 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequest/mistral/response.json b/payloads/snapshots/reasoningRequest/mistral/response.json new file mode 100644 index 00000000..af47c1f5 --- /dev/null +++ b/payloads/snapshots/reasoningRequest/mistral/response.json @@ -0,0 +1,23 @@ +{ + "id": "ea6e9bea11014132890f944f351e7d97", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 42, + "completionTokens": 305, + "totalTokens": 347 + }, + "created": 1767640578, + "choices": [ + { + "index": 0, + "message": { + "content": "To find the average speed, we first need to calculate the total distance traveled and then divide it by the total time taken.\n\n1. First, let's find the distance traveled during the first 2 hours at 60 mph:\n Distance1 = Speed1 * Time1\n Distance1 = 60 mph * 2 hours = 120 miles\n\n2. Next, let's find the distance traveled during the next 1 hour at 80 mph:\n Distance2 = Speed2 * Time2\n Distance2 = 80 mph * 1 hour = 80 miles\n\n3. Now, let's find the total distance traveled:\n Total distance = Distance1 + Distance2\n Total distance = 120 miles + 80 miles = 200 miles\n\n4. The total time taken is the sum of the individual times:\n Total time = Time1 + Time2\n Total time = 2 hours + 1 hour = 3 hours\n\n5. Finally, let's find the average speed:\n Average speed = Total distance / Total time\n Average speed = 200 miles / 3 hours ≈ 66.67 mph (approximately)\n\nSo, the average speed of the train is approximately 66.67 mph.", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequestTruncated/mistral/followup-request.json b/payloads/snapshots/reasoningRequestTruncated/mistral/followup-request.json new file mode 100644 index 00000000..72123ab7 --- /dev/null +++ b/payloads/snapshots/reasoningRequestTruncated/mistral/followup-request.json @@ -0,0 +1,19 @@ +{ + "model": "open-mistral-7b", + "maxTokens": 100, + "messages": [ + { + "role": "user", + "content": "Solve this step by step: If a train travels 60 mph for 2 hours, then 80 mph for 1 hour, what's the average speed?" + }, + { + "role": "assistant", + "content": "To find the average speed, we first need to find the total distance traveled and the total time taken.\n\n1. For the first part of the journey, the train travels at 60 mph for 2 hours, so it covers a distance of 60 * 2 = 120 miles.\n\n2. For the second part, the train travels at 80 mph for 1 hour, covering a distance of 80 * 1 =", + "toolCalls": null + }, + { + "role": "user", + "content": "What should I do next?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequestTruncated/mistral/followup-response-streaming.json b/payloads/snapshots/reasoningRequestTruncated/mistral/followup-response-streaming.json new file mode 100644 index 00000000..be83abd2 --- /dev/null +++ b/payloads/snapshots/reasoningRequestTruncated/mistral/followup-response-streaming.json @@ -0,0 +1,1523 @@ +[ + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "Now" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " we" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " have" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " taken" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " +" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hour" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ")" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " entire" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " journey" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "To" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " average" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " we" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " divide" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "A" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "verage" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Total" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " /" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Total" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "A" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "verage" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " /" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "So" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " average" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " per" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hour" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " (" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "round" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ed" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " nearest" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " whole" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " number" + }, + "finishReason": null + } + ] + }, + { + "id": "724ec3d593a649e4b35e6bbd76e03fc6", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 151, + "completionTokens": 100, + "totalTokens": 251 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": ")." + }, + "finishReason": "length" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequestTruncated/mistral/followup-response.json b/payloads/snapshots/reasoningRequestTruncated/mistral/followup-response.json new file mode 100644 index 00000000..c6ebf01c --- /dev/null +++ b/payloads/snapshots/reasoningRequestTruncated/mistral/followup-response.json @@ -0,0 +1,23 @@ +{ + "id": "b7d2bf39138f45a9b5e076a1bf2b7c1d", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 151, + "completionTokens": 100, + "totalTokens": 251 + }, + "created": 1767640579, + "choices": [ + { + "index": 0, + "message": { + "content": "Next, we add the distances covered in both parts of the journey to find the total distance traveled: 120 (from first part) + 80 (from second part) = 200 miles.\n\nThe total time taken is the sum of the times spent in both parts: 2 hours (from first part) + 1 hour (from second part) = 3 hours.\n\nNow, to find the average speed, we divide the total distance by", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "length" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequestTruncated/mistral/request.json b/payloads/snapshots/reasoningRequestTruncated/mistral/request.json new file mode 100644 index 00000000..9c5229de --- /dev/null +++ b/payloads/snapshots/reasoningRequestTruncated/mistral/request.json @@ -0,0 +1,10 @@ +{ + "model": "open-mistral-7b", + "maxTokens": 100, + "messages": [ + { + "role": "user", + "content": "Solve this step by step: If a train travels 60 mph for 2 hours, then 80 mph for 1 hour, what's the average speed?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequestTruncated/mistral/response-streaming.json b/payloads/snapshots/reasoningRequestTruncated/mistral/response-streaming.json new file mode 100644 index 00000000..4144f8e5 --- /dev/null +++ b/payloads/snapshots/reasoningRequestTruncated/mistral/response-streaming.json @@ -0,0 +1,1523 @@ +[ + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "To" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " find" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " average" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " we" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ll" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " first" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " calculate" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " traveled" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " taken" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " then" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " divide" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " by" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " total" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Cal" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "culate" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " traveled" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " at" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " each" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " speed" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " For" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " first" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " part" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " train" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " travels" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " at" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " m" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ph" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " hours" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " so" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " covers" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " distance" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "6" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " *" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " =" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "0" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " miles" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " -" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " For" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " second" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " part" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " train" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " travels" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " at" + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "9aea3de8d4a24536b7b1efe7bfad80c9", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 42, + "completionTokens": 100, + "totalTokens": 142 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "8" + }, + "finishReason": "length" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/reasoningRequestTruncated/mistral/response.json b/payloads/snapshots/reasoningRequestTruncated/mistral/response.json new file mode 100644 index 00000000..204b190a --- /dev/null +++ b/payloads/snapshots/reasoningRequestTruncated/mistral/response.json @@ -0,0 +1,23 @@ +{ + "id": "41262b6fe814420a914a7316e330aa5d", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 42, + "completionTokens": 100, + "totalTokens": 142 + }, + "created": 1767640578, + "choices": [ + { + "index": 0, + "message": { + "content": "To find the average speed, we first need to find the total distance traveled and the total time taken.\n\n1. For the first part of the journey, the train travels at 60 mph for 2 hours, so it covers a distance of 60 * 2 = 120 miles.\n\n2. For the second part, the train travels at 80 mph for 1 hour, covering a distance of 80 * 1 =", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "length" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningWithOutput/mistral/followup-request.json b/payloads/snapshots/reasoningWithOutput/mistral/followup-request.json new file mode 100644 index 00000000..cc1fb289 --- /dev/null +++ b/payloads/snapshots/reasoningWithOutput/mistral/followup-request.json @@ -0,0 +1,18 @@ +{ + "model": "open-mistral-7b", + "messages": [ + { + "role": "user", + "content": "What color is the sky?" + }, + { + "role": "assistant", + "content": "The color of the sky can appear differently depending on the time of day, weather, and location. Generally, during a clear day, the sky appears blue due to a process called Rayleigh scattering. However, at sunrise or sunset, the sky can appear red, orange, pink, or purple. Also, during twilight, the sky can appear blue or violet.", + "toolCalls": null + }, + { + "role": "user", + "content": "What should I do next?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningWithOutput/mistral/followup-response-streaming.json b/payloads/snapshots/reasoningWithOutput/mistral/followup-response-streaming.json new file mode 100644 index 00000000..2b0e3b28 --- /dev/null +++ b/payloads/snapshots/reasoningWithOutput/mistral/followup-response-streaming.json @@ -0,0 +1,1118 @@ +[ + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "Based" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " on" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " our" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " conversation" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " seems" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " that" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " asking" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " about" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " color" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " sky" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " have" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " any" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " other" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " questions" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " topics" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " would" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " like" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " discuss" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " feel" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " free" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " ask" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "!" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "m" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " here" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " help" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " have" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " any" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " other" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " tasks" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " projects" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " need" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " assistance" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " help" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " that" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " as" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " well" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Let" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " me" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " know" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " what" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " need" + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "7e56c386ef434bf2b1d6fc852aa19890", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 98, + "completionTokens": 73, + "totalTokens": 171 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/reasoningWithOutput/mistral/followup-response.json b/payloads/snapshots/reasoningWithOutput/mistral/followup-response.json new file mode 100644 index 00000000..8ba39ddb --- /dev/null +++ b/payloads/snapshots/reasoningWithOutput/mistral/followup-response.json @@ -0,0 +1,23 @@ +{ + "id": "48c39675e7d34062ad0af957d2922e53", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 98, + "completionTokens": 102, + "totalTokens": 200 + }, + "created": 1767640579, + "choices": [ + { + "index": 0, + "message": { + "content": "It depends on what you are working on or what you want to do. If you are working on a project or assignment, you should continue with the task at hand. If you are looking for more information on a topic, you can conduct research or ask questions to learn more. If you are looking to relax or have fun, you could engage in a hobby, exercise, or socialize with friends and family. Ultimately, it is up to you to decide what you want to do next.", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningWithOutput/mistral/request.json b/payloads/snapshots/reasoningWithOutput/mistral/request.json new file mode 100644 index 00000000..ea2ec1ca --- /dev/null +++ b/payloads/snapshots/reasoningWithOutput/mistral/request.json @@ -0,0 +1,9 @@ +{ + "model": "open-mistral-7b", + "messages": [ + { + "role": "user", + "content": "What color is the sky?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/reasoningWithOutput/mistral/response-streaming.json b/payloads/snapshots/reasoningWithOutput/mistral/response-streaming.json new file mode 100644 index 00000000..133f0656 --- /dev/null +++ b/payloads/snapshots/reasoningWithOutput/mistral/response-streaming.json @@ -0,0 +1,1373 @@ +[ + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "The" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " color" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " sky" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " vary" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " depending" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " on" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " time" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " day" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " weather" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " location" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Typ" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ically" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appears" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " blue" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " during" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " clear" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " day" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " due" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " process" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " called" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Ray" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "le" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "igh" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " scattering" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " However" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " at" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " sun" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "rise" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " sun" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "set" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " appear" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " red" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " orange" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " pink" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " purple" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " On" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " an" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " over" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "cast" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " day" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "s" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " usually" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " gray" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " At" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " night" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " it" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "s" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " black" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " when" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " there" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "s" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " no" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " moon" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " artificial" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " light" + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "e4806fdb18424cad920bfc3496ea144d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 9, + "completionTokens": 90, + "totalTokens": 99 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/reasoningWithOutput/mistral/response.json b/payloads/snapshots/reasoningWithOutput/mistral/response.json new file mode 100644 index 00000000..b204d104 --- /dev/null +++ b/payloads/snapshots/reasoningWithOutput/mistral/response.json @@ -0,0 +1,23 @@ +{ + "id": "c7d4aa3bb187458499a808ca825e6afb", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 9, + "completionTokens": 81, + "totalTokens": 90 + }, + "created": 1767640578, + "choices": [ + { + "index": 0, + "message": { + "content": "The color of the sky can appear differently depending on the time of day, weather, and location. Generally, during a clear day, the sky appears blue due to a process called Rayleigh scattering. However, at sunrise or sunset, the sky can appear red, orange, pink, or purple. Also, during twilight, the sky can appear blue or violet.", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/simpleRequest/mistral/followup-request.json b/payloads/snapshots/simpleRequest/mistral/followup-request.json new file mode 100644 index 00000000..4afb3212 --- /dev/null +++ b/payloads/snapshots/simpleRequest/mistral/followup-request.json @@ -0,0 +1,18 @@ +{ + "model": "open-mistral-7b", + "messages": [ + { + "role": "user", + "content": "What is the capital of France?" + }, + { + "role": "assistant", + "content": "The capital of France is Paris. It is located in the northern part of the country and serves as a significant global center for art, fashion, gastronomy, and culture. Paris is renowned for its iconic landmarks such as the Eiffel Tower, Louvre Museum, Notre-Dame Cathedral, and Arc de Triomphe. The city is also home to several UNESCO World Heritage sites.", + "toolCalls": null + }, + { + "role": "user", + "content": "What should I do next?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/simpleRequest/mistral/followup-response-streaming.json b/payloads/snapshots/simpleRequest/mistral/followup-response-streaming.json new file mode 100644 index 00000000..ad268adb --- /dev/null +++ b/payloads/snapshots/simpleRequest/mistral/followup-response-streaming.json @@ -0,0 +1,4013 @@ +[ + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "I" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "m" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " here" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " help" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " with" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " your" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " questions" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "!" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " have" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " any" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " other" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " questions" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " or" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " topics" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "d" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " like" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " explore" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " feel" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " free" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " ask" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Here" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " are" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " some" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " suggestions" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Travel" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "re" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " planning" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " a" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " trip" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " France" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " provide" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " information" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " about" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " popular" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " tourist" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " attra" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ctions" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " cultural" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " events" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " travel" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " tips" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "2" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " History" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " provide" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " details" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " about" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " history" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " France" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " including" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " its" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " major" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " historical" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " events" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " significant" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " figures" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " cultural" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " developments" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "3" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Language" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " If" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "re" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " interested" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " learning" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " French" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " offer" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " basic" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " phrases" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " gram" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "mar" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " tips" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " cultural" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " insights" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " about" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " language" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "4" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Food" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " W" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ine" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " France" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " famous" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " its" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " food" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " wine" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " provide" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " recipes" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " pair" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ing" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " suggestions" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " information" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " about" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " traditional" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " French" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " dishes" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " like" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " esc" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "arg" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ot" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " co" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "q" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " au" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " vin" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " tar" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "te" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " t" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "atin" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "5" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Art" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": ":" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " France" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " home" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " some" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " world" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "s" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " famous" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " artists" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " art" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " movements" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " can" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " provide" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " information" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " about" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " works" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " artists" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " like" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Mon" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "et" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Ren" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "oir" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Pic" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "asso" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Mat" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "isse" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " as" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " well" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " as" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " history" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " art" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " movements" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " like" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Im" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "pression" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ism" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Cub" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ism" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Sur" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "real" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ism" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "\n" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "Just" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " let" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " me" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " know" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " what" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " you" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "re" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " interested" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " I" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "'" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ll" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " do" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " my" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " best" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " to" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " help" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "!" + }, + "finishReason": null + } + ] + }, + { + "id": "01e70826e8ca4088a5ad80adde90cd65", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 106, + "completionTokens": 266, + "totalTokens": 372 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/simpleRequest/mistral/followup-response.json b/payloads/snapshots/simpleRequest/mistral/followup-response.json new file mode 100644 index 00000000..c07a931a --- /dev/null +++ b/payloads/snapshots/simpleRequest/mistral/followup-response.json @@ -0,0 +1,23 @@ +{ + "id": "d4aa78a0548944179e83fafc358223fd", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 106, + "completionTokens": 77, + "totalTokens": 183 + }, + "created": 1767640579, + "choices": [ + { + "index": 0, + "message": { + "content": "After answering your question, I am now ready to assist you with additional questions or provide information on various topics. If you have any other queries, feel free to ask! You can also ask me to help you with tasks like setting reminders, finding recipes, making recommendations for books, movies, or music, and much more. I'm here to make your life easier!", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/simpleRequest/mistral/request.json b/payloads/snapshots/simpleRequest/mistral/request.json new file mode 100644 index 00000000..8f58e18d --- /dev/null +++ b/payloads/snapshots/simpleRequest/mistral/request.json @@ -0,0 +1,9 @@ +{ + "model": "open-mistral-7b", + "messages": [ + { + "role": "user", + "content": "What is the capital of France?" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/simpleRequest/mistral/response-streaming.json b/payloads/snapshots/simpleRequest/mistral/response-streaming.json new file mode 100644 index 00000000..64b78050 --- /dev/null +++ b/payloads/snapshots/simpleRequest/mistral/response-streaming.json @@ -0,0 +1,1208 @@ +[ + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "The" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " capital" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " France" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Paris" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Paris" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " not" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " only" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " capital" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " but" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " also" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " largest" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " city" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " France" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " one" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " most" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " famous" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " cities" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " world" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " known" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " for" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " its" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " rich" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " history" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " art" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " culture" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " The" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " French" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " government" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " head" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "qu" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "arter" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "ed" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Palace" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Vers" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "a" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "illes" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " located" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " just" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " outside" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Paris" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "," + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " but" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " main" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " administrative" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " center" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " and" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " seat" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " of" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " the" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " French" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " president" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Paris" + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "03ac82c4f785410c8a4869992a668a76", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 10, + "completionTokens": 79, + "totalTokens": 89 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/simpleRequest/mistral/response.json b/payloads/snapshots/simpleRequest/mistral/response.json new file mode 100644 index 00000000..9980d0f5 --- /dev/null +++ b/payloads/snapshots/simpleRequest/mistral/response.json @@ -0,0 +1,23 @@ +{ + "id": "1b0ba4614f504026a6b4a01ee217840c", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 10, + "completionTokens": 88, + "totalTokens": 98 + }, + "created": 1767640578, + "choices": [ + { + "index": 0, + "message": { + "content": "The capital of France is Paris. It is located in the northern part of the country and serves as a significant global center for art, fashion, gastronomy, and culture. Paris is renowned for its iconic landmarks such as the Eiffel Tower, Louvre Museum, Notre-Dame Cathedral, and Arc de Triomphe. The city is also home to several UNESCO World Heritage sites.", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/toolCallRequest/mistral/followup-request.json b/payloads/snapshots/toolCallRequest/mistral/followup-request.json new file mode 100644 index 00000000..455d2cd6 --- /dev/null +++ b/payloads/snapshots/toolCallRequest/mistral/followup-request.json @@ -0,0 +1,51 @@ +{ + "model": "open-mistral-7b", + "maxTokens": 20000, + "messages": [ + { + "role": "user", + "content": "What's the weather like in San Francisco?" + }, + { + "role": "assistant", + "content": "", + "toolCalls": [ + { + "id": "fk6q08UDy", + "function": { + "name": "get_weather", + "arguments": "{\"location\": \"San Francisco, CA\"}" + }, + "index": 0 + } + ] + }, + { + "role": "tool", + "toolCallId": "fk6q08UDy", + "content": "71 degrees" + } + ], + "tools": [ + { + "type": "function", + "function": { + "name": "get_weather", + "description": "Get the current weather for a location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. San Francisco, CA" + } + }, + "required": [ + "location" + ] + } + } + } + ], + "toolChoice": "auto" +} \ No newline at end of file diff --git a/payloads/snapshots/toolCallRequest/mistral/followup-response-streaming.json b/payloads/snapshots/toolCallRequest/mistral/followup-response-streaming.json new file mode 100644 index 00000000..0f6c2eb0 --- /dev/null +++ b/payloads/snapshots/toolCallRequest/mistral/followup-response-streaming.json @@ -0,0 +1,203 @@ +[ + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "The" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " weather" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " in" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " San" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " Francisco" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " is" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " " + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "7" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "1" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": " degrees" + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "content": "." + }, + "finishReason": null + } + ] + }, + { + "id": "f26fba115b7a457da619fa1a3ef715ff", + "object": "chat.completion.chunk", + "created": 1767640579, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 157, + "completionTokens": 12, + "totalTokens": 169 + }, + "choices": [ + { + "index": 0, + "delta": { + "content": "" + }, + "finishReason": "stop" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/toolCallRequest/mistral/followup-response.json b/payloads/snapshots/toolCallRequest/mistral/followup-response.json new file mode 100644 index 00000000..270167d2 --- /dev/null +++ b/payloads/snapshots/toolCallRequest/mistral/followup-response.json @@ -0,0 +1,23 @@ +{ + "id": "4723c3804c86445bb395bea157328568", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 157, + "completionTokens": 12, + "totalTokens": 169 + }, + "created": 1767640579, + "choices": [ + { + "index": 0, + "message": { + "content": "The weather in San Francisco is 71 degrees.", + "toolCalls": null, + "prefix": false, + "role": "assistant" + }, + "finishReason": "stop" + } + ] +} \ No newline at end of file diff --git a/payloads/snapshots/toolCallRequest/mistral/request.json b/payloads/snapshots/toolCallRequest/mistral/request.json new file mode 100644 index 00000000..540d04be --- /dev/null +++ b/payloads/snapshots/toolCallRequest/mistral/request.json @@ -0,0 +1,32 @@ +{ + "model": "open-mistral-7b", + "maxTokens": 20000, + "messages": [ + { + "role": "user", + "content": "What's the weather like in San Francisco?" + } + ], + "tools": [ + { + "type": "function", + "function": { + "name": "get_weather", + "description": "Get the current weather for a location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. San Francisco, CA" + } + }, + "required": [ + "location" + ] + } + } + } + ], + "toolChoice": "auto" +} \ No newline at end of file diff --git a/payloads/snapshots/toolCallRequest/mistral/response-streaming.json b/payloads/snapshots/toolCallRequest/mistral/response-streaming.json new file mode 100644 index 00000000..8db8ab83 --- /dev/null +++ b/payloads/snapshots/toolCallRequest/mistral/response-streaming.json @@ -0,0 +1,47 @@ +[ + { + "id": "416a85111145428c8d88f1bd40e2387d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "choices": [ + { + "index": 0, + "delta": { + "role": "assistant", + "content": "" + }, + "finishReason": null + } + ] + }, + { + "id": "416a85111145428c8d88f1bd40e2387d", + "object": "chat.completion.chunk", + "created": 1767640578, + "model": "open-mistral-7b", + "usage": { + "promptTokens": 94, + "completionTokens": 26, + "totalTokens": 120 + }, + "choices": [ + { + "index": 0, + "delta": { + "toolCalls": [ + { + "id": "zAhr0bY74", + "function": { + "name": "get_weather", + "arguments": "{\"location\": \"San Francisco, CA\"}" + }, + "index": 0 + } + ] + }, + "finishReason": "tool_calls" + } + ] + } +] \ No newline at end of file diff --git a/payloads/snapshots/toolCallRequest/mistral/response.json b/payloads/snapshots/toolCallRequest/mistral/response.json new file mode 100644 index 00000000..16b9d3c8 --- /dev/null +++ b/payloads/snapshots/toolCallRequest/mistral/response.json @@ -0,0 +1,32 @@ +{ + "id": "9bd5ff9e02494c1a928dcf80a04ce913", + "object": "chat.completion", + "model": "open-mistral-7b", + "usage": { + "promptTokens": 94, + "completionTokens": 26, + "totalTokens": 120 + }, + "created": 1767640578, + "choices": [ + { + "index": 0, + "message": { + "content": "", + "toolCalls": [ + { + "id": "fk6q08UDy", + "function": { + "name": "get_weather", + "arguments": "{\"location\": \"San Francisco, CA\"}" + }, + "index": 0 + } + ], + "prefix": false, + "role": "assistant" + }, + "finishReason": "tool_calls" + } + ] +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d832586b..194b76c4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: devDependencies: '@anthropic-ai/sdk': specifier: ^0.63.0 - version: 0.63.1 + version: 0.63.1(zod@3.25.76) '@types/node': specifier: ^22.9.0 version: 22.19.1 @@ -25,7 +25,7 @@ importers: version: 10.0.0 openai: specifier: ^5.22.0 - version: 5.23.2(ws@8.18.3) + version: 5.23.2(ws@8.18.3)(zod@3.25.76) tsup: specifier: ^8.5.0 version: 8.5.1(@swc/core@1.15.7)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.9.3) @@ -46,13 +46,13 @@ importers: dependencies: '@anthropic-ai/sdk': specifier: ^0.63.0 - version: 0.63.1 + version: 0.63.1(zod@3.25.76) '@braintrust/lingua': specifier: file:../../bindings/typescript - version: file:bindings/typescript(@anthropic-ai/sdk@0.63.1)(openai@5.23.2(ws@8.18.3)) + version: file:bindings/typescript(@anthropic-ai/sdk@0.63.1(zod@3.25.76))(openai@5.23.2(ws@8.18.3)(zod@3.25.76)) openai: specifier: ^5.22.0 - version: 5.23.2(ws@8.18.3) + version: 5.23.2(ws@8.18.3)(zod@3.25.76) devDependencies: '@types/node': specifier: ^22.9.0 @@ -71,16 +71,19 @@ importers: dependencies: '@anthropic-ai/sdk': specifier: ^0.63.0 - version: 0.63.1 + version: 0.63.1(zod@3.25.76) '@aws-sdk/client-bedrock-runtime': specifier: ^3.700.0 version: 3.958.0 '@google/genai': specifier: ^1.34.0 version: 1.34.0 + '@mistralai/mistralai': + specifier: ^1.11.0 + version: 1.11.0 openai: specifier: ^5.22.0 - version: 5.23.2(ws@8.18.3) + version: 5.23.2(ws@8.18.3)(zod@3.25.76) devDependencies: '@types/node': specifier: ^22.9.0 @@ -776,6 +779,9 @@ packages: '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + '@mistralai/mistralai@1.11.0': + resolution: {integrity: sha512-6/BVj2mcaggYbpMzNSxtqtM2Tv/Jb5845XFd2CMYFO+O5VBkX70iLjtkBBTI4JFhh1l9vTCIMYXBVOjLoBVHGQ==} + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -2283,11 +2289,21 @@ packages: resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==} engines: {node: '>=12.20'} + zod-to-json-schema@3.25.1: + resolution: {integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==} + peerDependencies: + zod: ^3.25 || ^4 + + zod@3.25.76: + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} + snapshots: - '@anthropic-ai/sdk@0.63.1': + '@anthropic-ai/sdk@0.63.1(zod@3.25.76)': dependencies: json-schema-to-ts: 3.1.1 + optionalDependencies: + zod: 3.25.76 '@aws-crypto/crc32@5.2.0': dependencies: @@ -2706,11 +2722,11 @@ snapshots: '@babel/runtime@7.28.4': {} - '@braintrust/lingua@file:bindings/typescript(@anthropic-ai/sdk@0.63.1)(openai@5.23.2(ws@8.18.3))': + '@braintrust/lingua@file:bindings/typescript(@anthropic-ai/sdk@0.63.1(zod@3.25.76))(openai@5.23.2(ws@8.18.3)(zod@3.25.76))': dependencies: - '@anthropic-ai/sdk': 0.63.1 + '@anthropic-ai/sdk': 0.63.1(zod@3.25.76) '@braintrust/lingua-wasm': link:bindings/lingua-wasm - openai: 5.23.2(ws@8.18.3) + openai: 5.23.2(ws@8.18.3)(zod@3.25.76) '@esbuild/aix-ppc64@0.21.5': optional: true @@ -3008,6 +3024,11 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 + '@mistralai/mistralai@1.11.0': + dependencies: + zod: 3.25.76 + zod-to-json-schema: 3.25.1(zod@3.25.76) + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -4221,9 +4242,10 @@ snapshots: dependencies: mimic-fn: 4.0.0 - openai@5.23.2(ws@8.18.3): + openai@5.23.2(ws@8.18.3)(zod@3.25.76): optionalDependencies: ws: 8.18.3 + zod: 3.25.76 optionator@0.9.4: dependencies: @@ -4627,3 +4649,9 @@ snapshots: yocto-queue@0.1.0: {} yocto-queue@1.2.2: {} + + zod-to-json-schema@3.25.1(zod@3.25.76): + dependencies: + zod: 3.25.76 + + zod@3.25.76: {}