diff --git a/src/Providers/OpenAI/Handlers/Stream.php b/src/Providers/OpenAI/Handlers/Stream.php index 44afc7505..598ee43e4 100644 --- a/src/Providers/OpenAI/Handlers/Stream.php +++ b/src/Providers/OpenAI/Handlers/Stream.php @@ -18,9 +18,9 @@ use Prism\Prism\Exceptions\PrismRateLimitedException; use Prism\Prism\Providers\OpenAI\Concerns\ProcessesRateLimits; use Prism\Prism\Providers\OpenAI\Maps\ChatMessageMap; +use Prism\Prism\Providers\OpenAI\Maps\ChatToolChoiceMap; +use Prism\Prism\Providers\OpenAI\Maps\ChatToolMap; use Prism\Prism\Providers\OpenAI\Maps\FinishReasonMap; -use Prism\Prism\Providers\OpenAI\Maps\ToolChoiceMap; -use Prism\Prism\Providers\OpenAI\Maps\ToolMap; use Prism\Prism\Text\Chunk; use Prism\Prism\Text\Request; use Prism\Prism\ValueObjects\Messages\AssistantMessage; @@ -224,8 +224,8 @@ protected function sendRequest(Request $request): Response 'temperature' => $request->temperature(), 'top_p' => $request->topP(), 'metadata' => $request->providerOptions('metadata'), - 'tools' => ToolMap::map($request->tools()), - 'tool_choice' => ToolChoiceMap::map($request->toolChoice()), + 'tools' => ChatToolMap::map($request->tools()), + 'tool_choice' => ChatToolChoiceMap::map($request->toolChoice()), ])) ); } catch (Throwable $e) { diff --git a/src/Providers/OpenAI/Maps/ChatMessageMap.php b/src/Providers/OpenAI/Maps/ChatMessageMap.php index 59ba52478..5d4392934 100644 --- a/src/Providers/OpenAI/Maps/ChatMessageMap.php +++ b/src/Providers/OpenAI/Maps/ChatMessageMap.php @@ -70,9 +70,9 @@ protected function mapToolResultMessage(ToolResultMessage $message): void { foreach ($message->toolResults as $toolResult) { $this->mappedMessages[] = [ - 'type' => 'function_call_output', - 'call_id' => $toolResult->toolCallResultId, - 'output' => $toolResult->result, + 'role' => 'tool', + 'tool_call_id' => $toolResult->toolCallId, + 'content' => $toolResult->result, ]; } } @@ -122,31 +122,19 @@ protected static function mapFileParts(array $files): array protected function mapAssistantMessage(AssistantMessage $message): void { - if ($message->content !== '' && $message->content !== '0') { - $this->mappedMessages[] = [ - 'role' => 'assistant', - 'content' => $message->content, - ]; - } + $toolCalls = array_map(fn (ToolCall $toolCall): array => [ + 'id' => $toolCall->id, + 'type' => 'function', + 'function' => [ + 'name' => $toolCall->name, + 'arguments' => json_encode($toolCall->arguments()), + ], + ], $message->toolCalls); - if ($message->toolCalls !== []) { - array_push( - $this->mappedMessages, - ...array_filter( - array_map(fn (ToolCall $toolCall): ?array => is_null($toolCall->reasoningId) ? null : [ - 'type' => 'reasoning', - 'id' => $toolCall->reasoningId, - 'summary' => $toolCall->reasoningSummary, - ], $message->toolCalls) - ), - ...array_map(fn (ToolCall $toolCall): array => [ - 'id' => $toolCall->id, - 'call_id' => $toolCall->resultId, - 'type' => 'function_call', - 'name' => $toolCall->name, - 'arguments' => json_encode($toolCall->arguments()), - ], $message->toolCalls) - ); - } + $this->mappedMessages[] = array_filter([ + 'role' => 'assistant', + 'content' => $message->content, + 'tool_calls' => $toolCalls, + ]); } } diff --git a/src/Providers/OpenAI/Maps/ChatToolChoiceMap.php b/src/Providers/OpenAI/Maps/ChatToolChoiceMap.php new file mode 100644 index 000000000..ab983ab4f --- /dev/null +++ b/src/Providers/OpenAI/Maps/ChatToolChoiceMap.php @@ -0,0 +1,32 @@ +|string|null + */ + public static function map(string|ToolChoice|null $toolChoice): string|array|null + { + if (is_string($toolChoice)) { + return [ + 'type' => 'function', + 'function' => [ + 'name' => $toolChoice, + ], + ]; + } + + return match ($toolChoice) { + ToolChoice::Auto => 'auto', + ToolChoice::Any => 'required', + ToolChoice::None => 'none', + null => $toolChoice, + }; + } +} diff --git a/src/Providers/OpenAI/Maps/ChatToolMap.php b/src/Providers/OpenAI/Maps/ChatToolMap.php new file mode 100644 index 000000000..af812b0ef --- /dev/null +++ b/src/Providers/OpenAI/Maps/ChatToolMap.php @@ -0,0 +1,33 @@ + + */ + public static function Map(array $tools): array + { + return array_map(fn (Tool $tool): array => array_filter([ + 'type' => 'function', + 'function' => [ + 'name' => $tool->name(), + 'description' => $tool->description(), + ...count($tool->parameters()) ? [ + 'parameters' => [ + 'type' => 'object', + 'properties' => $tool->parametersAsArray(), + 'required' => $tool->requiredParameters(), + ], + ] : [], + ], + 'strict' => (bool) $tool->providerOptions('strict'), + ]), $tools); + } +} diff --git a/tests/Fixtures/openai/stream-basic-text-1.json b/tests/Fixtures/openai/stream-basic-text-1.json index 1ece56be8..4d061717d 100644 --- a/tests/Fixtures/openai/stream-basic-text-1.json +++ b/tests/Fixtures/openai/stream-basic-text-1.json @@ -1,46 +1,40 @@ -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" am"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" am"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" an"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" an"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" artificial"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" AI"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" intelligence"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" developed"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" designed"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" by"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" to"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Open"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" assist"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" with"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" to"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" tasks"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" assist"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" users"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" answer"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" with"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" questions"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" various"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" to"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" requests"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" best"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" tasks"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" my"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ability"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-Bhk6EgmSSUhFYOW0WQZAmCHBxc2qu","object":"chat.completion.chunk","created":1749765010,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} +data: {"id":"chatcmpl-Bj8fPblArh9nPJ6mMOZ9Jg6Mf5las","object":"chat.completion.chunk","created":1750097775,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] diff --git a/tests/Fixtures/openai/stream-falsy-argument-conversation-1.json b/tests/Fixtures/openai/stream-falsy-argument-conversation-1.json index 1707aac11..f3264d634 100644 --- a/tests/Fixtures/openai/stream-falsy-argument-conversation-1.json +++ b/tests/Fixtures/openai/stream-falsy-argument-conversation-1.json @@ -1,26 +1,26 @@ -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_otApj1cOLUQHztaMBDUSn8gQ","type":"function","function":{"name":"get_models","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_ORbbmZRjfUqR7EJJIgInhCbR","type":"function","function":{"name":"get_models","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\n"}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\n"}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" \""}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" \""}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"model"}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"model"}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Id"}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Id"}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":"}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":"}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"0"}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"0"}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\n"}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\n"}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVwN51duOFNOyEf2i3hgSDTxwYy","object":"chat.completion.chunk","created":1748371232,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} +data: {"id":"chatcmpl-Bj8fe8cHW0h9NUsGpYyrkN90tFSOT","object":"chat.completion.chunk","created":1750097790,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} data: [DONE] diff --git a/tests/Fixtures/openai/stream-falsy-argument-conversation-2.json b/tests/Fixtures/openai/stream-falsy-argument-conversation-2.json index 61b8627f4..d6096d4c4 100644 --- a/tests/Fixtures/openai/stream-falsy-argument-conversation-2.json +++ b/tests/Fixtures/openai/stream-falsy-argument-conversation-2.json @@ -1,96 +1,40 @@ -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" model"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" model"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" with"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" with"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" id"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" id"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"0"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"0"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" known"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" known"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" to"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" being"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" be"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" fun"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" fun"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"niest"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"niest"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" all"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" all"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" models"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" models"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" It"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" can"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" generate"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" jokes"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" sarcast"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ic"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" comments"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" funny"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" stories"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" It"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" perfect"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" if"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" want"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" to"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" cheer"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" up"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" or"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" make"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" your"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" text"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" more"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" entertaining"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-BbtVy8nQl7Z9jerkoBQjmHdq1bUpy","object":"chat.completion.chunk","created":1748371234,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} +data: {"id":"chatcmpl-Bj8fgkWW7uVZZp1VWcJPm5o57MaBO","object":"chat.completion.chunk","created":1750097792,"model":"gpt-4-0613","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] diff --git a/tests/Fixtures/openai/stream-multi-tool-conversation-1.json b/tests/Fixtures/openai/stream-multi-tool-conversation-1.json new file mode 100644 index 000000000..f492f9624 --- /dev/null +++ b/tests/Fixtures/openai/stream-multi-tool-conversation-1.json @@ -0,0 +1,36 @@ +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_f2sPutYIWd2MUjT5duNrTdWT","type":"function","function":{"name":"search","arguments":""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"qu"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ery\":"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" \"Detr"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"oit "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Tiger"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"s game"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" tim"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"e tod"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ay\"}"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_HvNKxQIY6Q3wHUOKIJzSVdyq","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"ci"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"ty\": "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"Detro"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"it\"}"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fV9waaB8EoHZMMcTRuiP8nbCoe","object":"chat.completion.chunk","created":1750097781,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} + +data: [DONE] + diff --git a/tests/Fixtures/openai/stream-multi-tool-conversation-1.sse b/tests/Fixtures/openai/stream-multi-tool-conversation-1.sse deleted file mode 100644 index 9a9486623..000000000 --- a/tests/Fixtures/openai/stream-multi-tool-conversation-1.sse +++ /dev/null @@ -1,42 +0,0 @@ -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_wYF98TFEr6BX7nYnRCq0CiS0","type":"function","function":{"name":"search","arguments":""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"qu"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ery\":"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" \"Detr"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"oit "}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Tiger"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"s game"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" sch"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"edule"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Octob"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"er 7"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":", 202"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"3\"}"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_Pi1aLqD3Q960RxVDfWxqALMz","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"ci"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"ty\": "}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"Detro"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"it\"}"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1KJHkBR5Dt1FChxHpdGljLeYxq","object":"chat.completion.chunk","created":1740604454,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} - -data: [DONE] - diff --git a/tests/Fixtures/openai/stream-multi-tool-conversation-2.json b/tests/Fixtures/openai/stream-multi-tool-conversation-2.json new file mode 100644 index 000000000..22fd0ecfe --- /dev/null +++ b/tests/Fixtures/openai/stream-multi-tool-conversation-2.json @@ -0,0 +1,34 @@ +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_eajaMBd2BGVqLrZH6yeahIyY","type":"function","function":{"name":"search","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"query"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Detroit"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Tigers"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" game"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" schedule"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" October"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"3"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"202"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"3"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fXUwQCz3FvnZ9jrOW5hdyHrMnE","object":"chat.completion.chunk","created":1750097783,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} + +data: [DONE] + diff --git a/tests/Fixtures/openai/stream-multi-tool-conversation-2.sse b/tests/Fixtures/openai/stream-multi-tool-conversation-2.sse deleted file mode 100644 index 5a2418460..000000000 --- a/tests/Fixtures/openai/stream-multi-tool-conversation-2.sse +++ /dev/null @@ -1,34 +0,0 @@ -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_UctHV6ITAMxbgAWsBHZkBW8A","type":"function","function":{"name":"search","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"query"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Detroit"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Tigers"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" game"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" schedule"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" October"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"9"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"202"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"3"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1MeSYRtOLgiKB8KKP0swq2Qjr2","object":"chat.completion.chunk","created":1740604456,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} - -data: [DONE] - diff --git a/tests/Fixtures/openai/stream-multi-tool-conversation-3.json b/tests/Fixtures/openai/stream-multi-tool-conversation-3.json new file mode 100644 index 000000000..55d72cd9f --- /dev/null +++ b/tests/Fixtures/openai/stream-multi-tool-conversation-3.json @@ -0,0 +1,72 @@ +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Detroit"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Tigers"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" game"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" today"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" at"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" PM"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" with"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" being"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"75"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"°"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" sunny"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" likely"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" won't"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" need"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" coat"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Enjoy"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" game"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fbNo4xEGORGA64xd7vhABRFIA5","object":"chat.completion.chunk","created":1750097787,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + +data: [DONE] + diff --git a/tests/Fixtures/openai/stream-multi-tool-conversation-3.sse b/tests/Fixtures/openai/stream-multi-tool-conversation-3.sse deleted file mode 100644 index 3d8edf47e..000000000 --- a/tests/Fixtures/openai/stream-multi-tool-conversation-3.sse +++ /dev/null @@ -1,68 +0,0 @@ -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" Detroit"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" Tigers"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" game"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" at"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" PM"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" today"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" The"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" Detroit"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" currently"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":"75"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":"°"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" sunny"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" so"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" likely"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" won't"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" need"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":" coat"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J1NU7WCjGE4AVnYzxpzl5mMchRR","object":"chat.completion.chunk","created":1740604457,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_f9f4fb6dbf","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - -data: [DONE] - diff --git a/tests/Fixtures/openai/stream-with-tools-1.json b/tests/Fixtures/openai/stream-with-tools-1.json new file mode 100644 index 000000000..0b7af3349 --- /dev/null +++ b/tests/Fixtures/openai/stream-with-tools-1.json @@ -0,0 +1,36 @@ +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_wdoegu51RD1EwLfvY4zESP45","type":"function","function":{"name":"search","arguments":""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"qu"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ery\":"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" \"Detr"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"oit "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Tiger"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"s game"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" tim"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"e tod"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ay\"}"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_lh0RgUrGyfkUdXvtZAjh55w5","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"ci"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"ty\": "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"Detro"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"it\"}"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fRUY3ahvgjmus6Pe62kCF0yMPO","object":"chat.completion.chunk","created":1750097777,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_a288987b44","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} + +data: [DONE] + diff --git a/tests/Fixtures/openai/stream-with-tools-1.sse b/tests/Fixtures/openai/stream-with-tools-1.sse deleted file mode 100644 index c11287b03..000000000 --- a/tests/Fixtures/openai/stream-with-tools-1.sse +++ /dev/null @@ -1,40 +0,0 @@ -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_DwtqVhx8c5yT7s2OKLb2D5hP","type":"function","function":{"name":"search","arguments":""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"qu"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ery\":"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" \"Tige"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"rs g"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ame s"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"chedul"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"e Oc"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"tober"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" 22, 2"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"023\""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_Lq3VEqo3xVZMX0BOU4I79Ktg","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"ci"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"ty\": "}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"Detro"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"it\"}"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0vHxVHcEeyNzVSbedz5obwme9R","object":"chat.completion.chunk","created":1740604429,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} - -data: [DONE] - diff --git a/tests/Fixtures/openai/stream-with-tools-2.json b/tests/Fixtures/openai/stream-with-tools-2.json new file mode 100644 index 000000000..6b823528f --- /dev/null +++ b/tests/Fixtures/openai/stream-with-tools-2.json @@ -0,0 +1,36 @@ +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_MLq67bHjTwVjtgV6FgmJHLNi","type":"function","function":{"name":"search","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"query"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Detroit"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Tigers"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" game"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" schedule"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" October"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"3"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"202"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"3"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fTyGCkRGqcGQPFeuuGxnFS9KTT","object":"chat.completion.chunk","created":1750097779,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} + +data: [DONE] + diff --git a/tests/Fixtures/openai/stream-with-tools-2.sse b/tests/Fixtures/openai/stream-with-tools-2.sse deleted file mode 100644 index c2908c61a..000000000 --- a/tests/Fixtures/openai/stream-with-tools-2.sse +++ /dev/null @@ -1,36 +0,0 @@ -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_WJo3i9OCX3ErxBraXlumOlwu","type":"function","function":{"name":"search","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"query"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Detroit"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Tigers"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" game"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" schedule"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" October"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"26"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" "}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"202"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"3"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0xKNKZdNmP5LdMpH8c6zxTv2Jj","object":"chat.completion.chunk","created":1740604431,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}]} - -data: [DONE] - diff --git a/tests/Fixtures/openai/stream-with-tools-3.json b/tests/Fixtures/openai/stream-with-tools-3.json new file mode 100644 index 000000000..be2026265 --- /dev/null +++ b/tests/Fixtures/openai/stream-with-tools-3.json @@ -0,0 +1,102 @@ +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Detroit"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Tigers"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" game"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" schedule"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" October"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"202"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" does"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" not"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" show"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" any"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" game"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" today"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Additionally"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" as"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" it's"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"75"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"°"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" sunny"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" coat"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" wouldn't"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" be"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" necessary"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Detroit"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" Enjoy"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":" sunshine"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-Bj8fUMvRSidzqCUDZuMwmxEikWDHc","object":"chat.completion.chunk","created":1750097780,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_07871e2ad8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + +data: [DONE] + diff --git a/tests/Fixtures/openai/stream-with-tools-3.sse b/tests/Fixtures/openai/stream-with-tools-3.sse deleted file mode 100644 index 37e0b449c..000000000 --- a/tests/Fixtures/openai/stream-with-tools-3.sse +++ /dev/null @@ -1,106 +0,0 @@ -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" Detroit"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" Tigers"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" do"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" not"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" have"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" game"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" scheduled"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" today"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" October"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"26"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"202"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" \n\n"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"As"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" whether"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" should"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" wear"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" coat"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" Detroit"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" currently"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"75"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"°F"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" sunny"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" so"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" coat"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" probably"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" not"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":" needed"},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - -data: {"id":"chatcmpl-B5J0ypCNLToOVtLswwPgkKrJeKH5n","object":"chat.completion.chunk","created":1740604432,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_eb9dce56a8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - -data: [DONE] -