diff --git a/client-sdks/stainless/config.yml b/client-sdks/stainless/config.yml
index e9b33581be..6c790bc54a 100644
--- a/client-sdks/stainless/config.yml
+++ b/client-sdks/stainless/config.yml
@@ -175,6 +175,10 @@ resources:
models:
response_object_stream: OpenAIResponseObjectStream
response_object: OpenAIResponseObject
+ compacted_response: OpenAICompactedResponse
+ response_input: OpenAIResponseInput
+ response_message: OpenAIResponseMessage
+ response_output: OpenAIResponseOutput
methods:
create:
type: http
@@ -189,6 +193,9 @@ resources:
delete:
type: http
endpoint: delete /v1/responses/{response_id}
+ compact:
+ type: http
+ endpoint: post /v1/responses/compact
subresources:
input_items:
methods:
diff --git a/client-sdks/stainless/openapi.yml b/client-sdks/stainless/openapi.yml
index 495df0e0c5..b2c8955800 100644
--- a/client-sdks/stainless/openapi.yml
+++ b/client-sdks/stainless/openapi.yml
@@ -3733,6 +3733,38 @@ paths:
summary: Get service version
description: Get the version of the service.
operationId: version_v1alpha_admin_version_get
+ /v1/responses/compact:
+ post:
+ responses:
+ '200':
+ description: Successful Response
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/OpenAICompactedResponse'
+ '400':
+ description: Bad Request
+ $ref: '#/components/responses/BadRequest400'
+ '429':
+ description: Too Many Requests
+ $ref: '#/components/responses/TooManyRequests429'
+ '500':
+ description: Internal Server Error
+ $ref: '#/components/responses/InternalServerError500'
+ default:
+ description: Default Response
+ $ref: '#/components/responses/DefaultError'
+ tags:
+ - Responses
+ summary: Compact a conversation.
+ description: Compresses conversation history into a smaller representation while preserving context.
+ operationId: compact_openai_response_v1_responses_compact_post
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/CompactResponseRequest'
+ required: true
/v1/responses/{response_id}/cancel:
post:
responses:
@@ -6947,9 +6979,11 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
- $ref: '#/components/schemas/OpenAIResponseMessage'
title: OpenAIResponseMessage
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
OpenAIResponseInputToolFileSearch:
properties:
type:
@@ -7254,40 +7288,7 @@ components:
title: Store
input:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Input
required:
@@ -8909,40 +8910,7 @@ components:
properties:
data:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Data
object:
@@ -11334,6 +11302,7 @@ components:
- failed
- total
title: BatchRequestCounts
+ description: The request counts for different statuses within the batch.
BatchUsage:
properties:
input_tokens:
@@ -11357,6 +11326,10 @@ components:
- output_tokens_details
- total_tokens
title: BatchUsage
+ description: |-
+ Represents token usage details including input tokens, output tokens, a
+ breakdown of output tokens, and the total tokens used. Only populated on
+ batches created after September 7, 2025.
Body_process_file_v1alpha_file_processors_process_post:
properties:
file:
@@ -11403,6 +11376,78 @@ components:
- file
- purpose
title: Body_upload_file_v1_files_post
+ CompactResponseRequest:
+ properties:
+ model:
+ type: string
+ title: Model
+ description: The model to use for generating the compacted summary.
+ input:
+ anyOf:
+ - type: string
+ - items:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Input'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseMessage-Input | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
+ type: array
+ title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ - type: 'null'
+ title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ description: Input message(s) to compact.
+ instructions:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: Instructions to guide the compaction.
+ previous_response_id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: ID of a previous response whose history to compact.
+ prompt_cache_key:
+ anyOf:
+ - type: string
+ maxLength: 64
+ - type: 'null'
+ description: A key to use when reading from or writing to the prompt cache.
+ additionalProperties: false
+ required:
+ - model
+ title: CompactResponseRequest
+ description: Request model for compacting a conversation.
Connector:
properties:
connector_type:
@@ -11447,6 +11492,24 @@ components:
- mcp
title: ConnectorType
description: Type of connector.
+ ContextManagement:
+ properties:
+ type:
+ type: string
+ title: Type
+ description: The context management entry type. Currently only 'compaction' is supported.
+ enum:
+ - compaction
+ compact_threshold:
+ anyOf:
+ - type: integer
+ - type: 'null'
+ description: Token threshold at which compaction should be triggered.
+ additionalProperties: false
+ required:
+ - type
+ title: ContextManagement
+ description: Configuration for automatic context management during response generation.
ConversationItemInclude:
type: string
enum:
@@ -11496,10 +11559,12 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseCompaction
type: array
- title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse]
- title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse]
+ title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
description: Input message(s) to create the response.
model:
type: string
@@ -11734,6 +11799,13 @@ components:
- type: 'null'
description: Options that control streamed response behavior.
title: ResponseStreamOptions
+ context_management:
+ anyOf:
+ - items:
+ $ref: '#/components/schemas/ContextManagement'
+ type: array
+ - type: 'null'
+ description: Context management configuration. When set with type 'compaction', automatically compacts conversation history when token count exceeds the compact_threshold.
additionalProperties: true
required:
- input
@@ -11954,6 +12026,7 @@ components:
required:
- cached_tokens
title: InputTokensDetails
+ description: A detailed breakdown of the input tokens.
JobStatus:
type: string
enum:
@@ -12200,6 +12273,51 @@ components:
default: 0
title: OpenAIChatCompletionUsagePromptTokensDetails
description: Token details for prompt tokens in OpenAI chat completion usage.
+ OpenAICompactedResponse:
+ properties:
+ id:
+ type: string
+ title: Id
+ created_at:
+ type: integer
+ title: Created At
+ object:
+ type: string
+ title: Object
+ enum:
+ - response.compaction
+ output:
+ items:
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
+ type: array
+ title: Output
+ usage:
+ $ref: '#/components/schemas/OpenAIResponseUsage'
+ required:
+ - id
+ - created_at
+ - output
+ - usage
+ title: OpenAICompactedResponse
+ description: Response from compacting a conversation.
+ OpenAIResponseCompaction:
+ properties:
+ type:
+ type: string
+ title: Type
+ enum:
+ - compaction
+ encrypted_content:
+ type: string
+ title: Encrypted Content
+ id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ required:
+ - encrypted_content
+ title: OpenAIResponseCompaction
+ description: A compaction item that summarizes prior conversation context.
OpenAIResponseIncompleteDetails:
properties:
reason:
@@ -12807,6 +12925,7 @@ components:
required:
- reasoning_tokens
title: OutputTokensDetails
+ description: A detailed breakdown of the output tokens.
ProcessFileResponse:
properties:
chunks:
@@ -14783,6 +14902,43 @@ components:
required:
- prompt_id
title: DeletePromptRequest
+ OpenAIResponseMessageOutputUnion:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
+ title: OpenAIResponseMessage-Output
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Output'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ x-stainless-naming: OpenAIResponseMessageOutputOneOf
+ title: OpenAIResponseMessage-Output | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseCompaction
+ x-stainless-naming: OpenAIResponseMessageOutputUnion
ChatCompletionMessageToolCall:
properties:
id:
diff --git a/docs/docs/api-openai/conformance.mdx b/docs/docs/api-openai/conformance.mdx
index e1f719d4b3..24abb84115 100644
--- a/docs/docs/api-openai/conformance.mdx
+++ b/docs/docs/api-openai/conformance.mdx
@@ -18,20 +18,20 @@ This documentation is auto-generated from the OpenAI API specification compariso
| Metric | Value |
|--------|-------|
-| **Overall Conformance Score** | 87.8% |
-| **Endpoints Implemented** | 28/146 |
+| **Overall Conformance Score** | 87.6% |
+| **Endpoints Implemented** | 29/146 |
| **Total Properties Checked** | 3441 |
-| **Schema/Type Issues** | 288 |
-| **Missing Properties** | 131 |
-| **Total Issues to Fix** | 419 |
+| **Schema/Type Issues** | 295 |
+| **Missing Properties** | 132 |
+| **Total Issues to Fix** | 427 |
## Integration Test Coverage
-**Overall Test Coverage Score: 44.1%**
+**Overall Test Coverage Score: 43.8%**
| Category | Covered | Total | Score |
|----------|---------|-------|-------|
-| CRUD Operations | 5 | 6 | 83.3% |
+| CRUD Operations | 5 | 7 | 71.4% |
| Conversations | 5 | 9 | 55.6% |
| Request Parameters | 21 | 25 | 84.0% |
| Streaming Events | 16 | 53 | 30.2% |
@@ -51,7 +51,7 @@ Categories are sorted by conformance score (lowest first, needing most attention
| Embeddings | 64.3% | 14 | 5 | 0 |
| Files | 66.7% | 42 | 8 | 6 |
| Models | 66.7% | 15 | 0 | 5 |
-| Responses | 86.7% | 225 | 29 | 1 |
+| Responses | 83.1% | 225 | 36 | 2 |
| Chat | 87.1% | 403 | 33 | 19 |
| Conversations | 98.8% | 2165 | 22 | 4 |
@@ -175,7 +175,6 @@ The following OpenAI API endpoints are not yet implemented in Llama Stack:
### /responses
-- `/responses/compact`
- `/responses/input_tokens`
### /skills
@@ -964,7 +963,7 @@ Below is a detailed breakdown of conformance issues and missing properties for e
### Responses
-**Score:** 86.7% · **Issues:** 29 · **Missing:** 1
+**Score:** 83.1% · **Issues:** 36 · **Missing:** 2
#### `/responses`
@@ -1014,6 +1013,32 @@ Below is a detailed breakdown of conformance issues and missing properties for e
+#### `/responses/compact`
+
+**POST**
+
+
+Missing Properties (1)
+
+- `requestBody.content.application/x-www-form-urlencoded`
+
+
+
+
+Schema Issues (7)
+
+| Property | Issues | Tested |
+|----------|--------|--------|
+| `requestBody.content.application/json.properties.input` | Union variants added: 2; Union variants removed: 1 | Yes |
+| `requestBody.content.application/json.properties.model` | Type added: ['string']; Union variants removed: 3 | Yes |
+| `responses.200.content.application/json.properties.object` | Default changed: response.compaction -> None | No |
+| `responses.200.content.application/json.properties.output.items` | Union variants added: 4 | Yes |
+| `responses.200.content.application/json.properties.usage` | Type removed: ['object'] | Yes |
+| `responses.200.content.application/json.properties.usage.properties.input_tokens_details` | Type removed: ['object'] | No |
+| `responses.200.content.application/json.properties.usage.properties.output_tokens_details` | Type removed: ['object'] | No |
+
+
+
### Chat
**Score:** 87.1% · **Issues:** 33 · **Missing:** 19
diff --git a/docs/docs/api-openai/provider_matrix.md b/docs/docs/api-openai/provider_matrix.md
index 02240a1904..335e9fd0bb 100644
--- a/docs/docs/api-openai/provider_matrix.md
+++ b/docs/docs/api-openai/provider_matrix.md
@@ -19,11 +19,11 @@ inference provider, based on integration test results.
| Provider | Tested | Passing | Failing | Coverage |
|----------|--------|---------|---------|----------|
-| azure | 102 | 102 | 0 | 86% |
-| bedrock | 25 | 25 | 0 | 21% |
-| openai | 119 | 119 | 0 | 100% |
+| azure | 113 | 113 | 0 | 87% |
+| bedrock | 25 | 25 | 0 | 19% |
+| openai | 130 | 130 | 0 | 100% |
| vllm | 1 | 1 | 0 | 1% |
-| watsonx | 56 | 56 | 0 | 47% |
+| watsonx | 56 | 56 | 0 | 43% |
## Provider Details
@@ -31,7 +31,7 @@ Models, endpoints, and versions used during test recordings.
| Provider | Model(s) | Endpoint | Version Info |
|----------|----------|----------|--------------|
-| azure | gpt-4o | llama-stack-test.openai.azure.com, lls-test.openai.azure.com | openai sdk: 2.5.0 |
+| azure | gpt-4o | llama-stack-test.openai.azure.com, lls-test.openai.azure.com | openai sdk: 2.30.0 |
| bedrock | openai.gpt-oss-20b | bedrock-mantle.us-east-2.api.aws | openai sdk: 2.5.0 |
| openai | gpt-4o, o4-mini, text-embedding-3-small | api.openai.com | openai sdk: 2.5.0 |
| vllm | Qwen/Qwen3-0.6B | — | — |
@@ -53,6 +53,22 @@ Models, endpoints, and versions used during test recordings.
| streaming basic | ✅ | ✅ | ✅ | — | ✅ |
| streaming incremental content | ✅ | ✅ | ✅ | — | ✅ |
+## Compact Responses
+
+| Feature | azure | bedrock | openai | vllm | watsonx |
+| --- | --- | --- | --- | --- | --- |
+| compact basic conversation | ✅ | — | ✅ | — | — |
+| compact chain through compaction | ✅ | — | ✅ | — | — |
+| compact double compaction | ✅ | — | ✅ | — | — |
+| compact input items hides compaction | ✅ | — | ✅ | — | — |
+| compact roundtrip | ✅ | — | ✅ | — | — |
+| compact single message | ✅ | — | ✅ | — | — |
+| compact with previous response id | ✅ | — | ✅ | — | — |
+| compact with tool calls dropped | ✅ | — | ✅ | — | — |
+| context management auto compacts large input | ✅ | — | ✅ | — | — |
+| context management no compact below threshold | ✅ | — | ✅ | — | — |
+| context management none does not compact | ✅ | — | ✅ | — | — |
+
## Conversation Responses
| Feature | azure | bedrock | openai | vllm | watsonx |
diff --git a/docs/static/deprecated-llama-stack-spec.yaml b/docs/static/deprecated-llama-stack-spec.yaml
index f1ae56a67c..ab24f9e2c5 100644
--- a/docs/static/deprecated-llama-stack-spec.yaml
+++ b/docs/static/deprecated-llama-stack-spec.yaml
@@ -3603,9 +3603,11 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
- $ref: '#/components/schemas/OpenAIResponseMessage'
title: OpenAIResponseMessage
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
OpenAIResponseInputToolFileSearch:
properties:
type:
@@ -3910,40 +3912,7 @@ components:
title: Store
input:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Input
required:
@@ -5565,40 +5534,7 @@ components:
properties:
data:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Data
object:
@@ -7990,6 +7926,7 @@ components:
- failed
- total
title: BatchRequestCounts
+ description: The request counts for different statuses within the batch.
BatchUsage:
properties:
input_tokens:
@@ -8013,6 +7950,10 @@ components:
- output_tokens_details
- total_tokens
title: BatchUsage
+ description: |-
+ Represents token usage details including input tokens, output tokens, a
+ breakdown of output tokens, and the total tokens used. Only populated on
+ batches created after September 7, 2025.
Body_process_file_v1alpha_file_processors_process_post:
properties:
file:
@@ -8059,6 +8000,78 @@ components:
- file
- purpose
title: Body_upload_file_v1_files_post
+ CompactResponseRequest:
+ properties:
+ model:
+ type: string
+ title: Model
+ description: The model to use for generating the compacted summary.
+ input:
+ anyOf:
+ - type: string
+ - items:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Input'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseMessage-Input | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
+ type: array
+ title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ - type: 'null'
+ title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ description: Input message(s) to compact.
+ instructions:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: Instructions to guide the compaction.
+ previous_response_id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: ID of a previous response whose history to compact.
+ prompt_cache_key:
+ anyOf:
+ - type: string
+ maxLength: 64
+ - type: 'null'
+ description: A key to use when reading from or writing to the prompt cache.
+ additionalProperties: false
+ required:
+ - model
+ title: CompactResponseRequest
+ description: Request model for compacting a conversation.
Connector:
properties:
connector_type:
@@ -8103,6 +8116,24 @@ components:
- mcp
title: ConnectorType
description: Type of connector.
+ ContextManagement:
+ properties:
+ type:
+ type: string
+ title: Type
+ description: The context management entry type. Currently only 'compaction' is supported.
+ enum:
+ - compaction
+ compact_threshold:
+ anyOf:
+ - type: integer
+ - type: 'null'
+ description: Token threshold at which compaction should be triggered.
+ additionalProperties: false
+ required:
+ - type
+ title: ContextManagement
+ description: Configuration for automatic context management during response generation.
ConversationItemInclude:
type: string
enum:
@@ -8152,9 +8183,11 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
- $ref: '#/components/schemas/OpenAIResponseMessage-Input'
title: OpenAIResponseMessage-Input
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Input
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
type: array
title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
@@ -8392,6 +8425,13 @@ components:
- type: 'null'
description: Options that control streamed response behavior.
title: ResponseStreamOptions
+ context_management:
+ anyOf:
+ - items:
+ $ref: '#/components/schemas/ContextManagement'
+ type: array
+ - type: 'null'
+ description: Context management configuration. When set with type 'compaction', automatically compacts conversation history when token count exceeds the compact_threshold.
additionalProperties: true
required:
- input
@@ -8612,6 +8652,7 @@ components:
required:
- cached_tokens
title: InputTokensDetails
+ description: A detailed breakdown of the input tokens.
JobStatus:
type: string
enum:
@@ -8858,6 +8899,51 @@ components:
default: 0
title: OpenAIChatCompletionUsagePromptTokensDetails
description: Token details for prompt tokens in OpenAI chat completion usage.
+ OpenAICompactedResponse:
+ properties:
+ id:
+ type: string
+ title: Id
+ created_at:
+ type: integer
+ title: Created At
+ object:
+ type: string
+ title: Object
+ enum:
+ - response.compaction
+ output:
+ items:
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
+ type: array
+ title: Output
+ usage:
+ $ref: '#/components/schemas/OpenAIResponseUsage'
+ required:
+ - id
+ - created_at
+ - output
+ - usage
+ title: OpenAICompactedResponse
+ description: Response from compacting a conversation.
+ OpenAIResponseCompaction:
+ properties:
+ type:
+ type: string
+ title: Type
+ enum:
+ - compaction
+ encrypted_content:
+ type: string
+ title: Encrypted Content
+ id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ required:
+ - encrypted_content
+ title: OpenAIResponseCompaction
+ description: A compaction item that summarizes prior conversation context.
OpenAIResponseIncompleteDetails:
properties:
reason:
@@ -9465,6 +9551,7 @@ components:
required:
- reasoning_tokens
title: OutputTokensDetails
+ description: A detailed breakdown of the output tokens.
ProcessFileResponse:
properties:
chunks:
@@ -11441,6 +11528,43 @@ components:
required:
- prompt_id
title: DeletePromptRequest
+ OpenAIResponseMessageOutputUnion:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
+ title: OpenAIResponseMessage-Output
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Output'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ x-stainless-naming: OpenAIResponseMessageOutputOneOf
+ title: OpenAIResponseMessage-Output | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseCompaction
+ x-stainless-naming: OpenAIResponseMessageOutputUnion
ChatCompletionMessageToolCall:
properties:
id:
diff --git a/docs/static/experimental-llama-stack-spec.yaml b/docs/static/experimental-llama-stack-spec.yaml
index 75594ef438..2053bb1e9c 100644
--- a/docs/static/experimental-llama-stack-spec.yaml
+++ b/docs/static/experimental-llama-stack-spec.yaml
@@ -3794,9 +3794,11 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
- $ref: '#/components/schemas/OpenAIResponseMessage'
title: OpenAIResponseMessage
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
OpenAIResponseInputToolFileSearch:
properties:
type:
@@ -4101,40 +4103,7 @@ components:
title: Store
input:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Input
required:
@@ -5746,40 +5715,7 @@ components:
properties:
data:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Data
object:
@@ -8171,6 +8107,7 @@ components:
- failed
- total
title: BatchRequestCounts
+ description: The request counts for different statuses within the batch.
BatchUsage:
properties:
input_tokens:
@@ -8194,6 +8131,10 @@ components:
- output_tokens_details
- total_tokens
title: BatchUsage
+ description: |-
+ Represents token usage details including input tokens, output tokens, a
+ breakdown of output tokens, and the total tokens used. Only populated on
+ batches created after September 7, 2025.
Body_process_file_v1alpha_file_processors_process_post:
properties:
file:
@@ -8489,6 +8430,7 @@ components:
required:
- cached_tokens
title: InputTokensDetails
+ description: A detailed breakdown of the input tokens.
JobStatus:
type: string
enum:
@@ -8735,6 +8677,51 @@ components:
default: 0
title: OpenAIChatCompletionUsagePromptTokensDetails
description: Token details for prompt tokens in OpenAI chat completion usage.
+ OpenAICompactedResponse:
+ properties:
+ id:
+ type: string
+ title: Id
+ created_at:
+ type: integer
+ title: Created At
+ object:
+ type: string
+ title: Object
+ enum:
+ - response.compaction
+ output:
+ items:
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
+ type: array
+ title: Output
+ usage:
+ $ref: '#/components/schemas/OpenAIResponseUsage'
+ required:
+ - id
+ - created_at
+ - output
+ - usage
+ title: OpenAICompactedResponse
+ description: Response from compacting a conversation.
+ OpenAIResponseCompaction:
+ properties:
+ type:
+ type: string
+ title: Type
+ enum:
+ - compaction
+ encrypted_content:
+ type: string
+ title: Encrypted Content
+ id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ required:
+ - encrypted_content
+ title: OpenAIResponseCompaction
+ description: A compaction item that summarizes prior conversation context.
OpenAIResponseIncompleteDetails:
properties:
reason:
@@ -9342,6 +9329,7 @@ components:
required:
- reasoning_tokens
title: OutputTokensDetails
+ description: A detailed breakdown of the output tokens.
ProcessFileResponse:
properties:
chunks:
@@ -11289,6 +11277,43 @@ components:
required:
- prompt_id
title: DeletePromptRequest
+ OpenAIResponseMessageOutputUnion:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
+ title: OpenAIResponseMessage-Output
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Output'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ x-stainless-naming: OpenAIResponseMessageOutputOneOf
+ title: OpenAIResponseMessage-Output | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseCompaction
+ x-stainless-naming: OpenAIResponseMessageOutputUnion
ChatCompletionMessageToolCall:
properties:
id:
diff --git a/docs/static/llama-stack-spec.yaml b/docs/static/llama-stack-spec.yaml
index a66d107695..c5a87b5900 100644
--- a/docs/static/llama-stack-spec.yaml
+++ b/docs/static/llama-stack-spec.yaml
@@ -2818,6 +2818,38 @@ paths:
description: Get the version of the service.
operationId: version_v1_version_get
x-public: true
+ /v1/responses/compact:
+ post:
+ responses:
+ '200':
+ description: Successful Response
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/OpenAICompactedResponse'
+ '400':
+ description: Bad Request
+ $ref: '#/components/responses/BadRequest400'
+ '429':
+ description: Too Many Requests
+ $ref: '#/components/responses/TooManyRequests429'
+ '500':
+ description: Internal Server Error
+ $ref: '#/components/responses/InternalServerError500'
+ default:
+ description: Default Response
+ $ref: '#/components/responses/DefaultError'
+ tags:
+ - Responses
+ summary: Compact a conversation.
+ description: Compresses conversation history into a smaller representation while preserving context.
+ operationId: compact_openai_response_v1_responses_compact_post
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/CompactResponseRequest'
+ required: true
/v1/responses/{response_id}/cancel:
post:
responses:
@@ -5832,9 +5864,11 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
- $ref: '#/components/schemas/OpenAIResponseMessage'
title: OpenAIResponseMessage
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
OpenAIResponseInputToolFileSearch:
properties:
type:
@@ -6139,40 +6173,7 @@ components:
title: Store
input:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Input
required:
@@ -7794,40 +7795,7 @@ components:
properties:
data:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Data
object:
@@ -10219,6 +10187,7 @@ components:
- failed
- total
title: BatchRequestCounts
+ description: The request counts for different statuses within the batch.
BatchUsage:
properties:
input_tokens:
@@ -10242,6 +10211,10 @@ components:
- output_tokens_details
- total_tokens
title: BatchUsage
+ description: |-
+ Represents token usage details including input tokens, output tokens, a
+ breakdown of output tokens, and the total tokens used. Only populated on
+ batches created after September 7, 2025.
Body_upload_file_v1_files_post:
properties:
file:
@@ -10263,6 +10236,78 @@ components:
- file
- purpose
title: Body_upload_file_v1_files_post
+ CompactResponseRequest:
+ properties:
+ model:
+ type: string
+ title: Model
+ description: The model to use for generating the compacted summary.
+ input:
+ anyOf:
+ - type: string
+ - items:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Input'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseMessage-Input | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
+ type: array
+ title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ - type: 'null'
+ title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ description: Input message(s) to compact.
+ instructions:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: Instructions to guide the compaction.
+ previous_response_id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: ID of a previous response whose history to compact.
+ prompt_cache_key:
+ anyOf:
+ - type: string
+ maxLength: 64
+ - type: 'null'
+ description: A key to use when reading from or writing to the prompt cache.
+ additionalProperties: false
+ required:
+ - model
+ title: CompactResponseRequest
+ description: Request model for compacting a conversation.
Connector:
properties:
connector_type:
@@ -10307,6 +10352,24 @@ components:
- mcp
title: ConnectorType
description: Type of connector.
+ ContextManagement:
+ properties:
+ type:
+ type: string
+ title: Type
+ description: The context management entry type. Currently only 'compaction' is supported.
+ enum:
+ - compaction
+ compact_threshold:
+ anyOf:
+ - type: integer
+ - type: 'null'
+ description: Token threshold at which compaction should be triggered.
+ additionalProperties: false
+ required:
+ - type
+ title: ContextManagement
+ description: Configuration for automatic context management during response generation.
ConversationItemInclude:
type: string
enum:
@@ -10356,9 +10419,11 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
- $ref: '#/components/schemas/OpenAIResponseMessage-Input'
title: OpenAIResponseMessage-Input
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Input
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
type: array
title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
@@ -10596,6 +10661,13 @@ components:
- type: 'null'
description: Options that control streamed response behavior.
title: ResponseStreamOptions
+ context_management:
+ anyOf:
+ - items:
+ $ref: '#/components/schemas/ContextManagement'
+ type: array
+ - type: 'null'
+ description: Context management configuration. When set with type 'compaction', automatically compacts conversation history when token count exceeds the compact_threshold.
additionalProperties: true
required:
- input
@@ -10816,6 +10888,7 @@ components:
required:
- cached_tokens
title: InputTokensDetails
+ description: A detailed breakdown of the input tokens.
JobStatus:
type: string
enum:
@@ -11062,6 +11135,51 @@ components:
default: 0
title: OpenAIChatCompletionUsagePromptTokensDetails
description: Token details for prompt tokens in OpenAI chat completion usage.
+ OpenAICompactedResponse:
+ properties:
+ id:
+ type: string
+ title: Id
+ created_at:
+ type: integer
+ title: Created At
+ object:
+ type: string
+ title: Object
+ enum:
+ - response.compaction
+ output:
+ items:
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
+ type: array
+ title: Output
+ usage:
+ $ref: '#/components/schemas/OpenAIResponseUsage'
+ required:
+ - id
+ - created_at
+ - output
+ - usage
+ title: OpenAICompactedResponse
+ description: Response from compacting a conversation.
+ OpenAIResponseCompaction:
+ properties:
+ type:
+ type: string
+ title: Type
+ enum:
+ - compaction
+ encrypted_content:
+ type: string
+ title: Encrypted Content
+ id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ required:
+ - encrypted_content
+ title: OpenAIResponseCompaction
+ description: A compaction item that summarizes prior conversation context.
OpenAIResponseIncompleteDetails:
properties:
reason:
@@ -11669,6 +11787,7 @@ components:
required:
- reasoning_tokens
title: OutputTokensDetails
+ description: A detailed breakdown of the output tokens.
ProcessFileResponse:
properties:
chunks:
@@ -13645,6 +13764,43 @@ components:
required:
- prompt_id
title: DeletePromptRequest
+ OpenAIResponseMessageOutputUnion:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
+ title: OpenAIResponseMessage-Output
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Output'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ x-stainless-naming: OpenAIResponseMessageOutputOneOf
+ title: OpenAIResponseMessage-Output | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseCompaction
+ x-stainless-naming: OpenAIResponseMessageOutputUnion
ChatCompletionMessageToolCall:
properties:
id:
diff --git a/docs/static/openai-coverage.json b/docs/static/openai-coverage.json
index 1e5c133f09..bf8471f892 100644
--- a/docs/static/openai-coverage.json
+++ b/docs/static/openai-coverage.json
@@ -4,7 +4,7 @@
"llama_spec": "docs/static/llama-stack-spec.yaml",
"summary": {
"endpoints": {
- "implemented": 28,
+ "implemented": 29,
"total": 146,
"missing": [
"/assistants",
@@ -94,7 +94,6 @@
"/realtime/client_secrets",
"/realtime/sessions",
"/realtime/transcription_sessions",
- "/responses/compact",
"/responses/input_tokens",
"/skills",
"/skills/{skill_id}",
@@ -128,10 +127,10 @@
]
},
"conformance": {
- "score": 87.8,
- "issues": 288,
- "missing_properties": 131,
- "total_problems": 419,
+ "score": 87.6,
+ "issues": 295,
+ "missing_properties": 132,
+ "total_problems": 427,
"total_properties": 3441
}
},
@@ -1709,9 +1708,9 @@
]
},
"Responses": {
- "score": 86.7,
- "issues": 29,
- "missing_properties": 1,
+ "score": 83.1,
+ "issues": 36,
+ "missing_properties": 2,
"total_properties": 225,
"endpoints": [
{
@@ -1939,6 +1938,65 @@
"issues_count": 29
}
]
+ },
+ {
+ "path": "/responses/compact",
+ "operations": [
+ {
+ "method": "POST",
+ "missing_properties": [
+ "POST.requestBody.content.application/x-www-form-urlencoded"
+ ],
+ "conformance_issues": [
+ {
+ "property": "POST.requestBody.content.application/json.properties.input",
+ "details": [
+ "Union variants added: 2",
+ "Union variants removed: 1"
+ ]
+ },
+ {
+ "property": "POST.requestBody.content.application/json.properties.model",
+ "details": [
+ "Type added: ['string']",
+ "Union variants removed: 3"
+ ]
+ },
+ {
+ "property": "POST.responses.200.content.application/json.properties.object",
+ "details": [
+ "Default changed: response.compaction -> None"
+ ]
+ },
+ {
+ "property": "POST.responses.200.content.application/json.properties.output.items",
+ "details": [
+ "Union variants added: 4"
+ ]
+ },
+ {
+ "property": "POST.responses.200.content.application/json.properties.usage",
+ "details": [
+ "Type removed: ['object']"
+ ]
+ },
+ {
+ "property": "POST.responses.200.content.application/json.properties.usage.properties.input_tokens_details",
+ "details": [
+ "Type removed: ['object']"
+ ]
+ },
+ {
+ "property": "POST.responses.200.content.application/json.properties.usage.properties.output_tokens_details",
+ "details": [
+ "Type removed: ['object']"
+ ]
+ }
+ ],
+ "missing_count": 1,
+ "issues_count": 7
+ }
+ ]
}
]
},
diff --git a/docs/static/stainless-llama-stack-spec.yaml b/docs/static/stainless-llama-stack-spec.yaml
index 495df0e0c5..b2c8955800 100644
--- a/docs/static/stainless-llama-stack-spec.yaml
+++ b/docs/static/stainless-llama-stack-spec.yaml
@@ -3733,6 +3733,38 @@ paths:
summary: Get service version
description: Get the version of the service.
operationId: version_v1alpha_admin_version_get
+ /v1/responses/compact:
+ post:
+ responses:
+ '200':
+ description: Successful Response
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/OpenAICompactedResponse'
+ '400':
+ description: Bad Request
+ $ref: '#/components/responses/BadRequest400'
+ '429':
+ description: Too Many Requests
+ $ref: '#/components/responses/TooManyRequests429'
+ '500':
+ description: Internal Server Error
+ $ref: '#/components/responses/InternalServerError500'
+ default:
+ description: Default Response
+ $ref: '#/components/responses/DefaultError'
+ tags:
+ - Responses
+ summary: Compact a conversation.
+ description: Compresses conversation history into a smaller representation while preserving context.
+ operationId: compact_openai_response_v1_responses_compact_post
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/CompactResponseRequest'
+ required: true
/v1/responses/{response_id}/cancel:
post:
responses:
@@ -6947,9 +6979,11 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
- $ref: '#/components/schemas/OpenAIResponseMessage'
title: OpenAIResponseMessage
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
OpenAIResponseInputToolFileSearch:
properties:
type:
@@ -7254,40 +7288,7 @@ components:
title: Store
input:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Input
required:
@@ -8909,40 +8910,7 @@ components:
properties:
data:
items:
- anyOf:
- - oneOf:
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseOutputMessageWebSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- title: OpenAIResponseOutputMessageFileSearchToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- title: OpenAIResponseOutputMessageFunctionToolCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- title: OpenAIResponseOutputMessageMCPCall
- - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- title: OpenAIResponseOutputMessageMCPListTools
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- title: OpenAIResponseMCPApprovalRequest
- discriminator:
- propertyName: type
- mapping:
- file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
- function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
- mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
- mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
- mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
- message: '#/components/schemas/OpenAIResponseMessage-Output'
- web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
- title: OpenAIResponseMessage-Output | ... (7 variants)
- - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
- title: OpenAIResponseInputFunctionToolCallOutput
- - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
- title: OpenAIResponseMCPApprovalResponse
- - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
- title: OpenAIResponseMessage-Output
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseMessage-Output
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
type: array
title: Data
object:
@@ -11334,6 +11302,7 @@ components:
- failed
- total
title: BatchRequestCounts
+ description: The request counts for different statuses within the batch.
BatchUsage:
properties:
input_tokens:
@@ -11357,6 +11326,10 @@ components:
- output_tokens_details
- total_tokens
title: BatchUsage
+ description: |-
+ Represents token usage details including input tokens, output tokens, a
+ breakdown of output tokens, and the total tokens used. Only populated on
+ batches created after September 7, 2025.
Body_process_file_v1alpha_file_processors_process_post:
properties:
file:
@@ -11403,6 +11376,78 @@ components:
- file
- purpose
title: Body_upload_file_v1_files_post
+ CompactResponseRequest:
+ properties:
+ model:
+ type: string
+ title: Model
+ description: The model to use for generating the compacted summary.
+ input:
+ anyOf:
+ - type: string
+ - items:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Input'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseMessage-Input | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Input'
+ title: OpenAIResponseMessage-Input
+ title: OpenAIResponseInputFunctionToolCallOutput | ... (4 variants)
+ type: array
+ title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ - type: 'null'
+ title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ description: Input message(s) to compact.
+ instructions:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: Instructions to guide the compaction.
+ previous_response_id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ description: ID of a previous response whose history to compact.
+ prompt_cache_key:
+ anyOf:
+ - type: string
+ maxLength: 64
+ - type: 'null'
+ description: A key to use when reading from or writing to the prompt cache.
+ additionalProperties: false
+ required:
+ - model
+ title: CompactResponseRequest
+ description: Request model for compacting a conversation.
Connector:
properties:
connector_type:
@@ -11447,6 +11492,24 @@ components:
- mcp
title: ConnectorType
description: Type of connector.
+ ContextManagement:
+ properties:
+ type:
+ type: string
+ title: Type
+ description: The context management entry type. Currently only 'compaction' is supported.
+ enum:
+ - compaction
+ compact_threshold:
+ anyOf:
+ - type: integer
+ - type: 'null'
+ description: Token threshold at which compaction should be triggered.
+ additionalProperties: false
+ required:
+ - type
+ title: ContextManagement
+ description: Configuration for automatic context management during response generation.
ConversationItemInclude:
type: string
enum:
@@ -11496,10 +11559,12 @@ components:
title: OpenAIResponseInputFunctionToolCallOutput
- $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
title: OpenAIResponseMCPApprovalResponse
- title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseCompaction
type: array
- title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse]
- title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse]
+ title: list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
+ title: string | list[OpenAIResponseMessageUnion | OpenAIResponseInputFunctionToolCallOutput | ...]
description: Input message(s) to create the response.
model:
type: string
@@ -11734,6 +11799,13 @@ components:
- type: 'null'
description: Options that control streamed response behavior.
title: ResponseStreamOptions
+ context_management:
+ anyOf:
+ - items:
+ $ref: '#/components/schemas/ContextManagement'
+ type: array
+ - type: 'null'
+ description: Context management configuration. When set with type 'compaction', automatically compacts conversation history when token count exceeds the compact_threshold.
additionalProperties: true
required:
- input
@@ -11954,6 +12026,7 @@ components:
required:
- cached_tokens
title: InputTokensDetails
+ description: A detailed breakdown of the input tokens.
JobStatus:
type: string
enum:
@@ -12200,6 +12273,51 @@ components:
default: 0
title: OpenAIChatCompletionUsagePromptTokensDetails
description: Token details for prompt tokens in OpenAI chat completion usage.
+ OpenAICompactedResponse:
+ properties:
+ id:
+ type: string
+ title: Id
+ created_at:
+ type: integer
+ title: Created At
+ object:
+ type: string
+ title: Object
+ enum:
+ - response.compaction
+ output:
+ items:
+ $ref: '#/components/schemas/OpenAIResponseMessageOutputUnion'
+ type: array
+ title: Output
+ usage:
+ $ref: '#/components/schemas/OpenAIResponseUsage'
+ required:
+ - id
+ - created_at
+ - output
+ - usage
+ title: OpenAICompactedResponse
+ description: Response from compacting a conversation.
+ OpenAIResponseCompaction:
+ properties:
+ type:
+ type: string
+ title: Type
+ enum:
+ - compaction
+ encrypted_content:
+ type: string
+ title: Encrypted Content
+ id:
+ anyOf:
+ - type: string
+ - type: 'null'
+ required:
+ - encrypted_content
+ title: OpenAIResponseCompaction
+ description: A compaction item that summarizes prior conversation context.
OpenAIResponseIncompleteDetails:
properties:
reason:
@@ -12807,6 +12925,7 @@ components:
required:
- reasoning_tokens
title: OutputTokensDetails
+ description: A detailed breakdown of the output tokens.
ProcessFileResponse:
properties:
chunks:
@@ -14783,6 +14902,43 @@ components:
required:
- prompt_id
title: DeletePromptRequest
+ OpenAIResponseMessageOutputUnion:
+ anyOf:
+ - oneOf:
+ - $ref: '#/components/schemas/OpenAIResponseMessage-Output'
+ title: OpenAIResponseMessage-Output
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ title: OpenAIResponseOutputMessageWebSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ title: OpenAIResponseOutputMessageFileSearchToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ title: OpenAIResponseOutputMessageFunctionToolCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ title: OpenAIResponseOutputMessageMCPCall
+ - $ref: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ title: OpenAIResponseOutputMessageMCPListTools
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ title: OpenAIResponseMCPApprovalRequest
+ discriminator:
+ propertyName: type
+ mapping:
+ file_search_call: '#/components/schemas/OpenAIResponseOutputMessageFileSearchToolCall'
+ function_call: '#/components/schemas/OpenAIResponseOutputMessageFunctionToolCall'
+ mcp_approval_request: '#/components/schemas/OpenAIResponseMCPApprovalRequest'
+ mcp_call: '#/components/schemas/OpenAIResponseOutputMessageMCPCall'
+ mcp_list_tools: '#/components/schemas/OpenAIResponseOutputMessageMCPListTools'
+ message: '#/components/schemas/OpenAIResponseMessage-Output'
+ web_search_call: '#/components/schemas/OpenAIResponseOutputMessageWebSearchToolCall'
+ x-stainless-naming: OpenAIResponseMessageOutputOneOf
+ title: OpenAIResponseMessage-Output | ... (7 variants)
+ - $ref: '#/components/schemas/OpenAIResponseInputFunctionToolCallOutput'
+ title: OpenAIResponseInputFunctionToolCallOutput
+ - $ref: '#/components/schemas/OpenAIResponseMCPApprovalResponse'
+ title: OpenAIResponseMCPApprovalResponse
+ - $ref: '#/components/schemas/OpenAIResponseCompaction'
+ title: OpenAIResponseCompaction
+ title: OpenAIResponseInputFunctionToolCallOutput | OpenAIResponseMCPApprovalResponse | OpenAIResponseCompaction
+ x-stainless-naming: OpenAIResponseMessageOutputUnion
ChatCompletionMessageToolCall:
properties:
id:
diff --git a/pyproject.toml b/pyproject.toml
index 0dc69b8c2e..0a0fd9ab61 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -38,7 +38,7 @@ dependencies = [
"jinja2>=3.1.6",
"jsonschema",
"llama-stack-api", # API and provider specifications (local dev via tool.uv.sources)
- "openai>=2.5.0",
+ "openai>=2.30.0",
"prompt-toolkit",
"python-dotenv",
"pyjwt[crypto]>=2.12.0", # Pull crypto to support RS256 for jwt. Requires 2.12.0+ to fix CVE-2026-32597.
diff --git a/scripts/openapi_generator/_schema_output.py b/scripts/openapi_generator/_schema_output.py
index a58efe56cf..10a509ad85 100644
--- a/scripts/openapi_generator/_schema_output.py
+++ b/scripts/openapi_generator/_schema_output.py
@@ -244,9 +244,9 @@ def _extract_duplicate_union_types(openapi_schema: dict[str, Any]) -> dict[str,
output_union_schema_name = "OpenAIResponseMessageOutputUnion"
output_union_title = None
- # Get the union type from OpenAIResponseObjectWithInput-Output.input.items.anyOf
- if "OpenAIResponseObjectWithInput-Output" in schemas:
- schema = schemas["OpenAIResponseObjectWithInput-Output"]
+ # Get the union type from OpenAIResponseObjectWithInput.input.items.anyOf
+ if "OpenAIResponseObjectWithInput" in schemas:
+ schema = schemas["OpenAIResponseObjectWithInput"]
if isinstance(schema, dict) and "properties" in schema:
input_prop = schema["properties"].get("input")
if isinstance(input_prop, dict) and "items" in input_prop:
@@ -298,6 +298,17 @@ def _extract_duplicate_union_types(openapi_schema: dict[str, Any]) -> dict[str,
# Replace with reference
data_prop["items"] = {"$ref": f"#/components/schemas/{output_union_schema_name}"}
+ # Replace the same union in OpenAICompactedResponse.output.items.anyOf
+ if "OpenAICompactedResponse" in schemas and output_union_schema_name in schemas:
+ schema = schemas["OpenAICompactedResponse"]
+ if isinstance(schema, dict) and "properties" in schema:
+ output_prop = schema["properties"].get("output")
+ if isinstance(output_prop, dict) and "items" in output_prop:
+ items = output_prop["items"]
+ if isinstance(items, dict) and "anyOf" in items:
+ # Replace with reference
+ output_prop["items"] = {"$ref": f"#/components/schemas/{output_union_schema_name}"}
+
# Extract the Input union type (used in _responses_Request.input.anyOf[1].items.anyOf)
input_union_schema_name = "OpenAIResponseMessageInputUnion"
diff --git a/scripts/openapi_generator/stainless_config/generate_config.py b/scripts/openapi_generator/stainless_config/generate_config.py
index ee1128fc1c..0caddfc62f 100644
--- a/scripts/openapi_generator/stainless_config/generate_config.py
+++ b/scripts/openapi_generator/stainless_config/generate_config.py
@@ -225,6 +225,10 @@
"models": {
"response_object_stream": "OpenAIResponseObjectStream",
"response_object": "OpenAIResponseObject",
+ "compacted_response": "OpenAICompactedResponse",
+ "response_input": "OpenAIResponseInput",
+ "response_message": "OpenAIResponseMessage",
+ "response_output": "OpenAIResponseOutput",
},
"methods": {
"create": {
@@ -241,6 +245,10 @@
"type": "http",
"endpoint": "delete /v1/responses/{response_id}",
},
+ "compact": {
+ "type": "http",
+ "endpoint": "post /v1/responses/compact",
+ },
},
"subresources": {
"input_items": {
diff --git a/src/llama_stack/providers/inline/responses/builtin/impl.py b/src/llama_stack/providers/inline/responses/builtin/impl.py
index b218ec9fec..28004a6bfe 100644
--- a/src/llama_stack/providers/inline/responses/builtin/impl.py
+++ b/src/llama_stack/providers/inline/responses/builtin/impl.py
@@ -15,6 +15,7 @@
from llama_stack.telemetry.constants import RESPONSES_PARAMETER_USAGE_TOTAL
from llama_stack_api import (
CancelResponseRequest,
+ CompactResponseRequest,
Connectors,
Conversations,
CreateResponseRequest,
@@ -25,6 +26,7 @@
ListOpenAIResponseObject,
ListResponseInputItemsRequest,
ListResponsesRequest,
+ OpenAICompactedResponse,
OpenAIDeleteResponseObject,
OpenAIResponseObject,
OpenAIResponseObjectStream,
@@ -167,6 +169,7 @@ async def create_openai_response(
presence_penalty=request.presence_penalty,
extra_body=request.model_extra,
stream_options=request.stream_options,
+ context_management=request.context_management,
)
return result
@@ -193,6 +196,19 @@ async def list_openai_response_input_items(
request.order,
)
+ async def compact_openai_response(
+ self,
+ request: CompactResponseRequest,
+ ) -> OpenAICompactedResponse:
+ assert self.openai_responses_impl is not None, "OpenAI responses not initialized"
+ return await self.openai_responses_impl.compact_openai_response(
+ model=request.model,
+ input=request.input,
+ instructions=request.instructions,
+ previous_response_id=request.previous_response_id,
+ prompt_cache_key=request.prompt_cache_key,
+ )
+
async def delete_openai_response(
self,
request: DeleteResponseRequest,
diff --git a/src/llama_stack/providers/inline/responses/builtin/responses/openai_responses.py b/src/llama_stack/providers/inline/responses/builtin/responses/openai_responses.py
index be93f04cec..ca2eeea8b1 100644
--- a/src/llama_stack/providers/inline/responses/builtin/responses/openai_responses.py
+++ b/src/llama_stack/providers/inline/responses/builtin/responses/openai_responses.py
@@ -41,8 +41,10 @@
ListOpenAIResponseInputItem,
ListOpenAIResponseObject,
OpenAIChatCompletionContentPartParam,
+ OpenAICompactedResponse,
OpenAIDeleteResponseObject,
OpenAIMessageParam,
+ OpenAIResponseCompaction,
OpenAIResponseError,
OpenAIResponseInput,
OpenAIResponseInputMessageContentFile,
@@ -57,6 +59,9 @@
OpenAIResponseReasoning,
OpenAIResponseText,
OpenAIResponseTextFormat,
+ OpenAIResponseUsage,
+ OpenAIResponseUsageInputTokensDetails,
+ OpenAIResponseUsageOutputTokensDetails,
OpenAISystemMessageParam,
OpenAIUserMessageParam,
Order,
@@ -71,7 +76,7 @@
ToolRuntime,
VectorIO,
)
-from llama_stack_api.inference import ServiceTier
+from llama_stack_api.inference import OpenAIChatCompletionRequestWithExtraBody, ServiceTier
from .streaming import StreamingResponseOrchestrator
from .tool_executor import ToolExecutor
@@ -632,6 +637,7 @@ async def create_openai_response(
presence_penalty: float | None = None,
extra_body: dict | None = None,
stream_options: ResponseStreamOptions | None = None,
+ context_management: list | None = None,
):
stream = bool(stream)
background = bool(background)
@@ -685,6 +691,10 @@ async def create_openai_response(
if max_tool_calls is not None and max_tool_calls < 1:
raise ValueError(f"Invalid {max_tool_calls=}; should be >= 1")
+ # Auto-compact if context_management is configured
+ if context_management:
+ input = await self._maybe_auto_compact(input, model, context_management)
+
# Handle background mode
if background:
return await self._create_background_response(
@@ -1183,6 +1193,152 @@ async def _create_streaming_response(
async def delete_openai_response(self, response_id: str) -> OpenAIDeleteResponseObject:
return await self.responses_store.delete_response_object(response_id)
+ async def compact_openai_response(
+ self,
+ model: str,
+ input: str | list[OpenAIResponseInput] | None = None,
+ instructions: str | None = None,
+ previous_response_id: str | None = None,
+ prompt_cache_key: str | None = None,
+ ) -> OpenAICompactedResponse:
+ # Resolve input from previous_response_id or direct input
+ if previous_response_id:
+ previous_response = await self.responses_store.get_response_object(previous_response_id)
+ if input is not None:
+ all_input = await self._prepend_previous_response(input, previous_response)
+ else:
+ all_input = list(previous_response.input) + list(previous_response.output)
+ elif input is not None:
+ if isinstance(input, str):
+ all_input = [OpenAIResponseMessage(content=input, role="user")]
+ else:
+ all_input = list(input)
+ else:
+ raise InvalidParameterError(
+ "input, previous_response_id", None, "Either 'input' or 'previous_response_id' must be provided."
+ )
+
+ # Convert to chat messages for the summarization call
+ messages = await convert_response_input_to_chat_messages(all_input, files_api=self.files_api)
+
+ # Add summarization prompt
+ summarization_prompt = (
+ "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary "
+ "of the conversation so far. Include:\n"
+ "- Current progress and key decisions made\n"
+ "- Important context, constraints, or user preferences\n"
+ "- What remains to be done (clear next steps)\n"
+ "- Any critical data, examples, or references needed to continue\n\n"
+ "Be concise, structured, and focused on helping seamlessly continue the work."
+ )
+ if instructions:
+ summarization_prompt = f"{instructions}\n\n{summarization_prompt}"
+
+ messages.append(OpenAIUserMessageParam(role="user", content=summarization_prompt))
+
+ # Call inference to generate the summary
+ params = OpenAIChatCompletionRequestWithExtraBody(
+ model=model,
+ messages=messages,
+ stream=False,
+ prompt_cache_key=prompt_cache_key,
+ )
+ completion = await self.inference_api.openai_chat_completion(params)
+
+ # Extract summary text from the completion
+ summary_text = ""
+ if hasattr(completion, "choices") and completion.choices:
+ choice = completion.choices[0]
+ if choice.message and choice.message.content:
+ summary_text = choice.message.content
+
+ # Extract user messages from input (matching OpenAI behavior: all user messages verbatim)
+ output_items: list[OpenAIResponseInput] = []
+ for item in all_input:
+ if isinstance(item, OpenAIResponseMessage) and item.role == "user":
+ output_items.append(
+ OpenAIResponseMessage(
+ id=f"msg_{uuid.uuid4().hex[:24]}",
+ type="message",
+ status="completed",
+ role="user",
+ content=item.content,
+ )
+ )
+
+ # Add compaction item as last element
+ compaction_item = OpenAIResponseCompaction(
+ id=f"cmp_{uuid.uuid4().hex[:24]}",
+ encrypted_content=summary_text,
+ )
+ output_items.append(compaction_item)
+
+ # Build usage from completion
+ usage_data = OpenAIResponseUsage(
+ input_tokens=completion.usage.prompt_tokens if completion.usage else 0,
+ output_tokens=completion.usage.completion_tokens if completion.usage else 0,
+ total_tokens=completion.usage.total_tokens if completion.usage else 0,
+ input_tokens_details=OpenAIResponseUsageInputTokensDetails(cached_tokens=0),
+ output_tokens_details=OpenAIResponseUsageOutputTokensDetails(reasoning_tokens=0),
+ )
+
+ return OpenAICompactedResponse(
+ id=f"resp_{uuid.uuid4().hex[:24]}",
+ created_at=int(time.time()),
+ output=output_items,
+ usage=usage_data,
+ )
+
+ def _estimate_token_count(self, input: str | list[OpenAIResponseInput]) -> int:
+ """Estimate token count using a rough character-based heuristic (4 chars ≈ 1 token)."""
+ if isinstance(input, str):
+ return len(input) // 4
+
+ total_chars = 0
+ for item in input:
+ if isinstance(item, OpenAIResponseMessage):
+ if isinstance(item.content, str):
+ total_chars += len(item.content)
+ elif isinstance(item.content, list):
+ for part in item.content:
+ if hasattr(part, "text"):
+ total_chars += len(part.text)
+ elif isinstance(item, OpenAIResponseCompaction):
+ total_chars += len(item.encrypted_content)
+ elif hasattr(item, "arguments"):
+ total_chars += len(getattr(item, "arguments", ""))
+ elif hasattr(item, "output"):
+ output = getattr(item, "output", "")
+ if isinstance(output, str):
+ total_chars += len(output)
+ return total_chars // 4
+
+ async def _maybe_auto_compact(
+ self,
+ input: str | list[OpenAIResponseInput],
+ model: str,
+ context_management: list,
+ ) -> str | list[OpenAIResponseInput]:
+ """Auto-compact input if token count exceeds compact_threshold."""
+ for entry in context_management:
+ entry_type = entry.type if hasattr(entry, "type") else entry.get("type")
+ if entry_type != "compaction":
+ continue
+
+ threshold = (
+ entry.compact_threshold if hasattr(entry, "compact_threshold") else entry.get("compact_threshold")
+ )
+ if threshold is None:
+ continue
+
+ estimated_tokens = self._estimate_token_count(input)
+ if estimated_tokens > threshold:
+ logger.debug(f"Auto-compacting: estimated {estimated_tokens} tokens exceeds threshold {threshold}")
+ compacted = await self.compact_openai_response(model=model, input=input)
+ return list(compacted.output)
+
+ return input
+
async def cancel_openai_response(
self,
response_id: str,
diff --git a/src/llama_stack/providers/inline/responses/builtin/responses/utils.py b/src/llama_stack/providers/inline/responses/builtin/responses/utils.py
index 12d9af0778..ef9589fd06 100644
--- a/src/llama_stack/providers/inline/responses/builtin/responses/utils.py
+++ b/src/llama_stack/providers/inline/responses/builtin/responses/utils.py
@@ -27,6 +27,7 @@
OpenAIJSONSchema,
OpenAIMessageParam,
OpenAIResponseAnnotationFileCitation,
+ OpenAIResponseCompaction,
OpenAIResponseFormatJSONObject,
OpenAIResponseFormatJSONSchema,
OpenAIResponseFormatParam,
@@ -350,6 +351,9 @@ async def convert_response_input_to_chat_messages(
):
# these are handled by the responses impl itself and not pass through to chat completions
pass
+ elif isinstance(input_item, OpenAIResponseCompaction):
+ # Convert compaction summary to an assistant message so the model sees prior context
+ messages.append(OpenAIAssistantMessageParam(content=input_item.encrypted_content))
elif isinstance(input_item, OpenAIResponseMessage):
# Narrow type to OpenAIResponseMessage which has content and role attributes
content = await convert_response_content_to_chat_content(input_item.content, files_api)
diff --git a/src/llama_stack/providers/utils/responses/responses_store.py b/src/llama_stack/providers/utils/responses/responses_store.py
index 764b705e65..98fb7b66e1 100644
--- a/src/llama_stack/providers/utils/responses/responses_store.py
+++ b/src/llama_stack/providers/utils/responses/responses_store.py
@@ -279,7 +279,12 @@ async def list_response_input_items(
)
response_with_input_and_messages = await self.get_response_object(response_id)
- items = response_with_input_and_messages.input
+ # Filter out compaction items (matching OpenAI behavior: input_items hides compaction)
+ items = [
+ item
+ for item in response_with_input_and_messages.input
+ if not (hasattr(item, "type") and getattr(item, "type", None) == "compaction")
+ ]
if order == Order.desc:
items = list(reversed(items))
diff --git a/src/llama_stack_api/__init__.py b/src/llama_stack_api/__init__.py
index 3566ebb0fd..ab35417ff5 100644
--- a/src/llama_stack_api/__init__.py
+++ b/src/llama_stack_api/__init__.py
@@ -54,6 +54,8 @@
from .responses import (
Responses,
CancelResponseRequest,
+ CompactResponseRequest,
+ ContextManagement,
CreateResponseRequest,
DeleteResponseRequest,
ListResponseInputItemsRequest,
@@ -338,12 +340,14 @@
ListOpenAIResponseInputItem,
ListOpenAIResponseObject,
MCPListToolsTool,
+ OpenAICompactedResponse,
OpenAIDeleteResponseObject,
OpenAIResponseAnnotationCitation,
OpenAIResponseAnnotationContainerFileCitation,
OpenAIResponseAnnotationFileCitation,
OpenAIResponseAnnotationFilePath,
OpenAIResponseAnnotations,
+ OpenAIResponseCompaction,
OpenAIResponseContentPart,
OpenAIResponseContentPartOutputText,
OpenAIResponseContentPartReasoningSummary,
@@ -592,6 +596,8 @@
"AggregationFunctionType",
# Responses Request Models
"CancelResponseRequest",
+ "CompactResponseRequest",
+ "ContextManagement",
"CreateResponseRequest",
"DeleteResponseRequest",
"ListResponseInputItemsRequest",
@@ -825,6 +831,7 @@
"OpenAICompletionWithInputMessages",
"OpenAICreateVectorStoreFileBatchRequestWithExtraBody",
"OpenAICreateVectorStoreRequestWithExtraBody",
+ "OpenAICompactedResponse",
"OpenAIDeleteResponseObject",
"OpenAIDeveloperMessageParam",
"OpenAIEmbeddingData",
@@ -853,6 +860,7 @@
"OpenAIResponseAnnotationFileCitation",
"OpenAIResponseAnnotationFilePath",
"OpenAIResponseAnnotations",
+ "OpenAIResponseCompaction",
"OpenAIResponseContentPart",
"OpenAIResponseContentPartOutputText",
"OpenAIResponseContentPartReasoningSummary",
diff --git a/src/llama_stack_api/openai_responses.py b/src/llama_stack_api/openai_responses.py
index c5ce42d940..265341a46d 100644
--- a/src/llama_stack_api/openai_responses.py
+++ b/src/llama_stack_api/openai_responses.py
@@ -1487,11 +1487,31 @@ class OpenAIResponseInputFunctionToolCallOutput(BaseModel):
status: str | None = None
+@json_schema_type
+class OpenAIResponseCompaction(BaseModel):
+ """A compaction item that summarizes prior conversation context.
+
+ :param type: Always "compaction"
+ :param encrypted_content: Compacted summary of prior conversation (plaintext in Llama Stack)
+ :param id: Unique identifier for this compaction item
+ """
+
+ type: Literal["compaction"] = "compaction"
+ encrypted_content: str
+ id: str | None = None
+
+
OpenAIResponseInput = Annotated[
# Responses API allows output messages to be passed in as input
+ # OpenAIResponseMessage appears in both OpenAIResponseOutput (discriminated by type="message")
+ # AND as a standalone fallback below. The standalone entry is required because inputs without
+ # an explicit "type" field (e.g. {"role": "user", "content": "..."}) fail the discriminator
+ # check in OpenAIResponseOutput. The left_to_right union mode tries the discriminated union
+ # first, then falls back to matching OpenAIResponseMessage directly.
OpenAIResponseOutput
| OpenAIResponseInputFunctionToolCallOutput
| OpenAIResponseMCPApprovalResponse
+ | OpenAIResponseCompaction
| OpenAIResponseMessage,
Field(union_mode="left_to_right"),
]
@@ -1510,6 +1530,24 @@ class ListOpenAIResponseInputItem(BaseModel):
object: Literal["list"] = "list"
+@json_schema_type
+class OpenAICompactedResponse(BaseModel):
+ """Response from compacting a conversation.
+
+ :param id: Unique identifier for the compacted response
+ :param created_at: Unix timestamp of when the compaction was created
+ :param object: Object type, always "response.compaction"
+ :param output: Compacted output items (user messages + compaction item)
+ :param usage: Token usage information
+ """
+
+ id: str
+ created_at: int
+ object: Literal["response.compaction"] = "response.compaction"
+ output: Sequence[OpenAIResponseInput]
+ usage: OpenAIResponseUsage
+
+
@json_schema_type
class OpenAIResponseObjectWithInput(OpenAIResponseObject):
"""OpenAI response object extended with input context information.
diff --git a/src/llama_stack_api/pyproject.toml b/src/llama_stack_api/pyproject.toml
index b4da2a114f..ee92043759 100644
--- a/src/llama_stack_api/pyproject.toml
+++ b/src/llama_stack_api/pyproject.toml
@@ -24,7 +24,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
- "openai>=2.5.0",
+ "openai>=2.30.0",
"fastapi>=0.115.0,<1.0",
"pydantic>=2.11.9",
"jsonschema",
diff --git a/src/llama_stack_api/responses/__init__.py b/src/llama_stack_api/responses/__init__.py
index f0d7e8db80..79d65773d3 100644
--- a/src/llama_stack_api/responses/__init__.py
+++ b/src/llama_stack_api/responses/__init__.py
@@ -15,6 +15,8 @@
from .api import Responses
from .models import (
CancelResponseRequest,
+ CompactResponseRequest,
+ ContextManagement,
CreateResponseRequest,
DeleteResponseRequest,
ListResponseInputItemsRequest,
@@ -30,6 +32,8 @@
__all__ = [
"Responses",
"CancelResponseRequest",
+ "CompactResponseRequest",
+ "ContextManagement",
"CreateResponseRequest",
"DeleteResponseRequest",
"ListResponseInputItemsRequest",
diff --git a/src/llama_stack_api/responses/api.py b/src/llama_stack_api/responses/api.py
index a7eb6d201a..4cdba6a526 100644
--- a/src/llama_stack_api/responses/api.py
+++ b/src/llama_stack_api/responses/api.py
@@ -10,6 +10,7 @@
from llama_stack_api.openai_responses import (
ListOpenAIResponseInputItem,
ListOpenAIResponseObject,
+ OpenAICompactedResponse,
OpenAIDeleteResponseObject,
OpenAIResponseObject,
OpenAIResponseObjectStream,
@@ -17,6 +18,7 @@
from .models import (
CancelResponseRequest,
+ CompactResponseRequest,
CreateResponseRequest,
DeleteResponseRequest,
ListResponseInputItemsRequest,
@@ -54,6 +56,11 @@ async def delete_openai_response(
request: DeleteResponseRequest,
) -> OpenAIDeleteResponseObject: ...
+ async def compact_openai_response(
+ self,
+ request: CompactResponseRequest,
+ ) -> OpenAICompactedResponse: ...
+
async def cancel_openai_response(
self,
request: CancelResponseRequest,
diff --git a/src/llama_stack_api/responses/fastapi_routes.py b/src/llama_stack_api/responses/fastapi_routes.py
index f5205ac6c0..c6ff765dfb 100644
--- a/src/llama_stack_api/responses/fastapi_routes.py
+++ b/src/llama_stack_api/responses/fastapi_routes.py
@@ -26,6 +26,7 @@
from llama_stack_api.openai_responses import (
ListOpenAIResponseInputItem,
ListOpenAIResponseObject,
+ OpenAICompactedResponse,
OpenAIDeleteResponseObject,
OpenAIResponseObject,
)
@@ -41,6 +42,7 @@
from .api import Responses
from .models import (
CancelResponseRequest,
+ CompactResponseRequest,
CreateResponseRequest,
DeleteResponseRequest,
ListResponseInputItemsRequest,
@@ -160,6 +162,17 @@ def create_router(impl: Responses) -> APIRouter:
route_class=ExceptionTranslatingRoute,
)
+ @router.post(
+ "/responses/compact",
+ response_model=OpenAICompactedResponse,
+ summary="Compact a conversation.",
+ description="Compresses conversation history into a smaller representation while preserving context.",
+ )
+ async def compact_openai_response(
+ request: Annotated[CompactResponseRequest, Body(...)],
+ ) -> OpenAICompactedResponse:
+ return await impl.compact_openai_response(request)
+
@router.get(
"/responses/{response_id}",
response_model=OpenAIResponseObject,
diff --git a/src/llama_stack_api/responses/models.py b/src/llama_stack_api/responses/models.py
index 17350b55ae..320a69202f 100644
--- a/src/llama_stack_api/responses/models.py
+++ b/src/llama_stack_api/responses/models.py
@@ -11,6 +11,7 @@
"""
from enum import StrEnum
+from typing import Literal
from pydantic import BaseModel, ConfigDict, Field
@@ -69,6 +70,19 @@ class ResponseStreamOptions(BaseModel):
)
+class ContextManagement(BaseModel):
+ """Configuration for automatic context management during response generation."""
+
+ model_config = ConfigDict(extra="forbid")
+
+ type: Literal["compaction"] = Field(
+ ..., description="The context management entry type. Currently only 'compaction' is supported."
+ )
+ compact_threshold: int | None = Field(
+ default=None, description="Token threshold at which compaction should be triggered."
+ )
+
+
# extra_body can be accessed via .model_extra
class CreateResponseRequest(BaseModel):
"""Request model for creating a response."""
@@ -201,6 +215,10 @@ class CreateResponseRequest(BaseModel):
default=None,
description="Options that control streamed response behavior.",
)
+ context_management: list[ContextManagement] | None = Field(
+ default=None,
+ description="Context management configuration. When set with type 'compaction', automatically compacts conversation history when token count exceeds the compact_threshold.",
+ )
class RetrieveResponseRequest(BaseModel):
@@ -245,6 +263,24 @@ class ListResponseInputItemsRequest(BaseModel):
order: Order | None = Field(default=Order.desc, description="The order to return the input items in.")
+class CompactResponseRequest(BaseModel):
+ """Request model for compacting a conversation."""
+
+ model_config = ConfigDict(extra="forbid")
+
+ model: str = Field(..., description="The model to use for generating the compacted summary.")
+ input: str | list[OpenAIResponseInput] | None = Field(default=None, description="Input message(s) to compact.")
+ instructions: str | None = Field(default=None, description="Instructions to guide the compaction.")
+ previous_response_id: str | None = Field(
+ default=None, description="ID of a previous response whose history to compact."
+ )
+ prompt_cache_key: str | None = Field(
+ default=None,
+ max_length=64,
+ description="A key to use when reading from or writing to the prompt cache.",
+ )
+
+
class DeleteResponseRequest(BaseModel):
"""Request model for deleting a response."""
diff --git a/tests/integration/responses/recordings/02353ad89b7f8bbe82595e780c2de8cef8d55434def4d6f1ef728dbc74c5842d.json b/tests/integration/responses/recordings/02353ad89b7f8bbe82595e780c2de8cef8d55434def4d6f1ef728dbc74c5842d.json
new file mode 100644
index 0000000000..6880ebc91e
--- /dev/null
+++ b/tests/integration/responses/recordings/02353ad89b7f8bbe82595e780c2de8cef8d55434def4d6f1ef728dbc74c5842d.json
@@ -0,0 +1,85 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_roundtrip[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "We're building a book tracker app with FastAPI."
+ },
+ {
+ "role": "assistant",
+ "content": "Great choice! Use SQLite for the database."
+ },
+ {
+ "role": "user",
+ "content": "What tables do we need?"
+ },
+ {
+ "role": "assistant",
+ "content": "Users, Books, and ReadingStatus tables."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-02353ad89b7f",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary: Book Tracker App with FastAPI\n\n#### **Progress and Key Decisions**\n- **App Description:** A book tracker app is being developed using FastAPI.\n- **Database:** SQLite has been chosen as the database.\n- **Schema Design:** Initial table requirements identified\u2014`Users`, `Books`, and `ReadingStatus`.\n\n#### **Context and Constraints**\n- Focus is on simplicity and functionality (FastAPI + SQLite).\n- No additional preferences, constraints, or specific requirements have been shared yet.\n\n#### **Next Steps**\n1. Define the database schema:\n - Determine fields and relationships for `Users`, `Books`, and `ReadingStatus` tables.\n - Consider relationships (e.g., one-to-many between Users and ReadingStatus, and between Books and ReadingStatus).\n2. Set up FastAPI project structure:\n - Define models, database setup, and API routes.\n3. Design API endpoints:\n - Example: User registration, book tracking, updating reading status.\n4. Discuss further app requirements: features, authentication, or UI.\n\n#### **Critical Data/References**\n- Specify required fields for tables (e.g., `Books` might need title, author, genre; `ReadingStatus` might need progress percentage).\n- Any authentication or user management needs? (e.g., OAuth2, JWT).\n\nLet me know if you'd like help designing the schema, setting up the project, or moving forward with implementation!",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 290,
+ "prompt_tokens": 139,
+ "total_tokens": 429,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/0423588527621f6b441ad7e945cf05068113cf6b0e9081afc4e489cb487d4414.json b/tests/integration/responses/recordings/0423588527621f6b441ad7e945cf05068113cf6b0e9081afc4e489cb487d4414.json
new file mode 100644
index 0000000000..56b70f2b8e
--- /dev/null
+++ b/tests/integration/responses/recordings/0423588527621f6b441ad7e945cf05068113cf6b0e9081afc4e489cb487d4414.json
@@ -0,0 +1,411 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_no_compact_below_threshold[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello!"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "H3EnFQcrgEg1ZV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": "Hello",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "w5bZUe9zao5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " there",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "zBtDvmhZjy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "BjMkmtb1cxAAqdl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " \ud83d\ude0a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "6rM1gH4CVpuI71"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " How",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "8GRKBhkUrbL1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "iinHgfOwq3Zg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "zAhuWIDt0kHnM4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " assist",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "KlXpuMbM3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "2m6Mdbdmrtpq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": " today",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "THrflepNhh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "3wQRP1jAoEkkbyp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "uBonpbb6Gq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-042358852762",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 12,
+ "prompt_tokens": 9,
+ "total_tokens": 21,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": ""
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/07c222758ea7730b28114ab0efaf2052f5d437d6b8a54fd667874d93dd90cc38.json b/tests/integration/responses/recordings/07c222758ea7730b28114ab0efaf2052f5d437d6b8a54fd667874d93dd90cc38.json
new file mode 100644
index 0000000000..c01b4128e8
--- /dev/null
+++ b/tests/integration/responses/recordings/07c222758ea7730b28114ab0efaf2052f5d437d6b8a54fd667874d93dd90cc38.json
@@ -0,0 +1,85 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_basic_conversation[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Help me plan a Python web app."
+ },
+ {
+ "role": "assistant",
+ "content": "I suggest FastAPI with SQLite."
+ },
+ {
+ "role": "user",
+ "content": "Add authentication too."
+ },
+ {
+ "role": "assistant",
+ "content": "Use OAuth2 with JWT tokens."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-07c222758ea7",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary\n\n**Current Progress and Key Decisions:**\n- **Framework & Database:** Decided to use FastAPI for the web application and SQLite for database management.\n- **Authentication:** Plan to implement OAuth2 with JWT tokens for authentication.\n\n**Important Context, Constraints, or Preferences:**\n- The user prefers simplicity and likely plans for a lightweight, efficient app, suitable for small to medium-sized use cases due to the choice of SQLite.\n- FastAPI is favored, indicating a preference for modern, fast, and easy-to-use frameworks in Python.\n\n**Next Steps:**\n1. **Set Up FastAPI Project:**\n - Initialize a new FastAPI project structure.\n - Install necessary packages (`fastapi`, `uvicorn`, `sqlalchemy`, etc.).\n\n2. **Configure Database:**\n - Set up SQLite and configure SQLAlchemy to manage database interactions.\n\n3. **Implement Authentication:**\n - Set up OAuth2 authentication with JWT tokens using FastAPI utilities.\n - Create endpoints for user registration, login, and token management.\n\n4. **Design API Endpoints:**\n - Plan and implement RESTful API endpoints based on application requirements.\n\n5. **Testing and Deployment:**\n - Develop unit and integration tests.\n - Plan deployment strategy, possibly using Docker for containerization.\n\n**Critical Data, Examples, or References:**\n- Documentation for [FastAPI](https://fastapi.tiangolo.com/)\n- Resources on [OAuth2 and JWT](https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/)\n- [SQLAlchemy](https://www.sqlalchemy.org/) setup for working with SQLite.\n\nThis summary should help ensure continuity in developing the web application with a clear progression of tasks and relevant resources.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": {
+ "completion_tokens": 354,
+ "prompt_tokens": 131,
+ "total_tokens": 485,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/0ae991d2f8c04b2af954bd93fa50d899d9772338bf7f12a0380623d2b3cfa3aa.json b/tests/integration/responses/recordings/0ae991d2f8c04b2af954bd93fa50d899d9772338bf7f12a0380623d2b3cfa3aa.json
new file mode 100644
index 0000000000..0cf5782d45
--- /dev/null
+++ b/tests/integration/responses/recordings/0ae991d2f8c04b2af954bd93fa50d899d9772338bf7f12a0380623d2b3cfa3aa.json
@@ -0,0 +1,357 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_no_compact_below_threshold[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello!"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "5lRmePnsitvIjl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": "Hello",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "r8lD0hNg6iJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "yWVSrU5ZeWimiAt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": " How",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "Dl415lHlxWdC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "Gqm4S1mA32Va"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "Kena1PQJz3ctMs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": " assist",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "rJkFRqnvR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "R5iF3HjGtNZq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": " today",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "lWFtWgi9BP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "QiPoxg4Bz0PGYwu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": null,
+ "obfuscation": "mbD7X5NLJx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0ae991d2f8c0",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": {
+ "completion_tokens": 9,
+ "prompt_tokens": 9,
+ "total_tokens": 18,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "4"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/0e543f072fbecd390eebd1bc49df00cc1428d3bd8649d0da08e78e9ccd18c3ac.json b/tests/integration/responses/recordings/0e543f072fbecd390eebd1bc49df00cc1428d3bd8649d0da08e78e9ccd18c3ac.json
new file mode 100644
index 0000000000..e11c3924bf
--- /dev/null
+++ b/tests/integration/responses/recordings/0e543f072fbecd390eebd1bc49df00cc1428d3bd8649d0da08e78e9ccd18c3ac.json
@@ -0,0 +1,77 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_double_compaction[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Topic A discussion"
+ },
+ {
+ "role": "assistant",
+ "content": "Response about A"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-0e543f072fbe",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "**Handoff Summary: Context Checkpoint**\n\n1. **Current Progress & Key Decisions**: \n - The user requested a discussion about \"Topic A,\" but no further details or clarification about \"Topic A\" were provided yet. \n - Conversation context is still in the exploratory phase with no specific direction or subtopics identified. \n\n2. **Important Context, Constraints, or Preferences**: \n - User\u2019s intent or goals for discussing \"Topic A\" remain unclear. \n - No specific examples, preferences, or constraints have been provided. \n\n3. **Next Steps**: \n - Seek clarification from the user on their desired focus for \"Topic A\". \n - Determine any specific queries, subtopics, or goals they have in mind. \n\n4. **Critical Data, Examples, or References Needed**: \n - User to define or elaborate on \"Topic A\" to proceed with a meaningful discussion or support. \n\n**Actionable Follow-Up**: Please clarify the scope or specific aspect of \"Topic A\" you'd like to discuss or address further for continued assistance. ",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 224,
+ "prompt_tokens": 103,
+ "total_tokens": 327,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/0f7033340b809b4a03dcff6a2431c391ec6d1ac47b7ef2900160a972930bdab1.json b/tests/integration/responses/recordings/0f7033340b809b4a03dcff6a2431c391ec6d1ac47b7ef2900160a972930bdab1.json
new file mode 100644
index 0000000000..ba100f397a
--- /dev/null
+++ b/tests/integration/responses/recordings/0f7033340b809b4a03dcff6a2431c391ec6d1ac47b7ef2900160a972930bdab1.json
@@ -0,0 +1,303 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_with_previous_response_id[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "What is the capital of France?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "uyk59LKC4E8JNh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": "The",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "D5NsnVQEBX2wV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": " capital",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "MCMW3V4U"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "nEWoltD7yyL1x"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": " France",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "8mYuVXs9u"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "rQ2paF8p824k2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": " Paris",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "eSUV887rfy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "auGx3THEghmXkHU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "wiRZjowAmk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-0f7033340b80",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": {
+ "completion_tokens": 7,
+ "prompt_tokens": 14,
+ "total_tokens": 21,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": ""
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/258bcadc5e2be2de95911e3cd1c18809bc53df2e9f0752bfe55336eee1f0be5a.json b/tests/integration/responses/recordings/258bcadc5e2be2de95911e3cd1c18809bc53df2e9f0752bfe55336eee1f0be5a.json
new file mode 100644
index 0000000000..30f49e6047
--- /dev/null
+++ b/tests/integration/responses/recordings/258bcadc5e2be2de95911e3cd1c18809bc53df2e9f0752bfe55336eee1f0be5a.json
@@ -0,0 +1,384 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_none_does_not_compact[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello!"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "2DoLt9NbSiisED"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Hi",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "RuDCCkyXnXI3lB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": " there",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "Pr0L1DG8Am"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "IjvHOxjr9uzbBNA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": " How",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "QSd9iBzaFUhZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "3t0Ff5w7vJ2v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "6RY9z7II2XQSkL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": " assist",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "fxpB9pUV3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "eaQOgz8JmXKH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": " today",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "n1somVpJ7T"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "qEKY9sac9gqPkQx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": null,
+ "obfuscation": "zEtypE3QCH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-258bcadc5e2b",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_ab062d0c27",
+ "usage": {
+ "completion_tokens": 10,
+ "prompt_tokens": 9,
+ "total_tokens": 19,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": ""
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/29d87fdb5c4edc1aa846fd8e374bf96112b8a129fb111a470b1a6191770f65e8.json b/tests/integration/responses/recordings/29d87fdb5c4edc1aa846fd8e374bf96112b8a129fb111a470b1a6191770f65e8.json
new file mode 100644
index 0000000000..c458ce46ca
--- /dev/null
+++ b/tests/integration/responses/recordings/29d87fdb5c4edc1aa846fd8e374bf96112b8a129fb111a470b1a6191770f65e8.json
@@ -0,0 +1,986 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_input_items_hides_compaction[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello"
+ },
+ {
+ "role": "assistant",
+ "content": "### Handoff Summary\n\n**Current Progress and Key Decisions Made:**\n- Initial greeting exchanged; no significant progress or decisions have been made yet.\n\n**Important Context, Constraints, or User Preferences:**\n- User may be looking to start a new conversation or seek information, but no specific context or preference has been provided.\n\n**What Remains to be Done (Clear Next Steps):**\n- Await further user input to determine the direction of the conversation.\n- Respond accordingly to any questions, tasks, or topics the user introduces.\n\n**Critical Data, Examples, or References Needed to Continue:**\n- None at the moment; additional information will be gathered based on user\u2019s next input. \n\nEnsure to engage with any new details or inquiries the user provides promptly."
+ },
+ {
+ "role": "user",
+ "content": "How are you?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "ATyEgxRPOfDmoS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": "I'm",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "at489aQwHY9vp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " just",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "GO1LX9VsvAd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "gPRE6y0ChElqH7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " computer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "KtiJIeJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " program",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "mXjZMpnd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "JmQ4l8dhmIWfxjD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " so",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "nQe4RlNbHarIV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "GP2UoVeDKhoiqu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " don't",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "AJpJnOfwmr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " have",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "tVoKouSDeZP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " feelings",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "SFUemIx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "DO5KIPQwAVt39YM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " but",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "od2ZTSC5T390"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " I'm",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "sbGtDLdCVeGh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " here",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "rAnzNHr9Y4Q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "ycldFslHDE0A"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " ready",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "PxS8I7wu5D"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "O8LbfxBvxXzoR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " help",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "NVTOoBEGJUi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "VCpXyT6OJmyZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "H6WnKg63xHR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " whatever",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "bIdTGSe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "2WVQQNiOtmVG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " need",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "xi4rq22DGDm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "urFNIZHvkSxhIAO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " How",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "x06ORpXSzj9H"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "WuqBauiEaC1b"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "ZrKx1BBxiyO3Tz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " assist",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "WfGeYxwfZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "pRbFRUYei37G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": " today",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "R2BM5Wvkm6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "dc5JLtMQp4cQNmz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": null,
+ "obfuscation": "HWmz9pUPcj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-29d87fdb5c4e",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_92d15debfd",
+ "usage": {
+ "completion_tokens": 32,
+ "prompt_tokens": 171,
+ "total_tokens": 203,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "Rga0m3siNidd7"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/54aba5b04617898ad9e3a7fa79ff188cf165e769e85a055a2609ac9e2fed8f8b.json b/tests/integration/responses/recordings/54aba5b04617898ad9e3a7fa79ff188cf165e769e85a055a2609ac9e2fed8f8b.json
new file mode 100644
index 0000000000..01545020c4
--- /dev/null
+++ b/tests/integration/responses/recordings/54aba5b04617898ad9e3a7fa79ff188cf165e769e85a055a2609ac9e2fed8f8b.json
@@ -0,0 +1,28152 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_roundtrip[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "We're building a book tracker app with FastAPI."
+ },
+ {
+ "role": "user",
+ "content": "What tables do we need?"
+ },
+ {
+ "role": "assistant",
+ "content": "### Handoff Summary: Book Tracker App with FastAPI\n\n#### **Progress and Key Decisions**\n- **App Description:** A book tracker app is being developed using FastAPI.\n- **Database:** SQLite has been chosen as the database.\n- **Schema Design:** Initial table requirements identified\u2014`Users`, `Books`, and `ReadingStatus`.\n\n#### **Context and Constraints**\n- Focus is on simplicity and functionality (FastAPI + SQLite).\n- No additional preferences, constraints, or specific requirements have been shared yet.\n\n#### **Next Steps**\n1. Define the database schema:\n - Determine fields and relationships for `Users`, `Books`, and `ReadingStatus` tables.\n - Consider relationships (e.g., one-to-many between Users and ReadingStatus, and between Books and ReadingStatus).\n2. Set up FastAPI project structure:\n - Define models, database setup, and API routes.\n3. Design API endpoints:\n - Example: User registration, book tracking, updating reading status.\n4. Discuss further app requirements: features, authentication, or UI.\n\n#### **Critical Data/References**\n- Specify required fields for tables (e.g., `Books` might need title, author, genre; `ReadingStatus` might need progress percentage).\n- Any authentication or user management needs? (e.g., OAuth2, JWT).\n\nLet me know if you'd like help designing the schema, setting up the project, or moving forward with implementation!"
+ },
+ {
+ "role": "user",
+ "content": "What ORM should I use?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4xEdx9ATkQkeyn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "When",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8JhQJMPBBO0n"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " building",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0wlsJSB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OCOvbNzu7pFs2z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " book",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wrhaBsOG5s7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " tracker",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CEBIeDNY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " app",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oDkhPdhXBguD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9RQCIhhPfxE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YHID2jEnwhl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "A4ePAOp4A4uPt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QUFYqytIT9ZJ8lk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "15Z4W8GpUQBN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " choice",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "thKYnhCul"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vTu3ecaOT2we4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "evC0c8BbWulh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " depends",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1dx7Oend"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Kw40sLaorhNHq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " your",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WpBbgdClgFV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " preferences",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "77uc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XDI20MlUIf11C0C"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " project",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "SkiEfoWU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " requirements",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xCq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VBPawaEUmOt0qa0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3TOmMySNRYql"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " familiarity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mbH7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jSAHYyej8Xd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AdGD7wIXuUmL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " tools",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YOF8gXu9k4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " available",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wTVi3M"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VW9ALshTjQ01yEn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Below",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LwGXfEYhfl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " are",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gDp610MUCIzG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "THM8aONNXH7XMf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " few",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DpBPpsv0ocdj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " popular",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IuOGxIhs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "40LSE8il5aNe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " options",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "tEqtXxzz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " suitable",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "beQalUA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "a0CO1CzbdCEd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6RqnSjidA6p"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QKPyKbx51TL6t"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "M87lIKtrV33KvmH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " along",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2OACDuZxwZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kExo0YeitQX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " their",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ElJ9p3bPnv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oP0URpDu1lP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Fvrc6W82AXyR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gwu4781tTYA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FDXq30w7mNzho"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " help",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "v4Mj1Ut0dYW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2NxCxqElYP7o"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " decide",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1UMxAsSBY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "v1rmgu9RJ1S"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "---\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "N58VW4Oya"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "###",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ROlJoFOCcGQ0c"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rzEaliwHsneG0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "1",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LxU9csHnsMdCsN2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JKJATHsc0tOcCGZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "X0Ga55XKvikT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7eB0B0uIn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qpxQEBAig4KBjl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BeozKYomX50H"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nKB5p1PKhAM23"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " without",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pLgSanBf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Ale",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JeN9j53H57N6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "mb",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1irowv0fDK04Im"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ic",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lAE6HeK5IMwYvr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6N3QCnvmZ0S2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " migrations",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fEaM1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ")",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sWFAIAOVLVTnrkk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EuapCSJ9Kl6s"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JUdcGCM2K9NRwr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Why",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "drvzNoaAJ4wjP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Choose",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EROIMh8v8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XhKRdROLICHBs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RWBRKrSfpo2YahZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "30QqiTO0qUys"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lV9HMl68c4ZrE6O"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wQUUTriGNej0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8pK6CsiMZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LTtjBZ1QYQUBD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " one",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cshDZ7lAXtCZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "v3h3VpJdFoO6x"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qdNdhlThocK6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " most",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RlW0LNBz5sK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " widely",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QwZS4D25u"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " used",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "S3hmvfHnz9L"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " OR",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pe4oqhRH22JLC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Ms",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uGWMNiAq3VHS3L"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " in",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7tgpO46rClZ1z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Python",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6uj55M6mv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "G0uPkw9j6aiSYLZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " providing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6TEUCF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " both",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kWYvDCdkC2E"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jkH15uLvWBCO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "y4bg24zI0mdj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "h08eq1401g4q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " expression",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EdKxV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " languages",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5WIu6e"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3re1K0GV10Yd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " fine",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uDxhyynieB7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-gr",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AupBoglo7CvM3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ained",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MzwfJv9fEv2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " control",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7C277vVF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "D3WojvP0dTfxR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2t62ZMj1hbsc4zL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Supported",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2YF7fS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JTfeEx1hQtpGvh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "atively",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NiuLr1i1D"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " by",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "u82z4elFpXOlh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vmMaNYFkNmZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4sWZ1PaspkMPz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2tWzwbnM1k0J"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " compatible",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TsRG8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "He4hUC2ISbq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " tools",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ifLu3c8Nk5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3BSKhyUe0AD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Nf1ZwTLv3PXNw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Ale",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oP88XO49coB4I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "mb",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "v4IR2JW33q3jkx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ic",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Qq01RKLmfZeqBF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LraOzzD4qTTuHr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TrLzsOqU0iFN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " database",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "67Ks695"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " migrations",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "d0ybC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lyQEvXWfNs0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uijrfApGo6rq8D"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bBkgqllzMW03"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YgcSyddTkvZrpkw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WKIRNlwPRUL5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bpRRam1JE4chtrE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Highly",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LcfXqDpRm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " flexible",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ElEQxnc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VdkAwCzmMeqwBef"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " mature",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3JuGxhIGb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VKqpxjQzwHYY2Je"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hOeQhGweYgDG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " reliable",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "55nVamz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vXG9IoS2yunqI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AcAAGaEjJfPgFEF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Works",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TvoPj41uxp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nc1XECXKPqy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " almost",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UArljHSzj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " all",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Bvk6COKncsvC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " relational",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wmjrn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " databases",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BckNN7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "piG4J6kB0xXwJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2uEZ1TGluVaUP0z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Rich",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pVqU8YG6OUM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ecosystem",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TyDRMz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q7TyKOhIPLXvx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " plugins",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bvBvnQTB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "/m",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kKDfO6UVBV4Knx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "igrations",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7AMFjwB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Jwqnd06MCP1EP3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "e",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "O4QMhKFnKIcoWoA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".g",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "V5p7phaSgA2Jw5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".,",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QNLlKnr6GBMMVf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Ale",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "52lMjqp3us4B"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "mb",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "B22uY6Tqd94ILC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ic",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sqB7BPWfICjRBh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sFI6yQbdgh7N"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bNXmXsQBEQamYGf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Easily",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "afxFBS1Uf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " customizable",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KyW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "k3kkfMt2WwiR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " complex",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CvTwy4je"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " queries",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "00A0EUej"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DCKpBRxTF0hz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " models",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YUTybbAUm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jkCS5ucBfCV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qlosOSEXcMw6pK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WOMvpIDbm0Rb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5RcnbXfbczLlgd8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DKuDTK6Ch7mu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9OGHz05UTC1ZdsR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Slight",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AIIY1T5cb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ly",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "69CBLB3dhH7pXk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " more",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0gxu2YqRsQ1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " complex",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yebRQIBZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2Un3tpQi0aSmQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " set",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "e4871Jdqs0fb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " up",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ROaWYXAQ3phcu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " compared",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6sE4Jrs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9cKOfbDqTgSZZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " \"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MEYd0bFe9oKcr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "simpl",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MU3kvuV52n9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "er",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UaLNx504Oa5yzt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "\"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yWAzr4Wj1rxyIa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " OR",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q1tngz5RYs37F"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Ms",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WqWIAjpT7N8W0o"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "V6i08EAOpYPuJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UCRMm1naezQD1TS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Learning",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0Y4j2d5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " curve",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "goQAnrBFop"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "S7f86L6BlCrpYC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "if",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UU5aUj2G1yb5E3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " you're",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9Vkb9L8Qd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " new",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KSbhY9GugRoL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ABKW4aI7ujgnt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " OR",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Ht8MWhy82yEm9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Ms",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Jj34paWdvZBSPz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "J12xjfC7IKMk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " \n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xWtlaTahMZWK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1r9c4kWRrcSN4w"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nGJPuTRbYi3M"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bls91qjPh5Jk7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Compatibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Pq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2QuuU3MmaJqsW5a"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XSYWSs2h6iWC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nbBcVNrXeexPNOe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FxvpqdYqcZmf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "s7JIfmOqL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " works",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "iAkvYjlHKQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " seamlessly",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "d8ZJN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "W4TAqggRVAw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " `",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bvS67dyHK8EC75"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xH1kxonBaqp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "`",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mtzCrG5N51vd5Yq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " database",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9LeMA5Z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " managers",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NIqWUmw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fwOlAwGcJ8A"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " `",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xYo6aLj6tRhR6H"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "dat",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "tTpHXpMFzy23E"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "abases",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fIwwtOYI43"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "`",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WerJVJtnC41Dp7Z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "o6p0NYjvBafUs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " by",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UsTg2SiZ0QGVE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " using",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "I0B5vxBST2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " an",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UFKowKc2Ka5xn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gbkgiUyeXX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " extension",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "P7y4RI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cuoLBhXxQBn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wT6fl378IBm8v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mXwCHq9ObSQD7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "K0eW4yoIX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1jj2X3jC4V7vIOU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "2",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jgRNz0krt4XJPqF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "PB48Qlx65m5RYCS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "0",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ddqLmwssKnGiBhL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HhHqKBeGoI7UOq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8RQRgWO6QviOrb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "which",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QM7aILeDq3z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " supports",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "w7KfMpD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Ck1mTimqYi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "k9Hz738g4w0Zr8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "atively",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qSu0X2O4o"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q5wSvv9wzo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "dL8G2Re9CPVtDk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Best",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QjJhJrXJhR4x"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " For",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3WnyhXe649Z2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vPmEZshZym9Dj5F"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6C6lPFOiglRS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8005piwTbZYNMNc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Larger",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "eq38sqEv1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " projects",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "a6LXcB8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "V91nuwacyEDgeka"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " flexibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5MnP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9e5MhaGBnfsT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " complex",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CkFGlHxj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " queries",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fAwVaX2D"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zEsbcYnoy717048"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Nb8iCQHFxMIFD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " when",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zl4puk6ImPB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " collaborating",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YCh6dA7czcm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " experienced",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KnT0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " developers",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TuZfQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cORABpIz8xP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "---\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Gy5fuGoqB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "###",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bhQ0t88acsxDT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7iJwUy4XgaptW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "2",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ieZyIYmQp7F5631"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Tuee8u7g1aYNWBR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6n3ryaxN8gXAx1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ikXRdWck0bC3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "O8ymOruSTQxop"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9Ob8XsN1UoFn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zVBpz0D0cbnR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "khnfUi2U3C8yhP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Why",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cJBYbJG4Zxnqf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Choose",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GbIePohKt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8ZXPicKpzW4IN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CqBh0GQlToFaDXa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "r3XnSbxo9fAL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6vGL7HyaFEywXh7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " A",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zjPanbpRePadCr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " lightweight",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "r94b"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "eXN47EQ4TCzy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " modern",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uYAZEDwvg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Python",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8rQdFO6Da"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1IcwYE0isxQv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "iVDUtTRsB5t"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " full",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8mBPIxUPkOB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EVPIufcthEZYb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RK38f6XpRPD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "/",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "c2E846wHIaGzrQr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "await",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8zijhfVWAX0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jVZ2RvSFJkO6BO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Hn2rvhpy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " out",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GXpj5tCKMJup"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lcL3tlaHMV31M"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "PKj2CJFKVPi6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " box",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1EQww0F7SRml"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IWyhkaLuActvVUN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Designed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KzgBjBx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gHNH7gW91avJL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " play",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LS2xBEZseVo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " well",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "flw7YaAgmyU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8viSVIaVWHA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hKa1rcPcmU2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "S5nUZkqly7N8R"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HpcHDLS3mud"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gq9HSYirQqPQ9G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wfAEYEgRCRMy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vRWf0uMCeG0V1Cz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qEAoUgDqiaPG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QCFjlRcQx6TmqjB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Extremely",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "M3cF6g"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Zqfk10CfNWF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ELM47uKizBoHV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " set",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0BRx8vSJnF8v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " up",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VzxGEncSMOlic"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hTa2yxJTC2ya"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " easy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jeVV62e5u3t"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5oS3x59DpQbgG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " use",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kKTnSevmr3gw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q7a1GTQTM8eJh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "idNf4J3Nc0kyohv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fully",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uBxVYA6YGm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xPrQqWmIrF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gdvZ7dVowD4RuAa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " making",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NMjBCh4BH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " it",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hWrnyqcn2tQ0g"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " an",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "J7wUDvuijEPum"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " excellent",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4eKutE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " match",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NL6tUWZuTd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MGyXFFaooDxs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MkeVqGUJNPx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "A4Gtgukh3GEtH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "'s",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WuX6HFCHuiKhu7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " asynchronous",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4b8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " nature",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kdyu6yuMM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cNdhwRlWMdWLg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GiwgFX9Fd37tlEx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Automatic",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sWHqPy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " database",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "K2ty7Nj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " schema",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "aCabRuun1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " generation",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "in7Z5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7kbiu65s5s4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xAUIjCLdF5AhEX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5nNO77stalRu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8ayoEIyc2lIwo16"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5t9EHENvRjQb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LhhvcZukRx4vos5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " F",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "dPoxyWpSYKAnjM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ewer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HnM9VQA5LK5J"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " features",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nI8BVVH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " compared",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2dM6I1m"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "q7aLuQEYtvG3C"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FYDArxRZR2Vy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5zjlGmoIr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ";",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mdtv8MVO6LAUFni"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " less",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uGHorZOrtVq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " mature",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5Zqxuyyuk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IPMBiCTS1len0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Ciuobpk8ZwMOJTz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Limited",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yukgkDNy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sHfn3DSF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " from",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zqZEy9FRLto"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " libraries",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IMnWN4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IlJf0dhKwJ6v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " plugins",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BxsSF1HE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OXVlWdaq0OYvBo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "e",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FABmU0pAJae6bmt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".g",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ijuRYS80MKJ4Jn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".,",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rK40sFr77RNPIs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " migrations",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0EHFC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " require",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lMw566JT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GLPqPDcSPhKHX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WI2nWChXz9TG6C8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "er",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JcaLOl4C8iST6d"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ich",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TnYhUDbaiokWe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "q2guDhO778tuSK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zMA4DRUZuwufJi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " \n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Cd2HxwZ8RnKGv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9IeQUYtvqjmoEln"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " F",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GoHFZEcO5mSjLL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ewer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7wYiBsnu8m9N"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " developer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3j8m1A"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " resources",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xFEky0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "aL1NoC3g9ZQ9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " community",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UvHYhu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "B00LCrtX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QBuqDzhrcYZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ukNvp31hzh4bL6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "f9Ct2ZD7fFvI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FB1cb5cNTelTr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Compatibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0m"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1XdRxnmQVwy3Ikj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QVublrSsB6ky"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0BPBaCp0ymb70iP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fully",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jF6M1adG79"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " compatible",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lXYHd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ";",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AXaTR6ejYzS09zw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9WI8yQPOACR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nPs4Vg5RKPW6T"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " even",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lrJiDZS3I2z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " includes",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YOlNUGX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "q05NxMI7f2f8S"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "examples",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Kt1ghqEa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ilirOPtn1iwTFB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " in",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7926wT2z6UOql"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yZ6Qo7nmP1ZO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " official",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jZG04fh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " documentation",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TCPARzjm6MLl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HFdeiYVNK2acyf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7XQKWXNEKzFa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QfORziXtwhl9a"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Ws9I5huuFysp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vdQm4yZjcjJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "L89ykvsz18qRBE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Best",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OMrBERAv01SR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " For",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yWqwt0tfIZPf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JL7t6Nq5sLK2Vz0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "URDdYBUIINXc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "A6qy1c1KyQ2Hve9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Smaller",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5XT6ts4b"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " projects",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LAOUria"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NWl1b3xT2fuN6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " developers",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7VAH3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " new",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NKYSZxITEsWG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q3qZl39DaNBgL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " OR",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "frbCpyUCqeKMd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Ms",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "P0bfoDkNDIvgm5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " who",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8EwKTxbnmYB2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " want",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GRTJWQB4de9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " simplicity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9TtrE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "25nklPKvjMAQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ZqYwWTHAm5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7skbQGa3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " without",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LWzRhT3y"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " much",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WACtMD1Zum2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " friction",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KbeSTXl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3NXw2INzml7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "---\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qjsjvXQKX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "###",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KMnql6XWVylWa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8a9tNtR2qAgef"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "3",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cKM5bXQd8KxiCG8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "19fKz9JZW3BNgxH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " G",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KmLLaB4QajQVz0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "INO",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6wSvZ1AI5PJrz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HP1ja9UeKZM7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LDsdQK5GW5fBB0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Why",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8aW1y5GBYxvzg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Choose",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ylt58LJIr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YjZooUA0Lm0zD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AIDjPLBtsz7mMyT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xVmPjpiILICb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LQjzUz2l5Je1jgG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " G",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CGDSgtbCvsxabk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "INO",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NB2LZLojB8azH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JgfVxxlSRAbam"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jXpzkM0pt9z6Ol"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bgRIe87RlUi9T"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "fully",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "S9nJI1hazUy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mDhbVYXQCS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Y0PtOCwUh49F"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "b7ojegeSYqwGkW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " built",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7D5NKKHKtb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QH7GNvHkzXxJD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " top",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "F4dMO5HHwnMt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jY7X8PbSFxDVb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " `",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8UcjLxGxqyO3hF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JHVTwkproMe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "pg",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cJx1UWNHsGCUfV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "`",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jM54bl9fGJH2H8z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fy5R8s8O3EVy0V"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "an",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "m383dIMGu8QZvj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BgNg7PKfbx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Postgre",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0h4Ub7vG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "It23CalLoQn4w"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " driver",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mtWjgmnkP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EE3Zn6Bb1Q9Xp3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jwTSXU85AAa5Z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3t2ZU1oUzc54q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " very",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CTLRuAJNybj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " lightweight",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fvmK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "q0KkIx70sC7r"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " tightly",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3O1wjhCe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " focused",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2nQJvjJM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "G8YdiFHSBeDfB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "a15felWtFK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Postgre",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qxQMLCOB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fSpdzwlIqc2Vt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " usage",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zk2pIqnodd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KpCeEwYUlbQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5ZPXKgUSfzBYAs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hMUt1WDkdkHt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zk4LwBA7uy4vpVK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AIn0nTL2Xyf4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "33yhoGP4AGAto7B"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TRR2g1r3S5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-first",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "B3G8DUnTCc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EArhMjwbjUUUWIz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4jt4hBAjSMz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " clean",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XGegfhdEyN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6n9ZKwptkjwn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " minimal",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "a9xslkD9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "istic",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "I46wmF0XJMx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " design",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fhkjm31O0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bXAhbIptEjdKv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yVBK5Yc8Gol2O6S"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Optim",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mcPTE46Eqo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ized",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IyPa5FkjB6KG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jpXcC6QYApzd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Postgre",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FS7EXi7m"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vxTMv46gSsHcg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4qDMvS1mgL5Sx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FgMuXp17t5mrUz1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Easy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ZTSoBssaylG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7Z38AB6pziqWr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " integrate",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8wawh1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cSeIo8SKET7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xMjMLw9f4tG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KR9hYuvJBXwvG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9GI7CQbqkqI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6RaWRUOwkyhVAg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ld5tQSpAgqEt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xM7vghgxPxj86oQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "iEL944xqUO46"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "E7oPuvBy7uXwtJm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Postgre",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "PsiikjEt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fKI8gP4izBTJQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-only",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cXFxX524Psz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BvCkE4i3eeM9o9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "no",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IeKpNqKdZDfPJ1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VbauqLkC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yToh7Scou1eW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " other",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lvpEfiUMpD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " database",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xaL8krN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " systems",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "iHZcsPsS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gZz8zyiwFd2G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NlRAN4kjIxYGR0u"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " More",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MjR6jcq9Ggh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " limited",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HW9ARppE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " community",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BjDVtt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xt8RPLAahUHl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " resources",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ug418S"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " than",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KWs42MU906Q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rV4bD5o14Vyj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "b3o463oz0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nHYeTDjZQslgL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "PYBYmS3ythYXWb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jZ55EzPCvwJh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4gfP4NnFThFJ9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gUru1HOF7czH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oRKJBQeYPTW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HJkiyG1169nmQG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3M4h8G0Pz9dy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kVhiwOUt27sqT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Compatibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RMvM2PIyHMzTBwb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QxM1piKcHShn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oWeSPHdTwHAq72l"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fully",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "tL5z89Gku6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OvIA7BHWNt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "C3SwUzCNgxnKtNB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " works",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NnJopjP7MC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " well",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2mP782AVsDV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bF9pKlJCXxk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uD0TA8YGQeL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "466kbVN1IFIpv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "o4stsGfd1bA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BsCOvhsWS4hUA4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Best",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "e0jr75QGqSfD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " For",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LawgKdF6ibV2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IglYs7NoocjVpDD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TjoX5xDdyicM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GY8MOsQXMu6OiK0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "eyKX3qRyfR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Postgre",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pqRDt4vU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NhCzBgXspQLMM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " applications",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6QO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " where",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "b9u9A148hQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " simplicity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oZab5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "f6XccLb8aubK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " performance",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5VCv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " are",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YIG9zqfairZ6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " key",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3MdBn4HOty5s"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wsB6voGpMME"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "---\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "F75PMu0PK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "###",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9Zs61lYclXQQD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9I0xLfjDxBlxT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "4",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rbfpOchNapgu5lA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DftG57slUbxgd3f"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Pony",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "siH2rpz9SSn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "SnSAipocXW0i"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "38iv84MzDXL2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Gp4eb9uz0DXCe0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Why",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jJ4p0vILLozKN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Choose",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9rzs2cNbW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JJo4KPzHJSDRS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "h3WKxCxRwGyCxXf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Idtttr3RXETF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2rdD69qZVyMCfG9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " A",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4HNGubzzNhRFph"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " simple",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2I4CRjD6l"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "dFBIAaZfcsLORK9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " yet",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RXAm4rrqeTp0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " powerful",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KFvzEI1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "n3HoT6aZbcCZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vVN59iy6j97"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "D9zOgH6Pxl0TXW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " very",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TGP89Tc697Z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Python",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vmtkG0xce"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ic",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "061BQafIkgSJYp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " query",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DbcBlPWrH0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " syntax",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "SbIbi1FLp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2mLXyLxCPHRW6w9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Pony",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gyvmpfB6Zp7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ktIpHMrunDyD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " has",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "85RtWilOmEZb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " autogenerated",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Rd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " database",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RL6yVP7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " schema",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "i6WS8E0xr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " management",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "owpqC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ma5tdniltw1S"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " an",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "PQb2YkymouYnO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " intuitive",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LZXDZi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UXqNvxjTXcSX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mFWsjukEIh0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qobbbjVfK59Xdn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "94hLbF48qvCx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OIr9VbyJgwVNz4I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "R1vsG1pYiKiG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0zNIc7ZolxtQvRt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Extremely",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yH3OyY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " easy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UCptNn0eJze"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TAAlH0lkKzNjq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " use",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kSuSnBFXRCcu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6zHZcxpzFPKd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " write",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ovw494kjVN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " queries",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gJ1EIEYX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " due",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "T0xsHFuB8mXi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Mgf7N2suX4bep"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " its",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FFMquTEdBkUx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Python",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "J6FQsWG7V"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " DSL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xJGlQ2tJK1D1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4qmFwVv3QATJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9hOqTx2EiH9X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wON8apXx95QPO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "M7LubYtyyuQZIqu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Sync",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gKoTAZCxRmg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-friendly",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JHsn3mk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "y6XxiOiGAAGU3K"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "but",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oV8V1g13W6W8E"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " doesn",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0NHmubyJVI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "\u2019t",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "f9PKqdBu4SgKgj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sp8ssClz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XKwV3w250e"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NiZqAsctMSlBdI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "atively",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OHUcVA7iG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fROFjB1bma"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "B7WETROVOWegTA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FnB62O2hAjIN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UULNviVtdW2beoy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AKIRAJy0XOjL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MuxdoJlq4iAtsyw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Limited",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UEMA26XW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " in",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bwIzYpY7yiMeS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IzYNjCkiTM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WOjXzu0I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "g0pj9feMjRS6T4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "although",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nd313AGF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " possible",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TZThMzq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yIo0V3E2flV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " wrappers",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OjwNCZO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ocVjyc0FtX4J"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kliLlrPCAqElxHG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Smaller",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IqCfL4mC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " community",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7fNg7o"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " compared",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "s6ryioj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Jmk7BzrAxXpQS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HDmdHznVI8Pp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "d5DeEjL9q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qSrS8vDfCniEz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "buudnfoNpgdZl1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bjE3FvYltWWS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RUFYL2Rd6Z5Z8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lJuOOtbNKx1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bpvQbwdQFlMH7u"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sDo9hEnTNtRj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kTCq2qppuO4Ro"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Compatibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "G7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ceIljUqY5jndGM2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ipHBOF6vfslz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zx8LjJtJyx3bEKs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Doesn't",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rNSazB12"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " have",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MS2oZbIOTkN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " native",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WnAVUKs91"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7r4SA1oMvJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bh7jZses"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " but",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OCRjepsBxhkY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UWnFlZhEnbM0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " be",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EvfOKa8uINaJ3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " implemented",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mIcK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FCwY8EDUdVd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " some",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MAxokPnXfsw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " effort",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AlfhJxtjd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6PJfR1DRy7OLfGo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Typically",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HdRNwT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " less",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4ZhVmJtJNnU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " preferred",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CpG2Sg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OwOBqEowJqGg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7u1VNnky0N"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-first",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EwOdK75voN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " frameworks",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Zg7Za"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DpzCVuUgAzc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pXlpXbqcdsPgUY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Best",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LT3uJ0uPBoAa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " For",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "SBZewvWI9vbb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Ng16RAyjWaJ6UbU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nL4VwQyRarYI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "aKMsUU3wDrExXKi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Sync",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rrltGCQ8b0W"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-first",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "70gaK4Znbj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " projects",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cycie0N"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UXoSphOFqo4CD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " when",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4hd7owSiTW2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ease",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4JyNi1t6LZz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vGGv6kLjUif50"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " writing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2962Y0d1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " queries",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hZ6E3ton"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Rw2ZSt7w6wENJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "d5lE7mnCI2Hr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " top",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "h3od8HL9zVIP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " priority",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cuUpZwT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WzTnkSQUKP0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "---\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TQc4MhfJx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "###",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FNgLpl0r3OJzo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DOkQPpsiXCsLZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "5",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XFIPRf0wARJ3E0V"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ln72ZlUtjyOvCEy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Prisma",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "51errQwkk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GbJh9uIsmY8U4e"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "via",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "V38uphPEA4VyB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " `",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QO8A6hGXsMvlpy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "pr",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IcVuh0sPeia00J"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "isma",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "flmGL1QhrQ8e"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-client",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XNueO73y2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-p",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3NnJywRRIcfzeY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "y",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BdAbUEzOjcIIJeL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "`)",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oHD9pKcrtG7Bm1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7e8ptn8sDQnV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vz6ZC1rPTHe9I3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Why",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "D4xLDJmJVvmDf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Choose",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7IlFa0LBk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lGh8AUHrN29sv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ZoVWUCkT8cNZeiS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yLVvhSmoWdUB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "drKocNtr47dl7Rr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Prisma",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "PSSfUdZ4V"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Rsh9GQNRnMDKG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hTpf4SLbnQPOGM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " modern",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rFj4SRYkZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "K5N38fp55R6ky"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "next",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OPEYnlGSA1bh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-gen",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6ks4mMs4VVYF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UJBy8LeLO3RK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nuasOzAPdclk1I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " designed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "66Nb9T2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ifg5rvFflE5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RP1HOSAW3HdvMm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " strong",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GG1kFACxO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " focus",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "oIGXHPvDqE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RPMUmYl9yDyAH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " developer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4LEBk9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " experience",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ZNy75"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "iVmuZUCJrcG0Qg2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Its",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XPQW9Hn3Fxqs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Python",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "17fppIjWS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " client",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q6bJe5MBs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (`",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9dpuRx1P9jSFH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "pr",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xEbQ36Ao5NrW50"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "isma",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "T6fcXsH0GiR2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-client",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Hcoj0k9PY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-p",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "h3xXkKtGSkHBbp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "y",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YBORuAInMS6UeFm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "`)",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "iabn6yLXTkAp5u"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " offers",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nSYOXpvGh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " generated",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "21EEI4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " types",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ASs30G8xVc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NXD1l1Z6nFGJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hzWpVdYEzQ70z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JMjitwBjKp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-friendly",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KgFTLxv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OIg7NHPJFdC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9gai005T0qZOFc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "m87BhMSaTnr0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ynho9ty8iSUjcSa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "adP39AnGDioV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7cj69kXwex4Xi7X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Type",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2thHYVzFkyd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-safe",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Y5cwTJbABV3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " queries",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VlAedYj3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rPczoc0Dte8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " aut",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xzw55M90BQnb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ocom",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lCdykl1dTKve"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "pletion",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "885qJUKRu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3aB3URG3vgVP2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qH7jctMQ6Fbd1im"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fully",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2f6wzcfEeU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OXDZKNwu43"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-native",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "p0XXT0IQH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gTK7GmLNYOteS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5mMmRDVOXPOkAAy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Out",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ArLjQh52o4xs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "p3wRVEXRcVGwD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VrrilC3OTYSi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-box",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Exe6RlgfL7VF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " database",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1u39jUx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " migrations",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BwM1B"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GhZclV4uzQs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "fQd2zVwTOtlr1k"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "w57JjcJNwPpF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "BjalWxlOBMNr18i"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mLhHzLPMih0a"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "17G3eb2IBBlcTru"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Rel",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MZQNDc9iYNHi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "atively",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5ImSTpqG5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " new",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "D8I4o4RQBqlr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " in",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3EeDKDn0nIkqJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jbmjy7ciTMlL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Python",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pZNWDCT8o"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ecosystem",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XoVixw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lJ9tO9emhrL1wL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "less",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rjMoq6uWpFWA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " mature",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0kG3JIG0R"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " than",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HeVfMKYPP2R"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "E1PrduAVASCJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qisEnCUDG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "62hnft5J4uTe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KWDhNlWgmv2GsCX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Requires",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RrOjPOb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " setting",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NOxBPVgE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " up",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UOObT8eY98wrz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Prisma",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8S7fKcHMk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " CLI",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "o4bemtQQUchk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7uxzYexKimCX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " schema",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KCPwXnZ3C"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " files",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "58ogNvahiK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "u9vri9r5Ug7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ii8XDydxB0IyuW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yY6emU812i92"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cEGfw40M6vnrp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Compatibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "SddsQELLlT5LtQu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XX4BZX3tM72c"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "QSkumTDp9euYpfy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fully",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "cBtnYnAj4r"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "X1R0g0xzwc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xKXIXVbckWA7mJe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " works",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q0v2SND3jc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " well",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1Nftg7qgxRz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "M90JCgBGOok"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "c1YPjZAHyjw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7ecZoHacQggA7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "tHPv12qr1Ag"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "R1UERW2Vdl31rV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Best",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TI7KJpLCrJRT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " For",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XUpvunsU0dbg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vOMaddchXjtNI52"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VEWiWsn259po"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Jtnej667891Gx4T"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Developers",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DTOBa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " who",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uuISSSyn1mR2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " are",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6QpCQfVa0UIw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " comfortable",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nGJa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pPQI3Lk4mjl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " more",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NFE0y2VWJhZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " modern",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5HNkqprVF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " OR",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zCAD2O8t0gj6g"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Ms",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "85XJSCab753gdD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MgjZZpn8DroB3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " want",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nyrsI1DXeIT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " advanced",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Yaqoh7k"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " developer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "gxpTgh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " tooling",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Nh6UwLMW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "n8DCdJuCrbySuE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "e",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uYJ3V73l4tG87bS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".g",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "maTzWFIQuVHdqf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".,",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "D9xYbg8CkcerAx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " type",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nKGsNyzNR3Q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-safe",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ILLR5CzH17O"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " queries",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wx3E0ims"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ").\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pnxVgi9bOF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "---\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "g4xbmBPbu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "###",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "u6lD0GS97ID0f"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Recommendation",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "HZJ2JvRCSPn5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uvmA4CwR77IJNk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Book",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "A8jlcypkr8X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Tracker",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JHDAX4Wr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " App",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "tnbuUtMrwamV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "CHz39w7wADT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Ff3nTkRSwkP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pQWbeorErCvZD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "V3w2Qgo8jeCY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "If",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yNA2Vpyiipv411"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " you're",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Mpx9WJzaT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " building",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6KRMtnx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bWsNPjzgxo7orH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "kvaJ1ih4Qj2No"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "book",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "iyCGbGdhyyI7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " tracker",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "LfFHuEhD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " app",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "I2LsYbSZRtsP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8Frlqvu8bwM6Wz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "V97JIcaue55"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rz8qeRfPxRJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WBxlQaVzLhLYY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IyRzAo6Lq0l0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " using",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "4lagAY0JIx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nWFHBQGjToK9F"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQLite",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "uHdeRnCZIW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**,",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OIUgqCt9IpAZd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8g1JYmJFAH5aok"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " recommend",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JzNn5f"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "NdSgV4EABmOC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " following",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XXDZSl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " based",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1jBj8zsqEl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zeWBw5YFUv19w"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " project",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "GWX1N8US"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " complexity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OpcNG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "vEdBXnaIcyS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "1",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rCCogDwNnZslHmI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AydVh0HqOhcppZB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IQ3ubtLXe17q7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Small",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "j26EM3qywHS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "k6PtaRlcHvbSVSQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " simple",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sE0vl1shh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " projects",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EWhTh2X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "tfMQl996jYBmM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Use",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KXG7B5aB4eog"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Vy1DNDNLDrphg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ViwxTQLlXTFbuWV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "TJjXxzzTlcZI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0ys5xNTznQNFA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jhKZGjhDGTNc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "92lao7BLrbNwJe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OtOHtbGXGSnl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " its",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1peg6bCHKDK6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " simplicity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "m5a4p"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Y0HQeloYSxSC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "e4J3T3UYKG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-first",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UbmiIo2yWi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "eU3GIRAl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "OCWqSnocOy9dA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "2",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "atPNBcnZBJIp8Uc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "qJfoBLFA5qs9AXS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xbltP3FS2vwdt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Medium",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MiTKezfPs0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DkEZGgqddOe7IZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Larger",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EirfkWYO6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " projects",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "5SpiXmy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bfWQ9Bzm4gvNF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Use",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "EyWrAzfLwzm5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "7cH4c4JhZAHYV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "RLzoawbfX5tag"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mKGV9WzE6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "SUEa67h0VOI840"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pcKavToN2klm1n"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "w0iKPn4HCu4w"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " `",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JpdqsSuEYafLp3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "dat",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AMSptpY5JVeo2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "abases",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "n0iruAgaUC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "`",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "yYRfRMh5I2pSVzt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "meSjhr5lZXG6n"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "DQkP2Kzqgw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "sXbf2K8KxF01"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "a5i1nfBV0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3Hs55WjuHYADqDy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "2",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "e5aKpcsftuqsLrI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "902TnS4izWd7PsY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "0",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8xePuthGcsBGeCm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ")",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Nwep69qK5vjsxX6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "khkCkct4czVO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " its",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "2kIr5B5GiAga"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " flexibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "6Mk4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JMqhoNMjXzB5ljn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " maturity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wXoYQTL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "o45USw9riSS4d4S"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "wdpbjnLWYt2s"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " ecosystem",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "AZO1RR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Okwu4dD0mch9m"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "3",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "3naXYwey9IabOIl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "0x8gVWZRMEZuDT4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "KDO8Ey5eO4GHQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Post",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "ZnNjWNOXxyXF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "gre",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "9c2LRqeaVnbvE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "tXBKIVZ8NKBqI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-specific",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "s37oOLJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " apps",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1BKR028yk97"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ":**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Bouq5eQR69r3U"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Consider",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Be4inDC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "UpNsGK0yMc6uH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "GIN",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "bwKfEr65ZoxLk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "O",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "545x3w9mrjOozpy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "MpoG410IA8kXtx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "D3TDm1WHVT3g"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "snogSX0XTWNBFZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " lightweight",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "XScp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "U5JmSCHWBG0u"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "lnwxBQ3kAc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-first",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "PBUQH9wHzP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " Postgre",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YDVSsBOE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "JUGucp9kf0LoL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " solution",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pjQvn6v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "YM4u2Pc8Wh2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "---\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "66MkP58NS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "Let",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "jfDqkeZFjDFvU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " me",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "IVuhfLMOwnjKA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " know",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "1Jl5yhhtazC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " if",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "FU939gpCCbggc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " you'd",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "nWjcCFPttP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "mPoIOw1GCFG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "zwRFEMj4kdPer1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " step",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "8Sg0fKscfYh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-by",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VA2tE5bM9lTgt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "-step",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Y0SMo0hZo8T"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " setup",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "pdRpMU0m3T"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " guide",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "m1qqPXksLe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "WXbyvpzqPCDE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " one",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "Erz6fbxycwAW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "APN74TCUusCfu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " these",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "VV6Wa4sTVk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": " tools",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "rlmlLLtbN1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "xaFKk5iSnKpyEvD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": null,
+ "obfuscation": "hz64DCen4n"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-54aba5b04617",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_60919f7b75",
+ "usage": {
+ "completion_tokens": 1039,
+ "prompt_tokens": 330,
+ "total_tokens": 1369,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "vL4zqK3wPu"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/57f33d18a3c73129f80cdb57231e06c9a71a7c6a2d984bd46108c49264d065b3.json b/tests/integration/responses/recordings/57f33d18a3c73129f80cdb57231e06c9a71a7c6a2d984bd46108c49264d065b3.json
new file mode 100644
index 0000000000..15ba7fae8b
--- /dev/null
+++ b/tests/integration/responses/recordings/57f33d18a3c73129f80cdb57231e06c9a71a7c6a2d984bd46108c49264d065b3.json
@@ -0,0 +1,77 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_input_items_hides_compaction[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello"
+ },
+ {
+ "role": "assistant",
+ "content": "Hi there"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-57f33d18a3c7",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary:\n\n#### **Current Progress and Key Decisions:**\n- User initiated the conversation with a simple greeting (\"Hello\").\n- No specific topic, task, or direction has been introduced yet.\n\n#### **Important Context, Constraints, or Preferences:**\n- No clear context or preferences have been shared by the user at this point.\n- Awaiting user input to define the purpose or goal of the conversation.\n\n#### **What Remains to Be Done (Next Steps):**\n1. User needs to specify the topic, question, or task they wish to discuss or accomplish.\n2. Clarify any preferences, constraints, or additional details to guide the interaction.\n\n#### **Critical Data, Examples, or References:**\n- None provided or applicable so far.\n\nThis summary can serve as a clean slate for the next assistant to seamlessly pick up. Ready to assist further! \ud83d\ude80",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 176,
+ "prompt_tokens": 100,
+ "total_tokens": 276,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/58685e37561be244b3beea915e1e26bde181432548a20965d5ddf7591434e818.json b/tests/integration/responses/recordings/58685e37561be244b3beea915e1e26bde181432548a20965d5ddf7591434e818.json
new file mode 100644
index 0000000000..9e05b2e392
--- /dev/null
+++ b/tests/integration/responses/recordings/58685e37561be244b3beea915e1e26bde181432548a20965d5ddf7591434e818.json
@@ -0,0 +1,10818 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_roundtrip[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "We're building a book tracker app with FastAPI."
+ },
+ {
+ "role": "user",
+ "content": "What tables do we need?"
+ },
+ {
+ "role": "assistant",
+ "content": "### Handoff Summary\n\n**Current Progress and Key Decisions Made:**\n- The project involves building a book tracker app using FastAPI.\n- SQLite has been chosen as the database for the application.\n- Three tables have been identified as necessary: Users, Books, and ReadingStatus.\n\n**Important Context, Constraints, or User Preferences:**\n- FastAPI is used for the backend development, implying an emphasis on performance and asynchronous operations.\n- SQLite is selected for the database, indicating lightweight and potentially local storage.\n\n**What Remains to be Done (Next Steps):**\n1. Define the schema for each of the identified tables (Users, Books, ReadingStatus).\n2. Implement the FastAPI endpoints for CRUD operations for each table.\n3. Develop authentication and authorization mechanisms for user management.\n4. Design the user interface and connect it with the backend.\n5. Plan for testing, deployment, and any additional features like book recommendations or social sharing.\n\n**Critical Data, Examples, or References Needed:**\n- Example schemas for Users, Books, and ReadingStatus tables.\n- FastAPI documentation for database integration and best practices.\n- Authentication libraries or tools that integrate well with FastAPI for managing users.\n\nThis summary should help maintain continuity in the development process."
+ },
+ {
+ "role": "user",
+ "content": "What ORM should I use?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "4e9xpr8yEgNoTL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Choosing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "39GjKy6x"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " an",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "0PBbamgTRPkKi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "HQkDscfuK8rW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "LzgN7opckDu8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " your",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "09lrZWgjALo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "vvbfld5w3ZL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "XpijLTcbwLC41"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " project",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Cl5oC2wz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " depends",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BRuCvTq4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "dqDPt5rSGh0yW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " your",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3Uu4WcDCE06"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " specific",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "UazQ50J"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " requirements",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Cok"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "yzRrAaPufIfK9Z7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " but",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "xQNOd21VvJjq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " some",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "paUlCQD2Fhw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " popular",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "PZC9mWyH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "1EdN2QqhPdXx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " well",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lq1DdF2tdF6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-s",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "cl3SBJvhiVdxlf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "uited",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Vsg1zF7ZRmX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " options",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ZTngYJLf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " include",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "5JZCFK08"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "oZXoYMHOVGH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "1",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "XEVJQGix6tfBqSM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Qf15HRBPBxxT693"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "znspaqpOcISvP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "5L12IR9IHsZAT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "nu4SOh7O1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "X3J8nrbCiRLU0nI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "gjBsKQeuYDSh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "0wwIR58cDfDLUW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "C4qNMnoSVutrEP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "e9ZuPIryVBNRu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "XpjB8v8StVJT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "R9bY4x6VI1xue"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " \n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "UCqGE7WIIGO2f"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "IzmU4OBPcnRB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ZOBcj6YTTFF5b7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Mature",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "khIDAYkBk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "O7Gth8ONiiyG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " widely",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "gK1NIUzkq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " used",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "5XFTzpWRdd1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "K0TeXGGkT36qBp2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " hence",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "x1RO0dRJYa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bKvl4YJd9zDWg5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " lot",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "GqycgdPa05TW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lPqBfKqc5OBym"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " community",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "f6QY83"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BWv8t8In"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "OwwgJzzFS0FY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " resources",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lRCgHS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " are",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "uUWnrJQqPa1a"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " available",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7ZsLu5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "yE0taZEkzAaAm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "N7QmQ5ad6vPz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "jOnbBPl1fxugsz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Extensive",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "f4blos"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " features",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lcHgE85"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "RtwC2iIaLAuG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " flexibility",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "grVu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "33P3px9OI76nH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "jtAoYVhEmFE6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "rcWFI5ZSoxcpcJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Ju2KOUp8RiV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "B2BPUPt9DsqQ1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " has",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7rfVRJxC3WU1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " good",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "4ALB4cd48s8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " integration",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "oCYA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Hb8qyUptNtj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "B6dN4CG4VVRh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bmIhebUdl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "slWvC9dMwmu0MNr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "9sctNqzC6KOY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " there's",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3jcdcw4Z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "NMMgoLXw3BVL2v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " lot",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ijChOG2yZfIr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "WMUZzwUUEVn2e"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " documentation",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "nj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "wME3ajyGUIxt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " examples",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "qX04NYg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " available",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "aFH8eJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3LVaOUyPt1HlU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "rtH7jUs6Kl3bb4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "M2PGHFW1nmh4Dt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Hnv5WbuPNlrVI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ML9R8YzeBmQt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bF0nmkIphLRxM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " \n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "hOsLgbZJm95TA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ep2FtRzCmcco"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "TKOegtHBDYXd6C"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "9i8LDBKjfZFu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " be",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BwoKqYjRajfkV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " more",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "kdrchJAsJf0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " complex",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "SND3pL4Z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " than",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Zg2FcbmbO29"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " necessary",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "PW49lE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "5ei11zNmIOsK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " simple",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "W3f0Ilx2X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " projects",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "6Ot7zaH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "yaxoRZE1dQt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "2",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Nacr8bptV3CflQF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "s8qlzN0fthUDHit"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "C5j2kCfCkuC0D"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "HRk2j1SMG1QKX82"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "iyUHdfuqJUZR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bwrkx8xGKiRuV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "vlWbC4J2r985rn2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BukRrwwhUCPqo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "UuPERhNjLv4TlMy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Fl8mxIYfXasJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "uk1eMSEswP0MaE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lH6XVamCopP8AC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "jL0YxfuDdHo50"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "xwDeBIBPybWZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "sYvKQfWhHoEXHDg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "N3Oo5olAOsL1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "2oIGv0mrIa2V"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "t0XwcTq87VB4j2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Specifically",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "mHR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " designed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "wTir8T4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "auuXM84QGfJhj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " work",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "o2pp2j0S3Mn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "g3QAb4YFDcQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Qh8LfXZOAZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " frameworks",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lTtuX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "2RlsgerE4GscLps"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " making",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "cMI5WaoZ8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " it",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "292yXgpkRolC3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "QHzQrqtRRcCWFd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " good",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "E08c7HGOZZz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " fit",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "XhckchlubHmA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "te08r4RBBSOM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "qZWE8tXLFZt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BKBaXjBDlTx94"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "FHWroIRV96CxH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "a6mUVlYtWyLo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "fNnr7FBbH9gbYT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Simple",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "6EetpAVfU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "oieqnXxV9VIV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " easy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "MGWXqVonF5L"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "vdGhh7cF4Tt1v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-use",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BCrvbK7eneLt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "oTSYtgMsOJL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "C8KBBrdg4Xvp0C"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Django",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "5blT84VtE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7l2VyrwnvMd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " syntax",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "8JEY9lGGe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "fLcTrb90BUMlR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "nJmRMeenfPPd5J"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "25MbPaGEN5nRL3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Z6yZy6ltOR0yE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "zmHcCkTnCihU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "SIxq7qroAE6d4LE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "YgfoO2fD9OI5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "CqqmpGA4dkhP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "RI3X9EbQf50NUy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Younger",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "s4eBBUvr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ieYmdVm9rpXr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " less",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "uIeJtYNq0Gg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " mature",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "qQB0B2PiO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " compared",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "DK5HQl7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "byDMQUNqM0AvY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "GX7K113AZ7IS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "6eUR4QW08"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "H4TiiXZ8ElBjLNN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " which",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "HvpMUTZGI6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " might",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "y9hkVvGKuq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " mean",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "FwFyK5Cok2s"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " fewer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "LNhbk3mBbJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " resources",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "NlUOFG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " available",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7Q7uA5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ScV5iFR7j3O"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "3",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "zpfi1DbiaEMFCFg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "kUdqw7HXdOTlpZ6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "euao6NiA5pjCp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "G",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "FlRGwpEsFAXZ5zj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "INO",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "a8oFKlwbSSpPK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BNcLIR5X24pqoUY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "pYTTKnm962j6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "THjyle6PWDtMhc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "O1kqB1byfY4K9O"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "kwbAvVcyEkpPe"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Pros",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "e80U2SzcxGAy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "U9xuoi4N8fEWLjo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "FI48p4eV3zgB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Vr86drDOFJRw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "d1uJKoFJFwpNwi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Built",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "0g3uQNB44A"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ADwHdAxM3nT2I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " top",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "obNp8ddCuJtL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "PK9SfZnbBUHBw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "sBrU7yvjpKKX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "eT26tYdVj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " but",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "2NUh9GZwyU6q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "o3jIEitqHxLot"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " more",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "W1vA8jnuauu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " focused",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "qI3od2ms"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "g85VMfSNFBrQS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "RARjQaVs1l"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " usage",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3Q0gFUkfb0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "tYf3zWnS2Df9EWZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " providing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "YArHUx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "j2Fg17RhDeP7eu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " thin",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "iNdPN7Qs6Z2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "QHzUdXKlNh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "dGDtwmMaYOtL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " layer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "idzdbJRFGQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " over",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "jFjJfOz0HuF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "S7yzEQK9DA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "pg",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "8jPV3t5OQ7TxTY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "RVAwkZUCIYmYq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "VF3dfiI3MVwc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "uGHnKDjnVWPAoP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Great",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "1YHG5WrtcP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "60B5U67uN0zc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " performance",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bSiJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " when",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "PbuyYPDedpX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " using",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "qxJxKcWTBJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Post",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7bcHHiSLsaK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "gres",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7FD6P0HGHkTj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "cCX6OEduq40ab"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Bjd7YQoIga9fI1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "GXPSl6eO2v8VEs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "sAdQp18MX7oAk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Cons",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "NIislviBGHI4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "VynZrBQ4AfNYR8G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bnXqR8DJexvG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "cvvMFzW6c4tp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " -",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "rWgsDG3Ul2AD4t"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Less",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "IkUe1sQzoVB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " broad",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Mu2vFpXyxj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " support",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "16YhDn3I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " than",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7N3zajS1X8v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "8e8sRBy7229T"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "hj7TX5ieP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "SdWIegbIcVkO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " different",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "FDz35H"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " databases",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "0cfdsP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "hNQGbQhVbluupyK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " focused",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "IsasbhgM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " primarily",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Z6cHrw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "TlfcqNctnu1Xu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Post",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ydO3a39r3wc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "gres",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "k9IqGhumADLC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "MZOOISummp4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "###",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "CLOYDvym0sQFH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Recommendation",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ":\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "mXDN7PJE1JL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "If",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "20FdmLoxSi2Chu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3yGkdPojAFVM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " are",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "cqSxxCVl2RuP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " looking",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lo8QSB6G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "DMY5sZitzAhs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "qhD4vhbpvUf3W8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " robust",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "y6RWMgicb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lysSZDiYNiClTnx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " flexible",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "88Qjipl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ixz6KsJQFX1HOa7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ROfgb0QAS9WI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " widely",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "6JflphrV3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " supported",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "wbSRuv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "8Syns5kytejV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "AYWmsDa3DJ9B9wy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " go",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "RMC4FFbQGCqPS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "UTvnpkskVua"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "JCKs8KpmT8IV0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "4866Sy1hI7TuL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "tA1FbsiEz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bWJFY5yrA5fHnU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7KDM8ZdR9rzM0x7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "GChV9OF7q8u"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "MtXPUbS0ZJDgY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " works",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "fkby4gm5Xw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " very",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "EWfPkwe597k"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " well",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "1bkvY7NOgWU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7eQF8tEAWoB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " it",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3QHO2JNHEvA1K"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "S5GoiFdb8Zshl7b"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Rpx7ysgmx6jj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " you'll",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ccOh19CUd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " have",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Z0fFQSINDUO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " plenty",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "equyWCHED"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "MMH76s0pRXyk8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " resources",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "wCsG7W"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "MUQ5SNJmcgKsY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " help",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "TYpl1eB05br"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "MsJ6Rrck5PMf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " along",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "laKRJODJzc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "8f8PikUYQTqQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " way",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ytESMUZlZ276"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "f3r6T8gT0mf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "If",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Gfm9tBYwjAlwzK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "qe8V9bA9jrVT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " prefer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "8owXHemUg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " an",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "IwVTXf0tWJJsZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "jIeuNAfiRP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-native",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BqYDegwcT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "VuqivED8tsY0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " that",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "EvTEae2jN12"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " integrates",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "oEUSV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " well",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "uPdWkYPQwwY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "zk2vzmiLwtp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Fast",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "nZHWlfyx9QH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "API",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Q28rcXR8hhCpa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Cqnpa484z09C"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " you're",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Fnh0mdv7w"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " focusing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "I24OczB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " on",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3dC6LQ3v2f6s4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " asynchronous",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Vpx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " benefits",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "IDExGVv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " throughout",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Y2dry"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " your",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "2wl9SbUEHSC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " stack",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "N9ruTdSmav"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "5mjyyr2FWPGEURm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " consider",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "72dnr6s"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "CcJRRCIfBAjiz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "9JoXSsV5oiseiel"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "rg29RqffobAO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "EIWQa7yVPfeea"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "BKrtkdsZEWNARND"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "LH9679hHeyeqJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "gqTJaoBcZE2mIA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Vl1EOidkTa9HqPK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "issdcX21GOaCz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " provides",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "9Mg6EK2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " simplicity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "kMn0H"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "QdAEC2CBUE0G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ease",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "1vS4q8gwCNH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "7p6l1IAq8cVss"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " use",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "08k81bemO5cU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " while",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "q1frMZUKkE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " taking",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "LduROMwoi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " advantage",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "JywLTt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "kbjUdSoLpr88H"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " Python",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Nww0flpgW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "'s",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "9LtBMxLdosnXSS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "mOjjnPJRXw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " features",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "SplnS1m"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\n\n",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "wccduajKZRW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Ultimately",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "6QCfi7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "DxYktJhvYLdUIVx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " your",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "6mVvlkjM38v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " choice",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "gYFXcW8v6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " should",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "O3YlbXlcz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " consider",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lTehmHA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "xNyHMipkwHjM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " complexity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "QG9M0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "DMiMz3lG4oPI8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " your",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "f5WAouE4GgD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " project",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "k888vLBI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "afx9U56qYuHI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " your",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "rf65LDgkxJ2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " familiarity",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "QKo4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "RHyIX5dCWJf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "jagORYzqxM4E"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "11Qd5VUyGx6a"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " ecosystem",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "xxMOjx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Zrag03MilVS7zQ6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " If",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "ifRNWsuP0L3qH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "bbzizH6WW5RZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " anticipate",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "TYwCT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " needing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "1LDvJq9X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " advanced",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "D9mDOm6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " features",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "S9lTrzO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "yamjnJaKja5JH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " intend",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "acpchXIkD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "iw4133vTTRPi1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " scale",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Qtonw3PVgN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "HqP0QoqLdMhO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " application",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "4Zun"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Qe9d0ZJUDM7MTyd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " SQL",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "PXEUIKjrQp0c"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "Alchemy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "3iVRMJlkU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " might",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lzhxrmsrmc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " be",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "VvTKPbmJjAQh6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "thpB7UCwPhcj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " better",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "zDwwnvIuM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " choice",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "YZTbpiehH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "scxBl2EZ96ArMDw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " For",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Dr2sUrzNJDny"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " simpler",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "8RKkDJK7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " applications",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "YgZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " that",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "9Eccj7mLtyU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " prioritize",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Yj0px"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " async",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "0QYTLE3rEi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " operations",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "gg9Nh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "lFsj37ZWwgPCE6q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " T",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "gqitNluE1AjYXB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "orto",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "NyBFfYbcFKGj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "ise",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "9AhfDgbWe91Fw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "-",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "VCmMCWl8so5C4eT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": "ORM",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "0u4n9U1BfDvmT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " could",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "5gjdATGtWE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": " suffice",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "Wmbxxccq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "jy8OW47OX49j4J1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": null,
+ "obfuscation": "12h6dLH3KD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-58685e37561b",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_e5ebf0469b",
+ "usage": {
+ "completion_tokens": 396,
+ "prompt_tokens": 291,
+ "total_tokens": 687,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "YGS1FxjIdQo0"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/5a07f88e5bb128d4ab74f9aae62f2a725ef1ea1db16de0189af0cd4efbead951.json b/tests/integration/responses/recordings/5a07f88e5bb128d4ab74f9aae62f2a725ef1ea1db16de0189af0cd4efbead951.json
new file mode 100644
index 0000000000..37686e9deb
--- /dev/null
+++ b/tests/integration/responses/recordings/5a07f88e5bb128d4ab74f9aae62f2a725ef1ea1db16de0189af0cd4efbead951.json
@@ -0,0 +1,87 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_with_previous_response_id[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": [
+ {
+ "type": "text",
+ "text": "What is the capital of France?"
+ }
+ ]
+ },
+ {
+ "role": "assistant",
+ "content": [
+ {
+ "type": "text",
+ "text": "The capital of France is Paris."
+ }
+ ]
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-5a07f88e5bb1",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "**Handoff Summary:**\n\n- **Current Progress and Key Decisions:**\n - Confirmed that the capital of France is Paris.\n\n- **Important Context or User Preferences:**\n - The conversation is focused on factual queries, likely geographical in nature.\n\n- **What Remains to Be Done (Next Steps):**\n - Await further questions or topics of interest from the user to continue the discussion.\n\n- **Critical Data, Examples, or References Needed:**\n - None at this point, as the information requested has been provided completely.\n\nThis summary ensures that any continuation will address any further queries effectively based on the initial question about capitals.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_a09fc949a5",
+ "usage": {
+ "completion_tokens": 129,
+ "prompt_tokens": 111,
+ "total_tokens": 240,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/5da4165b0fb0da802acd2eec071fa5ee6ec17589d2c73f71a685fd801832875c.json b/tests/integration/responses/recordings/5da4165b0fb0da802acd2eec071fa5ee6ec17589d2c73f71a685fd801832875c.json
new file mode 100644
index 0000000000..fa5ae60135
--- /dev/null
+++ b/tests/integration/responses/recordings/5da4165b0fb0da802acd2eec071fa5ee6ec17589d2c73f71a685fd801832875c.json
@@ -0,0 +1,85 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_double_compaction[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Topic A discussion"
+ },
+ {
+ "role": "assistant",
+ "content": "### Handoff Summary: Topic A Discussion\n\n#### Current Progress and Key Decisions:\n- **Discussion Initiation**: The conversation began with an overview of Topic A.\n- **Identified Objective**: Establish a clear understanding or solution regarding Topic A.\n- **Key Decision**: Details on specific decisions were not yet discussed.\n\n#### Important Context, Constraints, or User Preferences:\n- **User Context/Preferences**: No specific preferences or constraints mentioned thus far.\n- **Topic Scope**: Topic A has not been detailed, requiring further definition to ensure focus.\n \n#### Next Steps:\n1. **Define Topic A**: Clarify the specifics of Topic A to narrow the discussion.\n2. **Identify Core Questions/Issues**: Determine what key aspects need addressing.\n3. **Decision-Making**: Begin discussing potential solutions or opinions regarding Topic A.\n\n#### Critical Data, Examples, or References Needed:\n- Gather any relevant information or references that can provide context or support future discussions on Topic A.\n\nThis summary should serve to guide the continuation of the discussion effectively."
+ },
+ {
+ "role": "user",
+ "content": "Topic B discussion"
+ },
+ {
+ "role": "assistant",
+ "content": "Response about B"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-5da4165b0fb0",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary\n\n#### Current Progress and Key Decisions:\n- **Initiation**: Discussions for Topics A and B have been initiated with an aim to explore and understand underlying issues or opportunities.\n- **Decisions**: No concrete decisions have been made as discussions are still in the exploratory phase and need more definition.\n\n#### Important Context, Constraints, or User Preferences:\n- **Unspecified Details**: Both Topic A and Topic B need further clarification to identify specific areas of interest or issues.\n- **User Preferences**: No specific preferences or constraints from the user have been provided.\n\n#### Next Steps:\n1. **Define Topics**: Clearly articulate the details of Topics A and B to guide the discussions effectively.\n2. **Identify Focus Areas**: Establish key questions or problems associated with each topic that need addressing.\n3. **Research and Information Gathering**: Collect relevant data or examples that can inform and support the discussion.\n\n#### Critical Data, Examples, or References Needed:\n- **Research Materials**: Gather relevant information or research pertinent to Topics A and B to provide depth to future conversations.\n- No specific examples or references have been cited, making this a priority for moving forward.\n\nThis concise summary aims to aid in seamlessly advancing the discussion with a clear focus and direction.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_899261a2ad",
+ "usage": {
+ "completion_tokens": 256,
+ "prompt_tokens": 328,
+ "total_tokens": 584,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/5e5d9318da33a0ceffab0af107c27f8303938b0abf46e23f060166fccbfc33ea.json b/tests/integration/responses/recordings/5e5d9318da33a0ceffab0af107c27f8303938b0abf46e23f060166fccbfc33ea.json
new file mode 100644
index 0000000000..f9ae8a4d55
--- /dev/null
+++ b/tests/integration/responses/recordings/5e5d9318da33a0ceffab0af107c27f8303938b0abf46e23f060166fccbfc33ea.json
@@ -0,0 +1,85 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_roundtrip[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "We're building a book tracker app with FastAPI."
+ },
+ {
+ "role": "assistant",
+ "content": "Great choice! Use SQLite for the database."
+ },
+ {
+ "role": "user",
+ "content": "What tables do we need?"
+ },
+ {
+ "role": "assistant",
+ "content": "Users, Books, and ReadingStatus tables."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-5e5d9318da33",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary\n\n**Current Progress and Key Decisions Made:**\n- The project involves building a book tracker app using FastAPI.\n- SQLite has been chosen as the database for the application.\n- Three tables have been identified as necessary: Users, Books, and ReadingStatus.\n\n**Important Context, Constraints, or User Preferences:**\n- FastAPI is used for the backend development, implying an emphasis on performance and asynchronous operations.\n- SQLite is selected for the database, indicating lightweight and potentially local storage.\n\n**What Remains to be Done (Next Steps):**\n1. Define the schema for each of the identified tables (Users, Books, ReadingStatus).\n2. Implement the FastAPI endpoints for CRUD operations for each table.\n3. Develop authentication and authorization mechanisms for user management.\n4. Design the user interface and connect it with the backend.\n5. Plan for testing, deployment, and any additional features like book recommendations or social sharing.\n\n**Critical Data, Examples, or References Needed:**\n- Example schemas for Users, Books, and ReadingStatus tables.\n- FastAPI documentation for database integration and best practices.\n- Authentication libraries or tools that integrate well with FastAPI for managing users.\n\nThis summary should help maintain continuity in the development process.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_89c7a0a89e",
+ "usage": {
+ "completion_tokens": 250,
+ "prompt_tokens": 139,
+ "total_tokens": 389,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/5fe7155ee4100ad9b41809d9e66ddb6e6923c5baa26baaef8ed07be234065195.json b/tests/integration/responses/recordings/5fe7155ee4100ad9b41809d9e66ddb6e6923c5baa26baaef8ed07be234065195.json
new file mode 100644
index 0000000000..c9bdc3423b
--- /dev/null
+++ b/tests/integration/responses/recordings/5fe7155ee4100ad9b41809d9e66ddb6e6923c5baa26baaef8ed07be234065195.json
@@ -0,0 +1,100 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_with_tool_calls_dropped[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "What's the weather?"
+ },
+ {
+ "role": "assistant",
+ "tool_calls": [
+ {
+ "index": 0,
+ "id": "call_1",
+ "type": "function",
+ "function": {
+ "name": "get_weather",
+ "arguments": "{\"city\": \"SF\"}"
+ }
+ }
+ ]
+ },
+ {
+ "role": "tool",
+ "tool_call_id": "call_1",
+ "content": "{\"temp\": 65}"
+ },
+ {
+ "role": "assistant",
+ "content": "It's 65F in SF."
+ },
+ {
+ "role": "user",
+ "content": "Thanks!"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-5fe7155ee410",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary\n\n**Progress and Key Decisions:**\n- User inquired about the current weather.\n- Provided the weather in San Francisco (65\u00b0F).\n\n**Context and Preferences:**\n- User's inquiry was weather-related and location-specific (San Francisco).\n- No additional preferences or constraints were provided.\n\n**Next Steps:**\n- Await further questions or requests from the user.\n\n**Critical Data:**\n- Current temperature in San Francisco: 65\u00b0F.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 93,
+ "prompt_tokens": 142,
+ "total_tokens": 235,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/654a54ad833805f325132431a0ab4f5a4e0dfd7a59f5eeff2c0d4bdaace1d765.json b/tests/integration/responses/recordings/654a54ad833805f325132431a0ab4f5a4e0dfd7a59f5eeff2c0d4bdaace1d765.json
new file mode 100644
index 0000000000..0827735aa2
--- /dev/null
+++ b/tests/integration/responses/recordings/654a54ad833805f325132431a0ab4f5a4e0dfd7a59f5eeff2c0d4bdaace1d765.json
@@ -0,0 +1,85 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_basic_conversation[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Help me plan a Python web app."
+ },
+ {
+ "role": "assistant",
+ "content": "I suggest FastAPI with SQLite."
+ },
+ {
+ "role": "user",
+ "content": "Add authentication too."
+ },
+ {
+ "role": "assistant",
+ "content": "Use OAuth2 with JWT tokens."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-654a54ad8338",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary\n\n**Current Progress & Key Decisions:**\n- The user is planning a Python web app.\n- Chosen stack: FastAPI for the framework, SQLite for the database.\n- Authentication approach: OAuth2 with JWT tokens.\n\n**Context, Constraints, & Preferences:**\n- Lightweight stack favored (FastAPI and SQLite).\n- Secure authentication mechanism required.\n- User has not specified additional features or scalability requirements yet.\n\n**Next Steps:**\n1. Define the purpose and features of the web app (e.g., endpoints, business logic, etc.).\n2. Set up the project structure and include FastAPI for routing and SQLite for the database.\n3. Implement user authentication using OAuth2 with JWTs.\n4. Map out specific database schema (for SQLite) and app APIs.\n5. Discuss deployment plans and possible frameworks/tools (e.g., Docker, cloud platforms).\n\n**Critical Data or References:**\n- FastAPI documentation: [https://fastapi.tiangolo.com](https://fastapi.tiangolo.com)\n- Example for OAuth2 with JWT in FastAPI: [FastAPI Security Tutorial](https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/)\n- SQLite setup guide: [https://sqlite.org/index.html](https://sqlite.org/index.html) \n\n",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 262,
+ "prompt_tokens": 131,
+ "total_tokens": 393,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/670757c2c823fca147653335273a99d3a32296d94a05678b08d6328d4968f7b1.json b/tests/integration/responses/recordings/670757c2c823fca147653335273a99d3a32296d94a05678b08d6328d4968f7b1.json
new file mode 100644
index 0000000000..380073ef9f
--- /dev/null
+++ b/tests/integration/responses/recordings/670757c2c823fca147653335273a99d3a32296d94a05678b08d6328d4968f7b1.json
@@ -0,0 +1,1317 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_auto_compacts_large_input[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Tell me about topic number 0 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 1 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 2 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 3 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 4 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 5 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 6 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 7 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 8 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 9 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 10 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 11 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 12 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 13 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 14 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 15 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 16 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 17 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 18 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 19 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 20 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 21 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 22 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 23 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 24 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 25 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 26 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 27 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 28 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 29 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 30 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 31 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 32 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 33 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 34 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 35 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 36 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 37 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 38 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 39 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 40 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 41 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 42 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 43 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 44 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 45 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 46 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 47 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 48 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 49 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Summarize what we discussed."
+ },
+ {
+ "role": "assistant",
+ "content": "### Handoff Summary\n\n**Current Progress:**\n- The user inquired about topics 0 through 49 in great detail.\n- The responses provided were placeholder texts repeating the topic number.\n\n**Important Context and Constraints:**\n- The user seems to be interested in detailed explanations for a series of topics numbered 0 to 49.\n- There were no specific content details provided for the topics, leading to repetitive placeholder responses.\n\n**User Preferences:**\n- The user prefers detailed and structured information on each topic.\n- No specific format or structure was requested beyond a detailed explanation.\n\n**What Remains to be Done:**\n- Provide meaningful, detailed content for each of the topics from 0 to 49 if actual descriptions exist.\n- Clarify whether there are specific themes or subjects associated with these topic numbers.\n\n**Critical Data, Examples, or References Needed:**\n- Clarification on the nature of these topics and any specific details or themes associated with them.\n- Any specific examples or references the user wishes to explore within these topics.\n\n**Next Steps:**\n1. Request clarification from the user on the specific themes or details pertaining to each topic number.\n2. Provide comprehensive descriptions based on user clarification or any available references."
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "36Es4jd87yvud7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": "Could",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "zoc3MbmI8mW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "qPVDisZ1KmtH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " please",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "XBpPk93Az"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " provide",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "FLetoFNd"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " more",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "NeEo0NTSumJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " context",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "ITZJCKOI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "tbrikTX6ofz3w"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " specify",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "umvG7Ii0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "TGAtuZaiEKlf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " subjects",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "6CTM62G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "zvn37gfgxxsC8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " themes",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "AfYsfYNG2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " related",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "wvIHzFK8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "24NrcBCfUYpPB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "yCKRIMhcYxdZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " topics",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "jBTPYmlJu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " numbered",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "vQD2zNX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "VQr3M1wAOPVCJ4n"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": "0",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "RGo7guUsTKS7ijt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " through",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "go069sUc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "Xuumue3dJFaaWVG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": "49",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "DvytZxqQNuYjt9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "qajY9ozEwbdpdeu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " This",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "dThYittDC9f"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " will",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "vbGXsc3KiKS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " help",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "xfJEnhuqyYK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " me",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "N9m3jJMDEpxQ4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " give",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "Ln579N5MnPB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "3PMJEcGYAfZD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " detailed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "ztkXz4N"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "KLqTWRUvH7wn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " relevant",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "wNTv5PO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " information",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "zcUh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "FUNvC1KkrdxI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " each",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "yxTvDfXrcDW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": " topic",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "Z6ezc5s7JR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "YEnhE7PKGjQTKT8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": null,
+ "obfuscation": "8VdbaxZ5Nj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-670757c2c823",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_5f84913767",
+ "usage": {
+ "completion_tokens": 37,
+ "prompt_tokens": 1013,
+ "total_tokens": 1050,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "Trc1F7iEJVs"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/67561a8f3c2e3f16af491b02be4f1e9fc9531ddef3cc8a8c3dc6c6e429d7102b.json b/tests/integration/responses/recordings/67561a8f3c2e3f16af491b02be4f1e9fc9531ddef3cc8a8c3dc6c6e429d7102b.json
new file mode 100644
index 0000000000..24b483076b
--- /dev/null
+++ b/tests/integration/responses/recordings/67561a8f3c2e3f16af491b02be4f1e9fc9531ddef3cc8a8c3dc6c6e429d7102b.json
@@ -0,0 +1,77 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_chain_through_compaction[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Remember: the secret word is 'banana'."
+ },
+ {
+ "role": "assistant",
+ "content": "Got it, I'll remember the secret word is banana."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-67561a8f3c2e",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "**Handoff Summary**\n\n**Progress and Key Decisions:**\n- User has shared a secret word: *banana*.\n- No additional context, tasks, or specifics have been discussed so far.\n\n**Important Context/Constraints/User Preferences:**\n- The secret word was shared for an unspecified purpose. No additional use case or context has been provided.\n\n**Next Steps:**\n- Await clarification or further instructions from the user regarding the purpose or relevance of the secret word.\n- Proceed based on the user's direction or queries.\n\n**Critical Data/References:**\n- Secret word: *banana*.\n\nReady to continue seamlessly with more information or tasks provided by the user.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 133,
+ "prompt_tokens": 117,
+ "total_tokens": 250,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/6d48eadf680486c741dcd166d9212e4af390470618368c39fbd98891475f6e6d.json b/tests/integration/responses/recordings/6d48eadf680486c741dcd166d9212e4af390470618368c39fbd98891475f6e6d.json
new file mode 100644
index 0000000000..a6089509eb
--- /dev/null
+++ b/tests/integration/responses/recordings/6d48eadf680486c741dcd166d9212e4af390470618368c39fbd98891475f6e6d.json
@@ -0,0 +1,357 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_with_previous_response_id[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "What is the capital of France?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "sjEr0XhXGBW73G"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": "The",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "xlfj7wT2binq4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": " capital",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "rjtUG7ug"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "zM7o5d2HvwvS2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": " France",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "g4DG1vN8v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "yKlg71MQo5AxD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "qCMvcLxYqp2kG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": "Paris",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "sEq9879ZkRf"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "WhWjWr9WQlFZav"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "KGHcnK0sI1V5NgB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "77KYRH2JHz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6d48eadf6804",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 10,
+ "prompt_tokens": 14,
+ "total_tokens": 24,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "Uj0qk7lIQ4050Ki"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/6dce1c87edefd2c874e5384b18460879fe9efb6143fda11c4f50fe70619d3e0e.json b/tests/integration/responses/recordings/6dce1c87edefd2c874e5384b18460879fe9efb6143fda11c4f50fe70619d3e0e.json
new file mode 100644
index 0000000000..708afbe997
--- /dev/null
+++ b/tests/integration/responses/recordings/6dce1c87edefd2c874e5384b18460879fe9efb6143fda11c4f50fe70619d3e0e.json
@@ -0,0 +1,1256 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_chain_through_compaction[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Remember: the secret word is 'banana'."
+ },
+ {
+ "role": "assistant",
+ "content": "**Handoff Summary**\n\n**Progress and Key Decisions:**\n- User has shared a secret word: *banana*.\n- No additional context, tasks, or specifics have been discussed so far.\n\n**Important Context/Constraints/User Preferences:**\n- The secret word was shared for an unspecified purpose. No additional use case or context has been provided.\n\n**Next Steps:**\n- Await clarification or further instructions from the user regarding the purpose or relevance of the secret word.\n- Proceed based on the user's direction or queries.\n\n**Critical Data/References:**\n- Secret word: *banana*.\n\nReady to continue seamlessly with more information or tasks provided by the user."
+ },
+ {
+ "role": "user",
+ "content": "What did we discuss?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "sLEfFquYBwqf6H"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "You",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "BLGVscu3NT6DT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " shared",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "xqVUW57wo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "DblP0CddbrCQmD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " secret",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "rox2mDq52"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " word",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "YQnU2ZKNhMN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "T8uQVg8QRxN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " me",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "YS3rmNnWxreIu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": ":",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "MOKIa7OBrX4WUXp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "mRlCRPgC1gWtK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "banana",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "TdHGheH4vZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "b8tILoCNjDOoLS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "hKoF40ZBFBCzR37"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " That",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "lZZRXZHdSry"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "\u2019s",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "p91q1nC1Ta3TO2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " all",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "vW13CbKUFx1s"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " we",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "owH7gHp6sByi1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "\u2019ve",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "X3L3CZRdtSj59"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " discussed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Kk5c2v"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " so",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "UW3J1OjnciTJ3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " far",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "HTA0WYT2vHrU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "SuPkhiWOkUKlowF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " Let",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "arh6lW7h2yPy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " me",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "faCUlbPEZe1aJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " know",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "fz2Wl2xaxtG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " if",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ceMZlVzYKUh0X"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " there",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "XSCZI2AN5d"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "\u2019s",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "6yo8boj7PUCii2"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " anything",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "PJZdUSx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " else",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "NjeAoJW2HbE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ggBEtlmduUdL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": "\u2019d",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "MLGa18zEPzfEQn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "yp1cOSxZphB"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "y2yfZ2dEr9Nis"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " talk",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "U6DFaSAmCtS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " about",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "SmK7F6PJJM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "H2aFuYEVvEyDJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " do",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "4fDzjgt3slUXQ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " with",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "6J8sGHAt3ye"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " this",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "z2jOsJ1Qhkt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " information",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "BC9K"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "iNjHmuMEi37ypQV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": " \ud83d\ude0a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "0NvRLPXp629pN7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "sRh2HipL7y"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-6dce1c87edef",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 43,
+ "prompt_tokens": 161,
+ "total_tokens": 204,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "9WDSmbnw5rXKh"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/7ae11298102b34eea0db790858526422fc576b0c426c6f4902604127f117cad8.json b/tests/integration/responses/recordings/7ae11298102b34eea0db790858526422fc576b0c426c6f4902604127f117cad8.json
new file mode 100644
index 0000000000..1fb6fafd75
--- /dev/null
+++ b/tests/integration/responses/recordings/7ae11298102b34eea0db790858526422fc576b0c426c6f4902604127f117cad8.json
@@ -0,0 +1,473 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_auto_compacts_large_input[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Tell me about topic number 0 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 1 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 2 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 3 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 4 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 5 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 6 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 7 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 8 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 9 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 10 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 11 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 12 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 13 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 14 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 15 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 16 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 17 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 18 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 19 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 20 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 21 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 22 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 23 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 24 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 25 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 26 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 27 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 28 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 29 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 30 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 31 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 32 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 33 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 34 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 35 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 36 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 37 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 38 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 39 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 40 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 41 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 42 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 43 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 44 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 45 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 46 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 47 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 48 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 49 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. "
+ },
+ {
+ "role": "user",
+ "content": "Summarize what we discussed."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-7ae11298102b",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary\n\n**Current Progress:**\n- The user inquired about topics 0 through 49 in great detail.\n- The responses provided were placeholder texts repeating the topic number.\n\n**Important Context and Constraints:**\n- The user seems to be interested in detailed explanations for a series of topics numbered 0 to 49.\n- There were no specific content details provided for the topics, leading to repetitive placeholder responses.\n\n**User Preferences:**\n- The user prefers detailed and structured information on each topic.\n- No specific format or structure was requested beyond a detailed explanation.\n\n**What Remains to be Done:**\n- Provide meaningful, detailed content for each of the topics from 0 to 49 if actual descriptions exist.\n- Clarify whether there are specific themes or subjects associated with these topic numbers.\n\n**Critical Data, Examples, or References Needed:**\n- Clarification on the nature of these topics and any specific details or themes associated with them.\n- Any specific examples or references the user wishes to explore within these topics.\n\n**Next Steps:**\n1. Request clarification from the user on the specific themes or details pertaining to each topic number.\n2. Provide comprehensive descriptions based on user clarification or any available references.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_9894c391cd",
+ "usage": {
+ "completion_tokens": 245,
+ "prompt_tokens": 11100,
+ "total_tokens": 11345,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/821e59d3ce5846dc47b3b3564215e3de18f1b9d57dcdf67d4cbec6f0a308e559.json b/tests/integration/responses/recordings/821e59d3ce5846dc47b3b3564215e3de18f1b9d57dcdf67d4cbec6f0a308e559.json
new file mode 100644
index 0000000000..3b90a70c8c
--- /dev/null
+++ b/tests/integration/responses/recordings/821e59d3ce5846dc47b3b3564215e3de18f1b9d57dcdf67d4cbec6f0a308e559.json
@@ -0,0 +1,2910 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_auto_compacts_large_input[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Tell me about topic number 0 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 1 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 2 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 3 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 4 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 5 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 6 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 7 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 8 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 9 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 10 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 11 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 12 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 13 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 14 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 15 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 16 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 17 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 18 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 19 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 20 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 21 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 22 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 23 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 24 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 25 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 26 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 27 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 28 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 29 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 30 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 31 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 32 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 33 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 34 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 35 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 36 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 37 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 38 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 39 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 40 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 41 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 42 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 43 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 44 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 45 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 46 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 47 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 48 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 49 in great detail."
+ },
+ {
+ "role": "user",
+ "content": "Summarize what we discussed."
+ },
+ {
+ "role": "assistant",
+ "content": "### Context Summary and Handoff\n\n**Current Progress and Key Decisions Made:**\n- The user has repeatedly asked for detailed information about topics numbered 0 through 49.\n- Responses provided so far are repetitive placeholders and lack substantive detail.\n- No actual topics or meaningful content have been discussed or clarified.\n\n**Important Context, Constraints, or User Preferences:**\n- The user has not defined what \"topics\" refer to or provided specific details, preferences, or goals.\n- Clear expectations or problem scope have not been established.\n\n**What Remains to Be Done (Next Steps):**\n1. Clarify what **specific topics** the user needs detailed information about (e.g., scientific concepts, historical events, technical guidelines, etc.).\n2. Understand any **contextual constraints** (e.g., scope, depth, format, or intended purpose for the content).\n3. Provide substantive, well-researched, and tailored responses on the relevant topics.\n\n**Critical Data, Examples, or References Needed:**\n- Explicit definitions or descriptions from the user about each numbered topic.\n- Any additional user preferences, such as depth of explanation, formatting, or specific references required depending on the type of topic.\n\nSeamless continuation requires **clear problem framing** from the user to ensure relevant information delivery."
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "zsV60ELyZ9DMzV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "It",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "yY80kS6NkbDkLy"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " seems",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "kYD9sE4JDD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "itYtbWUaGBH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "a0YI3jYJ0im8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " have",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "6CH1Ce9N14t"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " been",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "yXFB82Gac0x"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " requesting",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "u7g2n"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " detailed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "16bELdL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " information",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "vWJG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " about",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "dk6G6D60TS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "UtZYER5dxjOLpK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " series",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "kKeN4suKK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "rHwYGGKZH9n5P"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " numbered",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Q8iKmm8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " topics",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "51IiAuK4p"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " (",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "EzOtz2cpYEC0An"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "from",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "vfCZr5ZeJxNa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "22TxTCBuARWsCIo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "0",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "AlYvjrOo2zRQMa6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "KM0BgkIRxKnr4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " ",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "IEuCxOyNTFxvXeW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "49",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "yNNsqQUIKHZ3dc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "),",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "52TWgL1z6bF5vk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " but",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "r0B8wc2vIWXr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " no",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "VETNd1ReLqOK4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " specific",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "XlVfajl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " context",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ibQVTHTJ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ynZ7UtR2CmWYaJc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " category",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "7Sy4EsT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "6HJwTcMXRbGURak"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "qFTPat3f4jfyG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " subject",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "1EJ5TXsr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " matter",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "x5jwq3grw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " has",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "nWRz51iOJNWG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " been",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ZofPsjScJ2z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " provided",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "9pv4cUu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "01lH0kqBLMdAbXY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " As",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "pgw2PP949DSUw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "RjGi82oAjWMwrV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " result",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "fs3Gb0veM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "lFqs0E3h9w8BZY7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " no",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "2Ti2FQgLHmnWv"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " meaningful",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "eLeE1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " discussion",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "bMFLS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "WKNeIlS5dWq5d"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " detailed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "QCKQocp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " explanations",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "tOc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " could",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "QAxE3AxHEP"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " occur",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "5y9dTlk22W"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Vg4mF0fG06cCoY7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " If",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "l4mlwyDvgZpwT"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " you'd",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "OFnnMHuCiY"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " like",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ThATNSVn9TD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "3pvSQUMnkYBjIea"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " we",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "dz4MqswmkRCYg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "uXR2hn8UXAz5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " redefine",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "696Rgzl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " these",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "toK6NvoYAZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " \"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "1TX8InLYBwStp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "topics",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "FZSWBklF7F"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "\"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "782boGqaetZ9i4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " together",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "v9EUQ88"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "gfFUY9tn56yS1fD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " Please",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "L5O7jQWvG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " clarify",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "AWerz2CA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " what",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "n5FiQ9jl2KS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " these",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "1LldFnq5q9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " numbers",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "SoP5UQoX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " refer",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "QvRbDwOu5y"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "8fKnNilme5CwN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " \u2014",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "cANDtX6Hnxx5NC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " are",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "W5EnJyMVoPzD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " they",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "442foNTtC4a"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " related",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "LKheTNvq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "MlVUDZWWcepPp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " science",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ekE8WbFh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "K4crShTn8xcvCvb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " history",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "5pJWvpEA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "bFe0JCKIIUA2wZL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " technology",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "8qTh6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "m9l6ipg6XmOFAbK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "UgfNcvXlpp6r5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " something",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "j39dQg"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " else",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "XnnCP5X3ON0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "BrgtOIrLpZTop60"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " Let",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "NoFJXHLK4OBA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " me",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "fbwYsnvYXqL5F"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " know",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "WGemZu55T41"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "9MuE0pWdJKpHQxE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " and",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "QvAMlIDgPeRh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " I'll",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "lQxCoaf74AU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " be",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "fjtdUsv9HSn64"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " happy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "JdIe973h4n"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "QEGN7vhHUJS8E"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": " assist",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "aP7huClOE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "2m506MgMsAkISfs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "bdaKK6asfh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-821e59d3ce58",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 97,
+ "prompt_tokens": 1025,
+ "total_tokens": 1122,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "5jCUdSYyREy"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/8ab03193283d57868083e481dab99ea79d9b9d91d8686cf39e8afee98568ed33.json b/tests/integration/responses/recordings/8ab03193283d57868083e481dab99ea79d9b9d91d8686cf39e8afee98568ed33.json
new file mode 100644
index 0000000000..57cb00f27d
--- /dev/null
+++ b/tests/integration/responses/recordings/8ab03193283d57868083e481dab99ea79d9b9d91d8686cf39e8afee98568ed33.json
@@ -0,0 +1,100 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_with_tool_calls_dropped[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "What's the weather?"
+ },
+ {
+ "role": "assistant",
+ "tool_calls": [
+ {
+ "index": 0,
+ "id": "call_1",
+ "type": "function",
+ "function": {
+ "name": "get_weather",
+ "arguments": "{\"city\": \"SF\"}"
+ }
+ }
+ ]
+ },
+ {
+ "role": "tool",
+ "tool_call_id": "call_1",
+ "content": "{\"temp\": 65}"
+ },
+ {
+ "role": "assistant",
+ "content": "It's 65F in SF."
+ },
+ {
+ "role": "user",
+ "content": "Thanks!"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-8ab03193283d",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "**Handoff Summary:**\n\n- **Progress:**\n 1. User inquired about the current weather.\n 2. Provided the weather update for San Francisco: 65\u00b0F.\n\n- **Context & Preferences:**\n - User is interested in current weather information for specific locations.\n\n- **Next Steps:**\n - Await any further questions or requests from the user related to weather or other topics of interest.\n\n- **Critical Data:**\n - Current temperature in San Francisco: 65\u00b0F.\n\nThis summary should enable a seamless continuation if there are any more queries or topics the user wishes to explore.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_a09fc949a5",
+ "usage": {
+ "completion_tokens": 124,
+ "prompt_tokens": 142,
+ "total_tokens": 266,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/91afe44a366839937093c1b4fe4b01575e328a70bb209af5e48851a914783cb4.json b/tests/integration/responses/recordings/91afe44a366839937093c1b4fe4b01575e328a70bb209af5e48851a914783cb4.json
new file mode 100644
index 0000000000..9407c6bdac
--- /dev/null
+++ b/tests/integration/responses/recordings/91afe44a366839937093c1b4fe4b01575e328a70bb209af5e48851a914783cb4.json
@@ -0,0 +1,77 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_input_items_hides_compaction[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello"
+ },
+ {
+ "role": "assistant",
+ "content": "Hi there"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-91afe44a3668",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary\n\n**Current Progress and Key Decisions Made:**\n- Initial greeting exchanged; no significant progress or decisions have been made yet.\n\n**Important Context, Constraints, or User Preferences:**\n- User may be looking to start a new conversation or seek information, but no specific context or preference has been provided.\n\n**What Remains to be Done (Clear Next Steps):**\n- Await further user input to determine the direction of the conversation.\n- Respond accordingly to any questions, tasks, or topics the user introduces.\n\n**Critical Data, Examples, or References Needed to Continue:**\n- None at the moment; additional information will be gathered based on user\u2019s next input. \n\nEnsure to engage with any new details or inquiries the user provides promptly.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_1bc4f4a202",
+ "usage": {
+ "completion_tokens": 151,
+ "prompt_tokens": 100,
+ "total_tokens": 251,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/9c6aafb757f354cd0d51b4f51f6ccc3e2c079d8b4582bfe81ea374d4a3f41ee1.json b/tests/integration/responses/recordings/9c6aafb757f354cd0d51b4f51f6ccc3e2c079d8b4582bfe81ea374d4a3f41ee1.json
new file mode 100644
index 0000000000..c480c4a734
--- /dev/null
+++ b/tests/integration/responses/recordings/9c6aafb757f354cd0d51b4f51f6ccc3e2c079d8b4582bfe81ea374d4a3f41ee1.json
@@ -0,0 +1,319 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_chain_through_compaction[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Remember: the secret word is 'banana'."
+ },
+ {
+ "role": "assistant",
+ "content": "**Handoff Summary:**\n\n- **Current Progress and Key Decisions:**\n - The secret word for context or reference is established as \"banana.\"\n\n- **Important Context, Constraints, or User Preferences:**\n - The conversation has centered on establishing a keyword (\"banana\") for potential use in future interactions.\n\n- **What Remains to be Done (Clear Next Steps):**\n - Future conversations may require referencing or using the secret word \"banana\" based on context or user indication.\n\n- **Critical Data, Examples, or References Needed to Continue:**\n - No additional data or examples are currently needed related to the secret word. Future interactions will depend on the context in which \"banana\" is relevant.\n\nThis summary ensures continuity and seamless engagement focused around the usage of the secret word as necessary."
+ },
+ {
+ "role": "user",
+ "content": "What did we discuss?"
+ },
+ {
+ "role": "assistant",
+ "content": "We briefly discussed establishing the secret word \"banana\" for use in future interactions or as a reference point. If there was more to our conversation, please let me know so I can assist you further."
+ },
+ {
+ "role": "user",
+ "content": "What was the secret word?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "oDdclWQgYRPoLM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": "The",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "FG1FYmT7BpeQa"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": " secret",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "agbDdrL4V"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": " word",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "yTrgU951TM4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "LeHagiexgGvUG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": " \"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "sozKBWRywiNDG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": "banana",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "zBii7TTUxZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": ".\"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "onHamJrJoIZVE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "AaTlVq7bZO"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-9c6aafb757f3",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": {
+ "completion_tokens": 7,
+ "prompt_tokens": 244,
+ "total_tokens": 251,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "eG97orAe4TbiK7"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/a31c716b51228e40eef5f689d1fa8652df0d61f11346952ec37276c609f3e10c.json b/tests/integration/responses/recordings/a31c716b51228e40eef5f689d1fa8652df0d61f11346952ec37276c609f3e10c.json
new file mode 100644
index 0000000000..da8ffa0d73
--- /dev/null
+++ b/tests/integration/responses/recordings/a31c716b51228e40eef5f689d1fa8652df0d61f11346952ec37276c609f3e10c.json
@@ -0,0 +1,77 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_chain_through_compaction[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Remember: the secret word is 'banana'."
+ },
+ {
+ "role": "assistant",
+ "content": "Got it, I'll remember the secret word is banana."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-a31c716b5122",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "**Handoff Summary:**\n\n- **Current Progress and Key Decisions:**\n - The secret word for context or reference is established as \"banana.\"\n\n- **Important Context, Constraints, or User Preferences:**\n - The conversation has centered on establishing a keyword (\"banana\") for potential use in future interactions.\n\n- **What Remains to be Done (Clear Next Steps):**\n - Future conversations may require referencing or using the secret word \"banana\" based on context or user indication.\n\n- **Critical Data, Examples, or References Needed to Continue:**\n - No additional data or examples are currently needed related to the secret word. Future interactions will depend on the context in which \"banana\" is relevant.\n\nThis summary ensures continuity and seamless engagement focused around the usage of the secret word as necessary.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_a09fc949a5",
+ "usage": {
+ "completion_tokens": 161,
+ "prompt_tokens": 117,
+ "total_tokens": 278,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/a8c95c867ee2f6f3d48d413bed43c0439a9c676b936fe3730bb9af95b2e92a0e.json b/tests/integration/responses/recordings/a8c95c867ee2f6f3d48d413bed43c0439a9c676b936fe3730bb9af95b2e92a0e.json
new file mode 100644
index 0000000000..9b8aad5875
--- /dev/null
+++ b/tests/integration/responses/recordings/a8c95c867ee2f6f3d48d413bed43c0439a9c676b936fe3730bb9af95b2e92a0e.json
@@ -0,0 +1,473 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_auto_compacts_large_input[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Tell me about topic number 0 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. Here is a detailed response about topic 0. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 1 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. Here is a detailed response about topic 1. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 2 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. Here is a detailed response about topic 2. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 3 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. Here is a detailed response about topic 3. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 4 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. Here is a detailed response about topic 4. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 5 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. Here is a detailed response about topic 5. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 6 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. Here is a detailed response about topic 6. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 7 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. Here is a detailed response about topic 7. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 8 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. Here is a detailed response about topic 8. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 9 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. Here is a detailed response about topic 9. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 10 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. Here is a detailed response about topic 10. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 11 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. Here is a detailed response about topic 11. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 12 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. Here is a detailed response about topic 12. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 13 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. Here is a detailed response about topic 13. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 14 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. Here is a detailed response about topic 14. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 15 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. Here is a detailed response about topic 15. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 16 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. Here is a detailed response about topic 16. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 17 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. Here is a detailed response about topic 17. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 18 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. Here is a detailed response about topic 18. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 19 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. Here is a detailed response about topic 19. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 20 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. Here is a detailed response about topic 20. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 21 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. Here is a detailed response about topic 21. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 22 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. Here is a detailed response about topic 22. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 23 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. Here is a detailed response about topic 23. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 24 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. Here is a detailed response about topic 24. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 25 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. Here is a detailed response about topic 25. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 26 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. Here is a detailed response about topic 26. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 27 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. Here is a detailed response about topic 27. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 28 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. Here is a detailed response about topic 28. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 29 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. Here is a detailed response about topic 29. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 30 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. Here is a detailed response about topic 30. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 31 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. Here is a detailed response about topic 31. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 32 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. Here is a detailed response about topic 32. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 33 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. Here is a detailed response about topic 33. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 34 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. Here is a detailed response about topic 34. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 35 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. Here is a detailed response about topic 35. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 36 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. Here is a detailed response about topic 36. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 37 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. Here is a detailed response about topic 37. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 38 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. Here is a detailed response about topic 38. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 39 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. Here is a detailed response about topic 39. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 40 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. Here is a detailed response about topic 40. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 41 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. Here is a detailed response about topic 41. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 42 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. Here is a detailed response about topic 42. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 43 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. Here is a detailed response about topic 43. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 44 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. Here is a detailed response about topic 44. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 45 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. Here is a detailed response about topic 45. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 46 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. Here is a detailed response about topic 46. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 47 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. Here is a detailed response about topic 47. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 48 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. Here is a detailed response about topic 48. "
+ },
+ {
+ "role": "user",
+ "content": "Tell me about topic number 49 in great detail."
+ },
+ {
+ "role": "assistant",
+ "content": "Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. Here is a detailed response about topic 49. "
+ },
+ {
+ "role": "user",
+ "content": "Summarize what we discussed."
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-a8c95c867ee2",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Context Summary and Handoff\n\n**Current Progress and Key Decisions Made:**\n- The user has repeatedly asked for detailed information about topics numbered 0 through 49.\n- Responses provided so far are repetitive placeholders and lack substantive detail.\n- No actual topics or meaningful content have been discussed or clarified.\n\n**Important Context, Constraints, or User Preferences:**\n- The user has not defined what \"topics\" refer to or provided specific details, preferences, or goals.\n- Clear expectations or problem scope have not been established.\n\n**What Remains to Be Done (Next Steps):**\n1. Clarify what **specific topics** the user needs detailed information about (e.g., scientific concepts, historical events, technical guidelines, etc.).\n2. Understand any **contextual constraints** (e.g., scope, depth, format, or intended purpose for the content).\n3. Provide substantive, well-researched, and tailored responses on the relevant topics.\n\n**Critical Data, Examples, or References Needed:**\n- Explicit definitions or descriptions from the user about each numbered topic.\n- Any additional user preferences, such as depth of explanation, formatting, or specific references required depending on the type of topic.\n\nSeamless continuation requires **clear problem framing** from the user to ensure relevant information delivery.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 258,
+ "prompt_tokens": 11100,
+ "total_tokens": 11358,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/b8ea7e6e5d1a40844453b6f42aa5a1319ee75d2dd2ff63f18d6942f1b8bfbd35.json b/tests/integration/responses/recordings/b8ea7e6e5d1a40844453b6f42aa5a1319ee75d2dd2ff63f18d6942f1b8bfbd35.json
new file mode 100644
index 0000000000..12cd9ae7c4
--- /dev/null
+++ b/tests/integration/responses/recordings/b8ea7e6e5d1a40844453b6f42aa5a1319ee75d2dd2ff63f18d6942f1b8bfbd35.json
@@ -0,0 +1,411 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestContextManagement::test_context_management_none_does_not_compact[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello!"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "RfSzNrP2ZoE2gD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": "Hi",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "J7kAtVAatW2CM1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " there",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Z3oBmnTuRc"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "nH2klo5PtNeLtSq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " \ud83d\ude0a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "djTjcLPUTNicS8"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " How",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "KWwBsNi28cmi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Jo16Ts64dlMr"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "LHihmbHcrjcL7w"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " assist",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Z6SlxkSrb"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "cxovHRF7SByh"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": " today",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "mLqllo8VMk"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "utPlpqWnXRnLZgi"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "NRLKrUKa5Z"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-b8ea7e6e5d1a",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 12,
+ "prompt_tokens": 9,
+ "total_tokens": 21,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": ""
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/c3abf2bc7b49345a33a48230079eab385657c1d8d8578364f92385dae3e3eae6.json b/tests/integration/responses/recordings/c3abf2bc7b49345a33a48230079eab385657c1d8d8578364f92385dae3e3eae6.json
new file mode 100644
index 0000000000..2cea2c68e0
--- /dev/null
+++ b/tests/integration/responses/recordings/c3abf2bc7b49345a33a48230079eab385657c1d8d8578364f92385dae3e3eae6.json
@@ -0,0 +1,73 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_single_message[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello!"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-c3abf2bc7b49",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary:\n\n**Progress & Key Decisions:**\n- User initiated the conversation with a greeting (\"Hello!\").\n- No specific topic, question, or task has been introduced yet.\n\n**Context, Constraints, or Preferences:**\n- User's intent or preferences remain unclear.\n- No constraints or context provided so far.\n\n**Next Steps:**\n- Await user's input to clarify their intent or provide a specific question/task to address.\n- Ensure active listening to gather details about goals or requirements.\n\n**Critical Data or References:**\n- None at this stage. Conversation is open.\n\nReady to proceed once the user provides more direction.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 127,
+ "prompt_tokens": 95,
+ "total_tokens": 222,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/cc6df585c0ddf8f315839e603b4c660903d5108ee150be1ffb55a454ee3558af.json b/tests/integration/responses/recordings/cc6df585c0ddf8f315839e603b4c660903d5108ee150be1ffb55a454ee3558af.json
new file mode 100644
index 0000000000..c4a25a1c46
--- /dev/null
+++ b/tests/integration/responses/recordings/cc6df585c0ddf8f315839e603b4c660903d5108ee150be1ffb55a454ee3558af.json
@@ -0,0 +1,77 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_double_compaction[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Topic A discussion"
+ },
+ {
+ "role": "assistant",
+ "content": "Response about A"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-cc6df585c0dd",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary: Topic A Discussion\n\n#### Current Progress and Key Decisions:\n- **Discussion Initiation**: The conversation began with an overview of Topic A.\n- **Identified Objective**: Establish a clear understanding or solution regarding Topic A.\n- **Key Decision**: Details on specific decisions were not yet discussed.\n\n#### Important Context, Constraints, or User Preferences:\n- **User Context/Preferences**: No specific preferences or constraints mentioned thus far.\n- **Topic Scope**: Topic A has not been detailed, requiring further definition to ensure focus.\n \n#### Next Steps:\n1. **Define Topic A**: Clarify the specifics of Topic A to narrow the discussion.\n2. **Identify Core Questions/Issues**: Determine what key aspects need addressing.\n3. **Decision-Making**: Begin discussing potential solutions or opinions regarding Topic A.\n\n#### Critical Data, Examples, or References Needed:\n- Gather any relevant information or references that can provide context or support future discussions on Topic A.\n\nThis summary should serve to guide the continuation of the discussion effectively.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_a09fc949a5",
+ "usage": {
+ "completion_tokens": 214,
+ "prompt_tokens": 103,
+ "total_tokens": 317,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/d66b52064bf7f6ff3198486c9dac5a6dacb0767a1e10e0cccee6280952fc1d8a.json b/tests/integration/responses/recordings/d66b52064bf7f6ff3198486c9dac5a6dacb0767a1e10e0cccee6280952fc1d8a.json
new file mode 100644
index 0000000000..cc1aebea32
--- /dev/null
+++ b/tests/integration/responses/recordings/d66b52064bf7f6ff3198486c9dac5a6dacb0767a1e10e0cccee6280952fc1d8a.json
@@ -0,0 +1,373 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_chain_through_compaction[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Remember: the secret word is 'banana'."
+ },
+ {
+ "role": "assistant",
+ "content": "**Handoff Summary**\n\n**Progress and Key Decisions:**\n- User has shared a secret word: *banana*.\n- No additional context, tasks, or specifics have been discussed so far.\n\n**Important Context/Constraints/User Preferences:**\n- The secret word was shared for an unspecified purpose. No additional use case or context has been provided.\n\n**Next Steps:**\n- Await clarification or further instructions from the user regarding the purpose or relevance of the secret word.\n- Proceed based on the user's direction or queries.\n\n**Critical Data/References:**\n- Secret word: *banana*.\n\nReady to continue seamlessly with more information or tasks provided by the user."
+ },
+ {
+ "role": "user",
+ "content": "What did we discuss?"
+ },
+ {
+ "role": "assistant",
+ "content": "You shared a secret word with me: **banana**. That\u2019s all we\u2019ve discussed so far! Let me know if there\u2019s anything else you\u2019d like to talk about or do with this information. \ud83d\ude0a"
+ },
+ {
+ "role": "user",
+ "content": "What was the secret word?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ujzd4F0anj6Y2k"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": "The",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "FsvOsNo9HEDAx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": " secret",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "dIRFCNJyV"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": " word",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "h4OitwOvZ2R"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": " is",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "fHXQUqUIMuDtp"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": " **",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "U30o1DUoN1AGF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": "banana",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Eo7x1yaBcw"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": "**",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "AtZgtzkdsj1cuS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "LZm6rajrjxEaNMn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": " \ud83c\udf4c",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "KeFg1z9jxAZEj9"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "caYdNXsIoA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-d66b52064bf7",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 11,
+ "prompt_tokens": 217,
+ "total_tokens": 228,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "xU7QyFPIQt38J"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/db1372cede180d2c858ecf5267479476980748dbdc2f7960407bad310d05972a.json b/tests/integration/responses/recordings/db1372cede180d2c858ecf5267479476980748dbdc2f7960407bad310d05972a.json
new file mode 100644
index 0000000000..dce9073660
--- /dev/null
+++ b/tests/integration/responses/recordings/db1372cede180d2c858ecf5267479476980748dbdc2f7960407bad310d05972a.json
@@ -0,0 +1,73 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_single_message[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello!"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-db1372cede18",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "Since the conversation has just started with a greeting, there is no ongoing progress or decisions made yet. Here\u2019s a structured format for any potential future summary:\n\n1. **Current Progress & Key Decisions:**\n - No progress or decisions made thus far.\n\n2. **Important Context, Constraints, or User Preferences:**\n - Context and preferences yet to be established.\n\n3. **What Remains to be Done:**\n - Awaiting further interactions to determine next steps.\n\n4. **Critical Data, Examples, or References Needed:**\n - None needed at this stage.\n\nFeel free to continue with your queries or topics of discussion!",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": {
+ "completion_tokens": 129,
+ "prompt_tokens": 95,
+ "total_tokens": 224,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/ea289b9b991b944604ef77dac2c73328302e51a0deef0bbb90025695d476aefd.json b/tests/integration/responses/recordings/ea289b9b991b944604ef77dac2c73328302e51a0deef0bbb90025695d476aefd.json
new file mode 100644
index 0000000000..503652911d
--- /dev/null
+++ b/tests/integration/responses/recordings/ea289b9b991b944604ef77dac2c73328302e51a0deef0bbb90025695d476aefd.json
@@ -0,0 +1,87 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_with_previous_response_id[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": [
+ {
+ "type": "text",
+ "text": "What is the capital of France?"
+ }
+ ]
+ },
+ {
+ "role": "assistant",
+ "content": [
+ {
+ "type": "text",
+ "text": "The capital of France is **Paris**."
+ }
+ ]
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-ea289b9b991b",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### Handoff Summary:\n\n**Current Progress & Key Decisions:**\n- User inquired about the capital of France. Response provided: **Paris**.\n\n**Important Context:**\n- Simple Q&A format.\n- No user preferences or constraints identified yet.\n\n**Next Steps:**\n- Await user\u2019s next question or instruction.\n\n**Critical Data:**\n- None required at this point; context remains minimal.\n\nReady to proceed based on further input.",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 89,
+ "prompt_tokens": 113,
+ "total_tokens": 202,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/f3874303dc0a3a8c38e186ee0136ef24dcc84611056b989d43baa969e9e82c07.json b/tests/integration/responses/recordings/f3874303dc0a3a8c38e186ee0136ef24dcc84611056b989d43baa969e9e82c07.json
new file mode 100644
index 0000000000..34b607d189
--- /dev/null
+++ b/tests/integration/responses/recordings/f3874303dc0a3a8c38e186ee0136ef24dcc84611056b989d43baa969e9e82c07.json
@@ -0,0 +1,1202 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_chain_through_compaction[openai_client-txt=openai/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://api.openai.com/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Remember: the secret word is 'banana'."
+ },
+ {
+ "role": "assistant",
+ "content": "**Handoff Summary:**\n\n- **Current Progress and Key Decisions:**\n - The secret word for context or reference is established as \"banana.\"\n\n- **Important Context, Constraints, or User Preferences:**\n - The conversation has centered on establishing a keyword (\"banana\") for potential use in future interactions.\n\n- **What Remains to be Done (Clear Next Steps):**\n - Future conversations may require referencing or using the secret word \"banana\" based on context or user indication.\n\n- **Critical Data, Examples, or References Needed to Continue:**\n - No additional data or examples are currently needed related to the secret word. Future interactions will depend on the context in which \"banana\" is relevant.\n\nThis summary ensures continuity and seamless engagement focused around the usage of the secret word as necessary."
+ },
+ {
+ "role": "user",
+ "content": "What did we discuss?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "BmdXxefh6zTCET"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": "We",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "G6k3GPR21LkU9e"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " briefly",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "B2aItcMm"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " discussed",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "rF4nF4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " establishing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "lC0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " the",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "JgwPBrNRzPPX"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " secret",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "UaG9WBDvq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " word",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "3vdXNPfsOib"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " \"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "OOvjoUlCaoh8S"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": "banana",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "V3MF6WpU5J"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": "\"",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "L3HP4guxnxmvCS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "7qewtwSNxbih"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " use",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "11WS6tlaXfFK"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " in",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "PDlBsrsMXfZBE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " future",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "FZ4Wn5QTR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " interactions",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "KfR"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " or",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "xEzqR9rfw54bz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " as",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "le9llFclyhwez"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "SGnbKxXRueNwvZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " reference",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "wHF2tu"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " point",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "KDx4MGQmH6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "kFLGWuiFqSRTf9b"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " If",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "MWJjJjkbwSMBs"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " there",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "gaAnumAs6Q"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " was",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "BqHhjvpXguJF"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " more",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "Z6H7Ka0owpt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " to",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "wJQgy44CwzhaW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " our",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "BARrzy22TBAz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " conversation",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "5zN"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "mJER8rbfGZsD1ns"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " please",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "EmulYFYgI"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " let",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "zjrc1dP1aZGG"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " me",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "n8527A22HyDcE"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " know",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "eaf31SkCEBt"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " so",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "Q5VPzYkBrIBgZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "dKq9QcklW1E3fL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " can",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "yjjcVjqlQnkW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " assist",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "sbThy64x5"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "FfIKmbkv2mrM"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": " further",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "sgYNbyJA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": ".",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "54UR6iWEYBO2eiA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": null,
+ "obfuscation": "kwVdIpZvJq"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f3874303dc0a",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-08-06",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_8a0d04bcbc",
+ "usage": {
+ "completion_tokens": 40,
+ "prompt_tokens": 190,
+ "total_tokens": 230,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "UJg2ZeI2sQabw"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/f43318749d6b0144b241b72249c9545c282f6b83e7bc7a6e52d903ee3ca8eb21.json b/tests/integration/responses/recordings/f43318749d6b0144b241b72249c9545c282f6b83e7bc7a6e52d903ee3ca8eb21.json
new file mode 100644
index 0000000000..99feac98a0
--- /dev/null
+++ b/tests/integration/responses/recordings/f43318749d6b0144b241b72249c9545c282f6b83e7bc7a6e52d903ee3ca8eb21.json
@@ -0,0 +1,85 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_double_compaction[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Topic A discussion"
+ },
+ {
+ "role": "assistant",
+ "content": "**Handoff Summary: Context Checkpoint**\n\n1. **Current Progress & Key Decisions**: \n - The user requested a discussion about \"Topic A,\" but no further details or clarification about \"Topic A\" were provided yet. \n - Conversation context is still in the exploratory phase with no specific direction or subtopics identified. \n\n2. **Important Context, Constraints, or Preferences**: \n - User\u2019s intent or goals for discussing \"Topic A\" remain unclear. \n - No specific examples, preferences, or constraints have been provided. \n\n3. **Next Steps**: \n - Seek clarification from the user on their desired focus for \"Topic A\". \n - Determine any specific queries, subtopics, or goals they have in mind. \n\n4. **Critical Data, Examples, or References Needed**: \n - User to define or elaborate on \"Topic A\" to proceed with a meaningful discussion or support. \n\n**Actionable Follow-Up**: Please clarify the scope or specific aspect of \"Topic A\" you'd like to discuss or address further for continued assistance. "
+ },
+ {
+ "role": "user",
+ "content": "Topic B discussion"
+ },
+ {
+ "role": "assistant",
+ "content": "Response about B"
+ },
+ {
+ "role": "user",
+ "content": "You are performing a CONTEXT CHECKPOINT COMPACTION. Create a concise handoff summary of the conversation so far. Include:\n- Current progress and key decisions made\n- Important context, constraints, or user preferences\n- What remains to be done (clear next steps)\n- Any critical data, examples, or references needed to continue\n\nBe concise, structured, and focused on helping seamlessly continue the work."
+ }
+ ],
+ "stream": false
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": {
+ "__type__": "openai.types.chat.chat_completion.ChatCompletion",
+ "__data__": {
+ "id": "rec-f43318749d6b",
+ "choices": [
+ {
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null,
+ "message": {
+ "content": "### **Handoff Summary:**\n\n#### **1. Current Progress & Key Decisions:**\n- The user has initiated a discussion about \"Topic A\" and \"Topic B\" but has not provided details or clarified the scope of either topic.\n- No specific preferences, context, or subtopics have been established yet.\n\n#### **2. Important Context, Constraints, or User Preferences:**\n- User's intent for both topics remains ambiguous.\n- The conversation is in an exploratory phase with no specific guidance provided.\n\n#### **3. What Remains to Be Done (Next Steps):**\n- Request clarification on:\n - The scope and intent of \"Topic A\" and \"Topic B.\"\n - Any specific questions, subtopics, or outcomes the user is seeking.\n- Provide tailored, relevant discussion or insights once further details are received.\n\n#### **4. Critical Data, Examples, or References Needed:**\n- User must define \"Topic A\" and \"Topic B\" to proceed effectively.\n\n**Actionable Follow-Up:** Ask the user to elaborate on their goals or the key aspects they\u2019d like to explore in \"Topic A\" and \"Topic B.\"",
+ "refusal": null,
+ "role": "assistant",
+ "annotations": [],
+ "audio": null,
+ "function_call": null,
+ "tool_calls": null
+ }
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 232,
+ "prompt_tokens": 337,
+ "total_tokens": 569,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ }
+ }
+ },
+ "is_streaming": false
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/recordings/f8968ea47985bbddbcbf06ae84d97dfbd29663033f9142fa8147aa4e51242647.json b/tests/integration/responses/recordings/f8968ea47985bbddbcbf06ae84d97dfbd29663033f9142fa8147aa4e51242647.json
new file mode 100644
index 0000000000..a3fcc6ac91
--- /dev/null
+++ b/tests/integration/responses/recordings/f8968ea47985bbddbcbf06ae84d97dfbd29663033f9142fa8147aa4e51242647.json
@@ -0,0 +1,905 @@
+{
+ "test_id": "tests/integration/responses/test_compact_responses.py::TestCompactResponses::test_compact_input_items_hides_compaction[openai_client-txt=azure/gpt-4o]",
+ "request": {
+ "method": "POST",
+ "url": "https://llama-stack-test.openai.azure.com/openai/v1/v1/chat/completions",
+ "headers": {},
+ "body": {
+ "model": "gpt-4o",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello"
+ },
+ {
+ "role": "assistant",
+ "content": "### Handoff Summary:\n\n#### **Current Progress and Key Decisions:**\n- User initiated the conversation with a simple greeting (\"Hello\").\n- No specific topic, task, or direction has been introduced yet.\n\n#### **Important Context, Constraints, or Preferences:**\n- No clear context or preferences have been shared by the user at this point.\n- Awaiting user input to define the purpose or goal of the conversation.\n\n#### **What Remains to Be Done (Next Steps):**\n1. User needs to specify the topic, question, or task they wish to discuss or accomplish.\n2. Clarify any preferences, constraints, or additional details to guide the interaction.\n\n#### **Critical Data, Examples, or References:**\n- None provided or applicable so far.\n\nThis summary can serve as a clean slate for the next assistant to seamlessly pick up. Ready to assist further! \ud83d\ude80"
+ },
+ {
+ "role": "user",
+ "content": "How are you?"
+ }
+ ],
+ "stream": true,
+ "stream_options": {
+ "include_usage": true
+ }
+ },
+ "endpoint": "/v1/chat/completions",
+ "model": "gpt-4o",
+ "provider_metadata": {
+ "openai_sdk_version": "2.30.0"
+ }
+ },
+ "response": {
+ "body": [
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": "",
+ "function_call": null,
+ "refusal": null,
+ "role": "assistant",
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "xmGoYANtTar9BH"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": "I'm",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "ShsPUfcYGLEoo"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " just",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "fwEPtfJb1f6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "KQINgvIilw0Qx0"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " bundle",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "3WniziY98"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " of",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "14knquM1T6ZYU"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " digital",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "dyucFlXC"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " energy",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "3O4HKfu2I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": ",",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "GWgjMHHW9P6s9wD"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " so",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "TaieoNqhFLZCW"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " I",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "8fBpUVdzQArl2M"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " don't",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "mtP6AxYfI7"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " have",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "0l1by0coGJ1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " feelings",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "tZfNPME"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": "\u2014but",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "tx8XnUVBZUb1"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " thank",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "xHvOYY7prz"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Bo9KNTaTbrCA"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " for",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "V94FWO8FFx9P"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " asking",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "MtT8t78Zn"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": "!",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "421CRFo5uk07J8I"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " \ud83d\ude0a",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "uEDqDY3sOVK7f4"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " How",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "qmGcnFUU28y6"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " about",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "bMWHkfXgM3"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "jKu4PQVqP4uj"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "1xkkNnAbAoiSCBZ"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " How",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "wxBdKPzGMJ7R"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " are",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Pq0RWcpCyXsS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " you",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "4ivLzAMwOXLL"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": " doing",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "xZUcHAJjAl"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": "?",
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": null,
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "p3JfTcO0epQVUbx"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [
+ {
+ "delta": {
+ "content": null,
+ "function_call": null,
+ "refusal": null,
+ "role": null,
+ "tool_calls": null
+ },
+ "finish_reason": "stop",
+ "index": 0,
+ "logprobs": null
+ }
+ ],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": null,
+ "obfuscation": "Eu4fvr6uGS"
+ }
+ },
+ {
+ "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
+ "__data__": {
+ "id": "rec-f8968ea47985",
+ "choices": [],
+ "created": 0,
+ "model": "gpt-4o-2024-11-20",
+ "object": "chat.completion.chunk",
+ "service_tier": "default",
+ "system_fingerprint": "fp_af7f7349a4",
+ "usage": {
+ "completion_tokens": 30,
+ "prompt_tokens": 195,
+ "total_tokens": 225,
+ "completion_tokens_details": {
+ "accepted_prediction_tokens": 0,
+ "audio_tokens": 0,
+ "reasoning_tokens": 0,
+ "rejected_prediction_tokens": 0
+ },
+ "prompt_tokens_details": {
+ "audio_tokens": 0,
+ "cached_tokens": 0
+ }
+ },
+ "obfuscation": "6BJX3z303DSlV"
+ }
+ }
+ ],
+ "is_streaming": true
+ },
+ "id_normalization_mapping": {}
+}
diff --git a/tests/integration/responses/test_compact_responses.py b/tests/integration/responses/test_compact_responses.py
new file mode 100644
index 0000000000..8a0ddaff19
--- /dev/null
+++ b/tests/integration/responses/test_compact_responses.py
@@ -0,0 +1,259 @@
+# Copyright (c) Meta Platforms, Inc. and affiliates.
+# All rights reserved.
+#
+# This source code is licensed under the terms described in the LICENSE file in
+# the root directory of this source tree.
+
+import pytest
+from llama_stack_client import LlamaStackClient
+
+
+class TestCompactResponses:
+ """Tests for POST /v1/responses/compact endpoint."""
+
+ @pytest.fixture(autouse=True)
+ def _skip_non_openai_client(self, responses_client):
+ if isinstance(responses_client, LlamaStackClient):
+ pytest.skip("Compact tests require OpenAI client (.post() method)")
+
+ def test_compact_basic_conversation(self, responses_client, text_model_id):
+ """Compact a multi-turn conversation with input array."""
+ result = responses_client.post(
+ "/responses/compact",
+ body={
+ "model": text_model_id,
+ "input": [
+ {"role": "user", "content": "Help me plan a Python web app."},
+ {"role": "assistant", "content": "I suggest FastAPI with SQLite."},
+ {"role": "user", "content": "Add authentication too."},
+ {"role": "assistant", "content": "Use OAuth2 with JWT tokens."},
+ ],
+ },
+ cast_to=object,
+ )
+ assert result["object"] == "response.compaction"
+ assert result["usage"]["input_tokens"] > 0
+ output = result["output"]
+ messages = [o for o in output if o.get("type") == "message"]
+ compactions = [o for o in output if o.get("type") == "compaction"]
+ assert len(messages) == 2 # 2 user messages
+ assert all(m["role"] == "user" for m in messages)
+ assert len(compactions) == 1
+ assert compactions[0]["encrypted_content"]
+ assert output[-1]["type"] == "compaction"
+
+ def test_compact_single_message(self, responses_client, text_model_id):
+ """Edge case: compact with just one user message."""
+ result = responses_client.post(
+ "/responses/compact",
+ body={
+ "model": text_model_id,
+ "input": [{"role": "user", "content": "Hello!"}],
+ },
+ cast_to=object,
+ )
+ assert result["object"] == "response.compaction"
+ assert len([o for o in result["output"] if o.get("type") == "message"]) == 1
+ assert len([o for o in result["output"] if o.get("type") == "compaction"]) == 1
+
+ def test_compact_with_tool_calls_dropped(self, responses_client, text_model_id):
+ """Tool calls and outputs should be dropped from compacted output."""
+ result = responses_client.post(
+ "/responses/compact",
+ body={
+ "model": text_model_id,
+ "input": [
+ {"role": "user", "content": "What's the weather?"},
+ {
+ "type": "function_call",
+ "id": "fc_1",
+ "call_id": "call_1",
+ "name": "get_weather",
+ "arguments": '{"city": "SF"}',
+ },
+ {
+ "type": "function_call_output",
+ "call_id": "call_1",
+ "output": '{"temp": 65}',
+ },
+ {"role": "assistant", "content": "It's 65F in SF."},
+ {"role": "user", "content": "Thanks!"},
+ ],
+ },
+ cast_to=object,
+ )
+ output = result["output"]
+ types = [o.get("type") for o in output]
+ assert "function_call" not in types
+ assert "function_call_output" not in types
+ assert set(types) == {"message", "compaction"}
+
+ def test_compact_with_previous_response_id(self, responses_client, text_model_id):
+ """Compact using previous_response_id to resolve stored history."""
+ response = responses_client.responses.create(
+ model=text_model_id,
+ input="What is the capital of France?",
+ store=True,
+ )
+ result = responses_client.post(
+ "/responses/compact",
+ body={"model": text_model_id, "previous_response_id": response.id},
+ cast_to=object,
+ )
+ assert result["object"] == "response.compaction"
+ messages = [o for o in result["output"] if o.get("type") == "message"]
+ assert any(
+ "capital" in m["content"][0]["text"].lower() or "france" in m["content"][0]["text"].lower()
+ for m in messages
+ )
+
+ def test_compact_roundtrip(self, responses_client, text_model_id):
+ """Compact output can be used as input to a new response."""
+ compact_result = responses_client.post(
+ "/responses/compact",
+ body={
+ "model": text_model_id,
+ "input": [
+ {"role": "user", "content": "We're building a book tracker app with FastAPI."},
+ {"role": "assistant", "content": "Great choice! Use SQLite for the database."},
+ {"role": "user", "content": "What tables do we need?"},
+ {"role": "assistant", "content": "Users, Books, and ReadingStatus tables."},
+ ],
+ },
+ cast_to=object,
+ )
+ followup_input = compact_result["output"] + [{"role": "user", "content": "What ORM should I use?"}]
+ followup = responses_client.responses.create(
+ model=text_model_id,
+ input=followup_input,
+ )
+ assert len(followup.output_text) > 0
+
+ def test_compact_input_items_hides_compaction(self, responses_client, text_model_id):
+ """input_items should NOT return compaction items."""
+ compact_result = responses_client.post(
+ "/responses/compact",
+ body={
+ "model": text_model_id,
+ "input": [
+ {"role": "user", "content": "Hello"},
+ {"role": "assistant", "content": "Hi there"},
+ ],
+ },
+ cast_to=object,
+ )
+ followup = responses_client.responses.create(
+ model=text_model_id,
+ input=compact_result["output"] + [{"role": "user", "content": "How are you?"}],
+ store=True,
+ )
+ items = responses_client.responses.input_items.list(followup.id)
+ for item in items.data:
+ assert item.type != "compaction"
+
+ def test_compact_chain_through_compaction(self, responses_client, text_model_id):
+ """previous_response_id should work through compacted conversations."""
+ compact_result = responses_client.post(
+ "/responses/compact",
+ body={
+ "model": text_model_id,
+ "input": [
+ {"role": "user", "content": "Remember: the secret word is 'banana'."},
+ {"role": "assistant", "content": "Got it, I'll remember the secret word is banana."},
+ ],
+ },
+ cast_to=object,
+ )
+ resp1 = responses_client.responses.create(
+ model=text_model_id,
+ input=compact_result["output"] + [{"role": "user", "content": "What did we discuss?"}],
+ store=True,
+ )
+ resp2 = responses_client.responses.create(
+ model=text_model_id,
+ input="What was the secret word?",
+ previous_response_id=resp1.id,
+ )
+ assert "banana" in resp2.output_text.lower()
+
+ def test_compact_double_compaction(self, responses_client, text_model_id):
+ """Compacting an already-compacted conversation should work."""
+ c1 = responses_client.post(
+ "/responses/compact",
+ body={
+ "model": text_model_id,
+ "input": [
+ {"role": "user", "content": "Topic A discussion"},
+ {"role": "assistant", "content": "Response about A"},
+ ],
+ },
+ cast_to=object,
+ )
+ extended = c1["output"] + [
+ {"role": "user", "content": "Topic B discussion"},
+ {"role": "assistant", "content": "Response about B"},
+ ]
+ c2 = responses_client.post(
+ "/responses/compact",
+ body={"model": text_model_id, "input": extended},
+ cast_to=object,
+ )
+ compactions = [o for o in c2["output"] if o.get("type") == "compaction"]
+ assert len(compactions) == 1
+
+ def test_compact_error_no_input(self, responses_client, text_model_id):
+ """Compact with no input and no previous_response_id should error."""
+ import openai
+
+ with pytest.raises(openai.BadRequestError):
+ responses_client.post(
+ "/responses/compact",
+ body={"model": text_model_id},
+ cast_to=object,
+ )
+
+
+class TestContextManagement:
+ """Tests for context_management parameter on responses.create."""
+
+ @pytest.fixture(autouse=True)
+ def _skip_non_openai_client(self, responses_client):
+ if isinstance(responses_client, LlamaStackClient):
+ pytest.skip("Context management tests require OpenAI client")
+
+ def test_context_management_auto_compacts_large_input(self, responses_client, text_model_id):
+ """When input exceeds compact_threshold, context should be auto-compacted."""
+ large_input = []
+ for i in range(50):
+ large_input.append({"role": "user", "content": f"Tell me about topic number {i} in great detail."})
+ large_input.append(
+ {
+ "role": "assistant",
+ "content": f"Here is a detailed response about topic {i}. " * 20,
+ }
+ )
+ large_input.append({"role": "user", "content": "Summarize what we discussed."})
+
+ response = responses_client.responses.create(
+ model=text_model_id,
+ input=large_input,
+ context_management=[{"type": "compaction", "compact_threshold": 100}],
+ )
+ assert len(response.output_text) > 0
+
+ def test_context_management_no_compact_below_threshold(self, responses_client, text_model_id):
+ """When input is below compact_threshold, no compaction should occur."""
+ response = responses_client.responses.create(
+ model=text_model_id,
+ input=[{"role": "user", "content": "Hello!"}],
+ context_management=[{"type": "compaction", "compact_threshold": 100000}],
+ )
+ assert len(response.output_text) > 0
+
+ def test_context_management_none_does_not_compact(self, responses_client, text_model_id):
+ """Without context_management, no compaction occurs regardless of input size."""
+ response = responses_client.responses.create(
+ model=text_model_id,
+ input="Hello!",
+ )
+ assert len(response.output_text) > 0
diff --git a/uv.lock b/uv.lock
index 3929ce4bc2..87f4797984 100644
--- a/uv.lock
+++ b/uv.lock
@@ -2231,7 +2231,7 @@ requires-dist = [
{ name = "mcp", specifier = ">=1.23.0" },
{ name = "numpy", specifier = ">=2.3.2" },
{ name = "oci", specifier = ">=2.165.0" },
- { name = "openai", specifier = ">=2.5.0" },
+ { name = "openai", specifier = ">=2.30.0" },
{ name = "opentelemetry-distro", specifier = ">=0.60b1" },
{ name = "opentelemetry-exporter-otlp-proto-http", specifier = ">=1.30.0" },
{ name = "opentelemetry-sdk", specifier = ">=1.30.0" },
@@ -2386,7 +2386,7 @@ dependencies = [
requires-dist = [
{ name = "fastapi", specifier = ">=0.115.0,<1.0" },
{ name = "jsonschema" },
- { name = "openai", specifier = ">=2.5.0" },
+ { name = "openai", specifier = ">=2.30.0" },
{ name = "opentelemetry-exporter-otlp-proto-http", specifier = ">=1.30.0" },
{ name = "opentelemetry-sdk", specifier = ">=1.30.0" },
{ name = "pydantic", specifier = ">=2.11.9" },
@@ -3148,7 +3148,7 @@ wheels = [
[[package]]
name = "openai"
-version = "2.5.0"
+version = "2.30.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "anyio" },
@@ -3160,9 +3160,9 @@ dependencies = [
{ name = "tqdm" },
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/72/39/aa3767c920c217ef56f27e89cbe3aaa43dd6eea3269c95f045c5761b9df1/openai-2.5.0.tar.gz", hash = "sha256:f8fa7611f96886a0f31ac6b97e58bc0ada494b255ee2cfd51c8eb502cfcb4814", size = 590333, upload-time = "2025-10-17T18:14:47.669Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/88/15/52580c8fbc16d0675d516e8749806eda679b16de1e4434ea06fb6feaa610/openai-2.30.0.tar.gz", hash = "sha256:92f7661c990bda4b22a941806c83eabe4896c3094465030dd882a71abe80c885", size = 676084, upload-time = "2026-03-25T22:08:59.96Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/14/f3/ebbd700d8dc1e6380a7a382969d96bc0cbea8717b52fb38ff0ca2a7653e8/openai-2.5.0-py3-none-any.whl", hash = "sha256:21380e5f52a71666dbadbf322dd518bdf2b9d11ed0bb3f96bea17310302d6280", size = 999851, upload-time = "2025-10-17T18:14:45.528Z" },
+ { url = "https://files.pythonhosted.org/packages/2a/9e/5bfa2270f902d5b92ab7d41ce0475b8630572e71e349b2a4996d14bdda93/openai-2.30.0-py3-none-any.whl", hash = "sha256:9a5ae616888eb2748ec5e0c5b955a51592e0b201a11f4262db920f2a78c5231d", size = 1146656, upload-time = "2026-03-25T22:08:58.2Z" },
]
[[package]]