From cd27de573bb3186b63e487cce289140a9f862bab Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Fri, 26 Sep 2025 17:15:51 -0400 Subject: [PATCH] chore: recordings for fireworks (inference + openai) recorded for: ./scripts/integration-tests.sh --stack-config server:ci-tests --suite base --setup fireworks --subdirs inference --pattern openai --- .../remote/inference/fireworks/fireworks.py | 1 + .../recordings/responses/1c0a34fa2e0c.json | 31 + .../recordings/responses/235c36771a8a.json | 4743 ++++++ .../recordings/responses/24e106063719.json | 31 + .../recordings/responses/25649d730247.json | 316 + .../recordings/responses/651af76045af.json | 550 + .../recordings/responses/7eace23f03df.json | 7926 ++++++++++ .../recordings/responses/88ce59013228.json | 56 + .../recordings/responses/8cdb7e65fcfe.json | 39 + .../recordings/responses/901b5e7db4aa.json | 56 + .../recordings/responses/969a9a757e0c.json | 74 + .../recordings/responses/9c1a4c5336a7.json | 4135 ++++++ .../recordings/responses/aa745b14fe67.json | 12345 ++++++++++++++++ .../recordings/responses/ca332c91adee.json | 4135 ++++++ .../recordings/responses/d10fc0f9ac66.json | 4135 ++++++ .../recordings/responses/d45ca9107508.json | 43 + .../recordings/responses/e22f98c05933.json | 1077 ++ .../recordings/responses/e4daa5642f6e.json | 56 + .../recordings/responses/e99f14805360.json | 706 + .../recordings/responses/f3cbd3f07e60.json | 996 ++ .../recordings/responses/f6469c4656dd.json | 4135 ++++++ .../recordings/responses/f701ad342bd8.json | 56 + .../models-7d9446738fd7-d5d684a3.json | 527 + tests/integration/suites.py | 5 +- 24 files changed, 46171 insertions(+), 3 deletions(-) create mode 100644 tests/integration/recordings/responses/1c0a34fa2e0c.json create mode 100644 tests/integration/recordings/responses/235c36771a8a.json create mode 100644 tests/integration/recordings/responses/24e106063719.json create mode 100644 tests/integration/recordings/responses/25649d730247.json create mode 100644 tests/integration/recordings/responses/651af76045af.json create mode 100644 tests/integration/recordings/responses/7eace23f03df.json create mode 100644 tests/integration/recordings/responses/88ce59013228.json create mode 100644 tests/integration/recordings/responses/8cdb7e65fcfe.json create mode 100644 tests/integration/recordings/responses/901b5e7db4aa.json create mode 100644 tests/integration/recordings/responses/969a9a757e0c.json create mode 100644 tests/integration/recordings/responses/9c1a4c5336a7.json create mode 100644 tests/integration/recordings/responses/aa745b14fe67.json create mode 100644 tests/integration/recordings/responses/ca332c91adee.json create mode 100644 tests/integration/recordings/responses/d10fc0f9ac66.json create mode 100644 tests/integration/recordings/responses/d45ca9107508.json create mode 100644 tests/integration/recordings/responses/e22f98c05933.json create mode 100644 tests/integration/recordings/responses/e4daa5642f6e.json create mode 100644 tests/integration/recordings/responses/e99f14805360.json create mode 100644 tests/integration/recordings/responses/f3cbd3f07e60.json create mode 100644 tests/integration/recordings/responses/f6469c4656dd.json create mode 100644 tests/integration/recordings/responses/f701ad342bd8.json create mode 100644 tests/integration/recordings/responses/models-7d9446738fd7-d5d684a3.json diff --git a/llama_stack/providers/remote/inference/fireworks/fireworks.py b/llama_stack/providers/remote/inference/fireworks/fireworks.py index 1025bfb53..069a0a674 100644 --- a/llama_stack/providers/remote/inference/fireworks/fireworks.py +++ b/llama_stack/providers/remote/inference/fireworks/fireworks.py @@ -61,6 +61,7 @@ logger = get_logger(name=__name__, category="inference::fireworks") class FireworksInferenceAdapter(OpenAIMixin, ModelRegistryHelper, Inference, NeedsRequestProviderData): embedding_model_metadata = { "nomic-ai/nomic-embed-text-v1.5": {"embedding_dimension": 768, "context_length": 8192}, + "accounts/fireworks/models/qwen3-embedding-8b": {"embedding_dimension": 4096, "context_length": 40960}, } def __init__(self, config: FireworksImplConfig) -> None: diff --git a/tests/integration/recordings/responses/1c0a34fa2e0c.json b/tests/integration/recordings/responses/1c0a34fa2e0c.json new file mode 100644 index 000000000..5edf0b45b --- /dev/null +++ b/tests/integration/recordings/responses/1c0a34fa2e0c.json @@ -0,0 +1,31 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": [], + "encoding_format": "float" + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 0, + "total_tokens": 0, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/235c36771a8a.json b/tests/integration/recordings/responses/235c36771a8a.json new file mode 100644 index 000000000..7f1e79939 --- /dev/null +++ b/tests/integration/recordings/responses/235c36771a8a.json @@ -0,0 +1,4743 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "What's the name of the Sun in latin?" + } + ], + "n": 2, + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "The Latin", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "The Latin", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " name", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " name", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " This", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " This", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " also", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " also", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " source", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " origin", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " English", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " word", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " word", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "s", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "s", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "olar", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "olar", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " in", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " and", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " English", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " chemical", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " which", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " symbol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " means", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " related", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " gold", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " which", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ".\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "In", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "Au", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " fact", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "from", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Latin", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " word", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Latin", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "A", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "urum", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " also", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " meaning", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " gold", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " source", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " but", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " many", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " also", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " other", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " related", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " languages", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "'", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " words", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " as", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " ancient", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " such", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Romans", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " as", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " associated", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Spanish", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " gold", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " French", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ").\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "In", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "sole", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Latin", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "il", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Italian", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " word", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "sole", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " and", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Portuguese", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " also", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " name", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "\".\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "So", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Roman", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " there", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " god", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " have", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " it", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": "!", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 166, + "prompt_tokens": 20, + "total_tokens": 186, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " who", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " was", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " often", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " depicted", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " as", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " handsome", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " young", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " man", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " radiant", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": " aura", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "aeb20797-8c73-475f-a540-c639d47b8ade", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 1, + "logprobs": null + } + ], + "created": 1758920390, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 181, + "prompt_tokens": 20, + "total_tokens": 201, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/24e106063719.json b/tests/integration/recordings/responses/24e106063719.json new file mode 100644 index 000000000..2420334ae --- /dev/null +++ b/tests/integration/recordings/responses/24e106063719.json @@ -0,0 +1,31 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": [], + "encoding_format": "base64" + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 0, + "total_tokens": 0, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/25649d730247.json b/tests/integration/recordings/responses/25649d730247.json new file mode 100644 index 000000000..bbb526ef2 --- /dev/null +++ b/tests/integration/recordings/responses/25649d730247.json @@ -0,0 +1,316 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "What's the name of the Sun in latin?" + } + ], + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": "The Latin", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": " name", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": "\".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "3745da23-2db2-45a1-8ea5-2a09bbdb6a33", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1758920389, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 11, + "prompt_tokens": 20, + "total_tokens": 31, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/651af76045af.json b/tests/integration/recordings/responses/651af76045af.json new file mode 100644 index 000000000..8d4851f72 --- /dev/null +++ b/tests/integration/recordings/responses/651af76045af.json @@ -0,0 +1,550 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "What is the name of the US captial?" + } + ], + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": "The name", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " US", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " capital", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " Washington", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " D", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": ".C", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": "short", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " District", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": " Columbia", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": ").", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "f72b5be3-a677-4c38-b6ae-8c7e5cc4bf29", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1758920398, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 20, + "prompt_tokens": 20, + "total_tokens": 40, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/7eace23f03df.json b/tests/integration/recordings/responses/7eace23f03df.json new file mode 100644 index 000000000..d0988e6c6 --- /dev/null +++ b/tests/integration/recordings/responses/7eace23f03df.json @@ -0,0 +1,7926 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "What's the weather in Tokyo? Use the get_weather function to get the weather." + } + ], + "stream": true, + "tools": [ + { + "type": "function", + "function": { + "name": "get_weather", + "description": "Get the weather in a given city", + "parameters": { + "type": "object", + "properties": { + "city": { + "type": "string", + "description": "The city to get the weather for" + } + } + } + } + } + ] + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "It seems", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " like", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "'re", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " asking", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " programming", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "-related", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " task", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " but", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " I", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "'m", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " large", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " language", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " model", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " I", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " don", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "'t", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " have", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ability", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " execute", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " code", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " or", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " access", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " external", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " functions", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " However", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " I", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " can", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " guide", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " through", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " high", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "-level", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " example", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " how", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " might", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " use", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " function", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " called", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " `", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "get", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "`", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " retrieve", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " in", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " Tokyo", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Here", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "'s", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " an", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " example", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " in", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " Python", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " using", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " Open", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Map", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " API", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ":\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "```", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "python", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "import", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " requests", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "def", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " get", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "(city", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "):\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " api", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_key", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " =", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "YOUR", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_OPEN", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "WE", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "ATHER", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "MAP", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_API", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_KEY", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " base", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_url", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " =", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "http", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "://", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "api", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".open", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "weathermap", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".org", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "/data", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "/", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "2", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "5", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "/weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " params", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " =", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " {\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "q", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\":", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " city", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "appid", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\":", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " api", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_key", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "units", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\":", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "metric", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " }\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " response", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " =", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " requests", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".get", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "(base", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_url", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " params", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "=params", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ")\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_data", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " =", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " response", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".json", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "()\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " return", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_data", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "city", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " =", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Tok", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "yo", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " =", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " get", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "(city", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ")\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "print", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "(f", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"We", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "ather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " in", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " {", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "city", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "}:", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\")\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "print", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "(f", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Description", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ":", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " {", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "['", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "'][", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "0", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "]['", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "description", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "']", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "}\")\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "print", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "(f", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Temperature", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ":", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " {", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "['", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "main", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "']['", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "temp", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "']}", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\u00b0", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "C", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\")\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "print", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "(f", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"H", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "umidity", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ":", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " {", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "['", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "main", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "']['", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "humidity", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "']}", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "%", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\")\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "``", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "`\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Please", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " replace", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " `\"", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "YOUR", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_OPEN", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "WE", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "ATHER", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "MAP", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_API", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "_KEY", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "\"`", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " your", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " actual", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " Open", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Weather", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "Map", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " API", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " key", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " This", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " example", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " assumes", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " have", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " `", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "requests", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "`", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " library", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " installed", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " If", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " not", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " can", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " install", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " it", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " pip", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ":", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " `", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "pip", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " install", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " requests", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "`.\n\n", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": "This", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " basic", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " example", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " and", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " might", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " need", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " adjust", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " it", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " according", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " your", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " specific", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": " requirements", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "cb32a1ce-eaaa-45c0-b330-ab7641154d99", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1758920359, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 303, + "prompt_tokens": 27, + "total_tokens": 330, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/88ce59013228.json b/tests/integration/recordings/responses/88ce59013228.json new file mode 100644 index 000000000..5e59d9e64 --- /dev/null +++ b/tests/integration/recordings/responses/88ce59013228.json @@ -0,0 +1,56 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": "Test dimensions parameter", + "encoding_format": "float", + "dimensions": 16 + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [ + { + "embedding": [ + -0.9296875, + 5.1875, + -2.140625, + 0.171875, + -2.25, + -0.8359375, + -0.828125, + 1.15625, + 2.328125, + -1.0078125, + -3.0, + 4.09375, + 0.8359375, + 0.1015625, + 2.015625, + -1.0859375 + ], + "index": 0, + "object": "embedding", + "raw_output": null + } + ], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 5, + "total_tokens": 5, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/8cdb7e65fcfe.json b/tests/integration/recordings/responses/8cdb7e65fcfe.json new file mode 100644 index 000000000..7d9057833 --- /dev/null +++ b/tests/integration/recordings/responses/8cdb7e65fcfe.json @@ -0,0 +1,39 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": "Test dimensions parameter", + "encoding_format": "base64", + "dimensions": 16 + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [ + { + "embedding": "AABuvwAApkAAAAnAAAAwPgAAEMAAAFa/AABUvwAAlD8AABVAAACBvwAAQMAAAINAAABWPwAA0D0AAAFAAACLvw==", + "index": 0, + "object": "embedding", + "raw_output": null + } + ], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 5, + "total_tokens": 5, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/901b5e7db4aa.json b/tests/integration/recordings/responses/901b5e7db4aa.json new file mode 100644 index 000000000..fe1ce6e4f --- /dev/null +++ b/tests/integration/recordings/responses/901b5e7db4aa.json @@ -0,0 +1,56 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "Hello, world!" + } + ], + "stream": false + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "1d64ff81-b7c4-40c6-9509-cca71759da3e", + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "Hello! It's nice to meet you. Is there something I can help you with, or would you like to chat?", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": null + } + } + ], + "created": 1758920401, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 26, + "prompt_tokens": 14, + "total_tokens": 40, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/969a9a757e0c.json b/tests/integration/recordings/responses/969a9a757e0c.json new file mode 100644 index 000000000..d1ef853d7 --- /dev/null +++ b/tests/integration/recordings/responses/969a9a757e0c.json @@ -0,0 +1,74 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "What's the weather in Tokyo? Use the get_weather function to get the weather." + } + ], + "stream": false, + "tools": [ + { + "type": "function", + "function": { + "name": "get_weather", + "description": "Get the weather in a given city", + "parameters": { + "type": "object", + "properties": { + "city": { + "type": "string", + "description": "The city to get the weather for" + } + } + } + } + } + ] + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "0fe94e7d-f25b-4843-ba0a-e402e0764830", + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "I can\u2019t help with that. If you're looking for current weather information, I recommend checking a weather website or app, such as AccuWeather or Weather.com. Is there anything else I can help you with?", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": null + } + } + ], + "created": 1758920402, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 45, + "prompt_tokens": 27, + "total_tokens": 72, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/9c1a4c5336a7.json b/tests/integration/recordings/responses/9c1a4c5336a7.json new file mode 100644 index 000000000..b1b35ee58 --- /dev/null +++ b/tests/integration/recordings/responses/9c1a4c5336a7.json @@ -0,0 +1,4135 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": "This is completely different content", + "encoding_format": "float" + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [ + { + "embedding": [ + 1.6171875, + 1.1953125, + -3.0, + -1.3671875, + 4.78125, + 0.86328125, + -2.25, + 1.2421875, + -2.734375, + -0.6640625, + -3.796875, + 1.484375, + 8.125, + 0.8125, + 2.0625, + -0.177734375, + -1.6953125, + 4.40625, + 2.328125, + 4.78125, + -1.3046875, + 1.7265625, + -0.1787109375, + -2.140625, + 0.98828125, + 4.875, + -3.625, + -0.5, + 1.9609375, + 2.25, + -1.109375, + 1.828125, + 1.0546875, + 3.3125, + -3.1875, + 2.28125, + 1.0234375, + -3.71875, + 3.46875, + -0.64453125, + -0.470703125, + -0.53515625, + 1.21875, + 0.2373046875, + 0.94921875, + -1.46875, + -1.15625, + -2.09375, + 3.453125, + -0.72265625, + 2.765625, + -3.6875, + 0.322265625, + -0.8515625, + -0.279296875, + 2.96875, + -0.86328125, + 1.84375, + -2.28125, + 0.392578125, + -5.59375, + 1.078125, + 1.6015625, + -0.333984375, + -1.078125, + 2.078125, + 0.7890625, + -1.4296875, + 1.46875, + -2.609375, + -0.98828125, + 0.5546875, + 1.53125, + 4.125, + 3.15625, + -8.8125, + -4.5625, + -3.546875, + 1.25, + 0.9765625, + 2.09375, + -1.8984375, + -1.234375, + -1.8984375, + -2.8125, + -0.69921875, + -0.55078125, + -0.765625, + 0.5390625, + -1.703125, + 0.365234375, + -0.1552734375, + 0.8515625, + 2.421875, + -0.0096435546875, + 1.484375, + -0.10302734375, + -2.46875, + -3.890625, + 0.1533203125, + 2.15625, + 5.21875, + -0.671875, + 1.71875, + -0.396484375, + -1.4921875, + -2.90625, + -0.443359375, + -2.78125, + 0.53515625, + 0.1318359375, + 0.359375, + 3.828125, + 0.08984375, + -2.71875, + 0.318359375, + 0.51953125, + 0.8671875, + 0.1181640625, + 3.71875, + 1.859375, + -1.7890625, + -4.53125, + -0.11767578125, + 3.78125, + -3.453125, + 0.3046875, + -1.7109375, + -1.0625, + 2.71875, + 2.453125, + -3.0, + 0.341796875, + 2.703125, + 0.326171875, + 0.9140625, + 0.1298828125, + 0.080078125, + -0.83984375, + 0.3515625, + 0.09716796875, + -1.15625, + 1.90625, + 0.0830078125, + -2.28125, + 4.90625, + -1.7578125, + 3.375, + 2.046875, + 2.875, + -0.72265625, + -2.109375, + -2.359375, + -1.7890625, + -1.859375, + -0.32421875, + -2.171875, + 2.109375, + 2.25, + 0.322265625, + -1.15625, + 1.796875, + 0.359375, + -1.3046875, + 1.0703125, + -2.65625, + 1.953125, + -1.5859375, + 3.265625, + 0.74609375, + -0.455078125, + 0.44921875, + 4.53125, + 0.86328125, + -1.0390625, + 1.078125, + 1.1484375, + -1.5625, + 0.2109375, + 3.140625, + -1.09375, + 1.0625, + -0.25, + 2.21875, + -0.474609375, + 3.515625, + -4.09375, + 0.00885009765625, + 0.5546875, + 0.404296875, + 1.6875, + -0.265625, + -0.89453125, + -1.2734375, + -1.875, + 1.890625, + -0.435546875, + 2.796875, + 0.294921875, + -2.96875, + 5.53125, + -8.3125, + 0.3046875, + 1.1484375, + -3.46875, + -2.328125, + -1.1953125, + 1.984375, + 0.09130859375, + -3.734375, + -0.039306640625, + -2.75, + 1.3828125, + -0.034423828125, + 2.46875, + -2.296875, + 0.98046875, + -0.27734375, + -1.84375, + -0.04833984375, + -0.447265625, + -0.13671875, + 1.59375, + 1.8203125, + -1.8046875, + -0.953125, + -0.1572265625, + -3.546875, + -1.375, + -3.296875, + 3.6875, + -4.1875, + -0.51953125, + -1.2421875, + 2.234375, + -4.15625, + -0.66015625, + -1.109375, + -1.015625, + 0.1484375, + 2.3125, + 3.765625, + 0.08544921875, + -3.78125, + -0.73828125, + 0.376953125, + 2.96875, + -2.921875, + 2.96875, + -2.15625, + -1.0078125, + -1.015625, + -1.703125, + 0.470703125, + -2.1875, + -3.015625, + 0.51171875, + 0.318359375, + -0.10986328125, + 0.51953125, + -1.2578125, + -4.1875, + -0.1279296875, + 1.9296875, + -3.0625, + 1.7109375, + -1.890625, + -3.90625, + -0.828125, + 1.078125, + 0.0306396484375, + -3.6875, + -2.59375, + 1.8828125, + 1.6015625, + -0.74609375, + 3.34375, + -1.109375, + -1.90625, + -1.4765625, + 1.4296875, + -0.498046875, + 1.828125, + -3.15625, + 0.171875, + -1.3046875, + 0.01470947265625, + 2.125, + -1.1015625, + 0.69140625, + 0.490234375, + 2.578125, + 0.7109375, + 1.9765625, + 0.41796875, + 2.515625, + -1.375, + -3.140625, + -1.9609375, + -0.185546875, + 0.1923828125, + 3.015625, + -1.0, + 3.28125, + 0.94921875, + 0.625, + -0.212890625, + 3.765625, + 0.396484375, + -0.80078125, + -1.8515625, + -2.109375, + 0.7265625, + -1.3203125, + -0.40234375, + -0.55078125, + 1.203125, + -1.890625, + -2.3125, + 2.703125, + -1.6875, + -1.0234375, + -2.46875, + -1.265625, + 0.326171875, + 1.4453125, + -0.81640625, + -0.87890625, + -2.421875, + -0.6796875, + -0.388671875, + -0.6953125, + -4.4375, + 2.234375, + -1.234375, + 1.7421875, + 0.208984375, + -0.6328125, + 3.5, + -0.259765625, + -0.060302734375, + -2.9375, + 2.40625, + -0.2392578125, + -0.328125, + -0.1357421875, + 3.09375, + -2.203125, + -0.92578125, + -0.0147705078125, + -1.0078125, + 2.640625, + 4.5, + 0.234375, + -0.134765625, + -1.0390625, + -3.140625, + 0.228515625, + -0.796875, + -1.8671875, + -0.373046875, + 1.4609375, + 0.451171875, + -3.53125, + -0.16796875, + 1.453125, + 1.6171875, + 0.2001953125, + -3.40625, + 0.74609375, + -2.46875, + 0.5390625, + -0.81640625, + -3.125, + -2.375, + -1.28125, + -1.296875, + -3.75, + -0.94140625, + -0.9140625, + 1.609375, + -7.65625, + 0.255859375, + 1.765625, + -1.5, + 4.8125, + -2.734375, + 0.625, + 0.2119140625, + 3.1875, + -1.1953125, + -2.953125, + 0.01031494140625, + 0.158203125, + -2.015625, + -1.328125, + -0.431640625, + -2.515625, + -4.9375, + -0.474609375, + 3.796875, + 2.328125, + -0.58203125, + 2.640625, + -0.77734375, + 1.1875, + -1.859375, + 0.62890625, + -1.4296875, + 3.890625, + -1.390625, + 1.1796875, + -0.01953125, + 0.2421875, + 0.123046875, + 1.5625, + 3.671875, + 6.1875, + -2.203125, + -0.59375, + 0.421875, + 3.9375, + 0.74609375, + -1.40625, + -1.546875, + -1.828125, + 3.359375, + 3.90625, + 2.609375, + -1.0, + -1.3359375, + -1.3359375, + -2.265625, + 2.15625, + -1.109375, + -4.34375, + 1.8984375, + -0.4921875, + 1.9921875, + -2.203125, + 1.84375, + 2.296875, + -0.5859375, + 3.015625, + 0.34765625, + 0.984375, + -2.265625, + -1.1640625, + -3.03125, + 1.984375, + 0.7265625, + 1.6328125, + -2.671875, + 0.365234375, + -3.59375, + 0.1630859375, + -0.0098876953125, + 0.138671875, + 0.71484375, + 0.953125, + 2.140625, + -1.5234375, + 2.046875, + -0.390625, + -0.59765625, + 1.2890625, + 5.15625, + -0.4296875, + -2.375, + -0.4453125, + -0.53125, + 0.26171875, + -1.296875, + -3.46875, + 0.1875, + 2.75, + 0.466796875, + -1.3046875, + 1.8125, + -0.314453125, + -2.46875, + -4.6875, + -1.3203125, + -2.765625, + 1.5, + 3.515625, + 0.69921875, + -0.515625, + -1.75, + 2.375, + -1.9140625, + -0.3671875, + 1.171875, + -1.4765625, + 0.98046875, + -0.890625, + 2.3125, + 0.5390625, + 1.4140625, + -0.26171875, + 0.275390625, + -2.125, + -2.6875, + -0.640625, + -1.9765625, + -0.640625, + 0.92578125, + 2.328125, + -1.609375, + -0.2138671875, + 0.1181640625, + -2.59375, + -1.5, + 0.4140625, + -2.71875, + -1.0625, + -0.275390625, + 0.314453125, + 0.64453125, + 3.171875, + -1.984375, + -1.53125, + -1.203125, + -3.6875, + -0.41796875, + 0.7265625, + 1.546875, + 0.6171875, + -0.423828125, + -2.265625, + -2.1875, + 1.0234375, + 0.478515625, + -1.9296875, + -4.0, + 0.02001953125, + -0.44921875, + 0.828125, + 1.9140625, + -0.4609375, + -0.462890625, + 2.125, + -1.671875, + 0.80859375, + -0.416015625, + 6.53125, + -0.74609375, + -1.3671875, + -0.2080078125, + 2.234375, + 0.59765625, + 1.28125, + 3.375, + -0.6484375, + -1.828125, + 0.4921875, + -2.734375, + -0.62890625, + 0.65234375, + 1.09375, + 3.9375, + 0.8203125, + -3.890625, + 0.2578125, + -3.703125, + -0.205078125, + 0.671875, + 0.283203125, + 1.515625, + 0.41796875, + -2.4375, + 0.6875, + -0.051025390625, + 1.671875, + 1.6171875, + 0.84375, + -1.1328125, + 3.484375, + -1.84375, + -1.3984375, + -1.84375, + -0.78515625, + 0.3125, + 0.84375, + 2.09375, + -3.65625, + -2.84375, + -1.3046875, + 0.36328125, + -2.78125, + -1.1484375, + 0.0458984375, + 0.99609375, + -4.6875, + -3.09375, + 1.9375, + 1.9609375, + -3.015625, + -0.419921875, + 1.5390625, + 0.2890625, + -1.15625, + 0.6875, + -1.1640625, + -0.03466796875, + 3.234375, + -1.828125, + -2.15625, + 4.3125, + -0.361328125, + 2.28125, + 2.671875, + 0.34765625, + 1.359375, + -2.65625, + 2.859375, + 0.02001953125, + -1.953125, + 1.1796875, + 3.015625, + -0.4296875, + -1.5546875, + 0.328125, + -1.1640625, + 2.015625, + 2.203125, + -0.05029296875, + 1.9921875, + -1.5625, + -0.8828125, + 0.51171875, + 0.458984375, + -0.353515625, + -4.96875, + -3.203125, + 3.5625, + 3.671875, + -0.6796875, + -2.546875, + 2.09375, + 4.84375, + -1.2890625, + 1.1171875, + 1.5859375, + -0.009033203125, + 1.046875, + -0.80078125, + 1.609375, + -2.46875, + 2.53125, + 0.6484375, + -1.8984375, + 2.671875, + -2.6875, + 3.125, + -5.59375, + 2.0625, + -0.5, + -3.5, + -0.330078125, + -0.291015625, + 0.072265625, + -0.57421875, + 0.3046875, + 1.0, + -1.875, + 0.2041015625, + 1.4609375, + 0.2490234375, + -3.75, + -2.34375, + -1.0078125, + 0.06396484375, + -1.9453125, + 0.64453125, + -0.357421875, + 2.703125, + 0.0859375, + 2.75, + -1.109375, + 2.75, + -1.359375, + -3.765625, + 0.2490234375, + 0.0081787109375, + -1.1328125, + -1.0078125, + 2.4375, + 2.875, + -0.361328125, + 2.484375, + -0.1796875, + -0.283203125, + -2.8125, + 2.53125, + 2.96875, + 0.5625, + -1.4609375, + 0.78515625, + -1.046875, + 2.59375, + 2.828125, + -2.75, + -4.0625, + -1.5078125, + -0.93359375, + -1.7109375, + 1.1015625, + -4.21875, + -0.6171875, + -2.375, + 1.609375, + -0.099609375, + 0.306640625, + -3.296875, + -3.75, + 0.41015625, + -0.5625, + -2.890625, + -2.078125, + 4.59375, + -0.2138671875, + -2.90625, + -0.625, + -3.21875, + 0.4765625, + 3.484375, + 1.859375, + 2.71875, + -4.09375, + -2.234375, + 2.0625, + -1.2734375, + 1.3671875, + -2.609375, + 0.123046875, + 4.9375, + 1.28125, + -0.087890625, + -3.828125, + 0.75390625, + -0.94140625, + -0.443359375, + 1.9765625, + -2.109375, + 2.03125, + 1.5859375, + 1.453125, + 1.96875, + -1.2265625, + 1.703125, + 1.5625, + -0.49609375, + 0.024658203125, + 2.40625, + 3.390625, + -0.80859375, + 2.109375, + 1.09375, + 1.546875, + -3.875, + 2.359375, + -0.765625, + 1.875, + 2.515625, + 1.5234375, + 0.1669921875, + -0.376953125, + 1.234375, + -2.515625, + 2.296875, + -2.515625, + 0.87109375, + 3.046875, + 1.4453125, + 0.6640625, + -0.58203125, + 2.15625, + -1.25, + 0.291015625, + 0.515625, + -1.71875, + 3.171875, + 2.890625, + -2.515625, + 2.890625, + -2.359375, + -1.828125, + -1.8203125, + 2.71875, + -2.640625, + -0.048828125, + 4.15625, + 0.279296875, + 1.921875, + -2.859375, + -0.578125, + -2.03125, + 0.203125, + 0.890625, + -1.1015625, + 2.171875, + -0.71484375, + 0.75390625, + -0.0228271484375, + 1.0390625, + -0.69921875, + -0.59765625, + 2.453125, + 2.90625, + -3.546875, + 4.875, + -0.46875, + 1.6640625, + -1.328125, + -1.265625, + -0.1884765625, + -2.734375, + -0.205078125, + -1.65625, + 0.94140625, + 0.94140625, + 3.34375, + 0.3203125, + -1.2109375, + 1.5625, + -0.82421875, + 1.609375, + -0.8125, + 1.8671875, + -1.2734375, + -3.640625, + -2.9375, + 0.9765625, + -1.3828125, + -0.9921875, + 3.4375, + 2.203125, + 0.83203125, + 2.125, + -0.66015625, + -3.296875, + -0.375, + 0.37890625, + -0.82421875, + -0.61328125, + -1.6640625, + 1.1484375, + -0.18359375, + 2.203125, + 0.875, + -1.7578125, + 0.4375, + -0.30078125, + -0.435546875, + 4.40625, + 1.3046875, + -0.388671875, + -3.265625, + 1.6640625, + -2.375, + -0.5390625, + 1.8828125, + -1.1015625, + -1.8203125, + -0.4609375, + -2.90625, + -0.63671875, + -1.2109375, + -1.1484375, + 0.0, + -3.453125, + -2.0625, + -2.1875, + -1.0546875, + -0.2021484375, + -5.875, + 1.328125, + 1.03125, + -2.5625, + -1.140625, + 1.3125, + 1.21875, + 1.8671875, + 1.046875, + 2.1875, + -2.046875, + -5.78125, + 0.1572265625, + 0.64453125, + 6.09375, + -1.8515625, + -0.94921875, + -0.412109375, + 0.5234375, + 4.9375, + -3.078125, + -0.9375, + 0.9375, + 0.6328125, + -0.98046875, + 2.953125, + -1.0234375, + 0.353515625, + -0.054443359375, + 4.5625, + 0.640625, + -0.70703125, + 2.8125, + -2.09375, + 2.59375, + -2.59375, + 0.6796875, + 0.251953125, + -1.6953125, + 0.80859375, + 1.0546875, + 0.50390625, + 2.1875, + 0.24609375, + -0.5859375, + -0.28125, + 2.390625, + -0.251953125, + 3.328125, + -0.380859375, + -1.4375, + 1.2109375, + -2.671875, + -1.5859375, + -2.25, + -0.859375, + -0.349609375, + 0.0693359375, + 1.0859375, + -1.4453125, + 1.5234375, + -1.640625, + 0.578125, + -0.82421875, + -1.953125, + -2.140625, + 0.2578125, + 0.451171875, + -1.03125, + -3.234375, + -1.8671875, + -1.5703125, + -0.73046875, + -0.75390625, + 0.353515625, + -4.4375, + -3.484375, + 3.015625, + 3.015625, + -2.40625, + 0.25, + 1.7265625, + 1.7734375, + 1.09375, + -0.6328125, + 0.86328125, + 1.71875, + -2.75, + 3.9375, + 0.4296875, + -0.1328125, + 0.9296875, + -4.34375, + 0.35546875, + 1.046875, + -0.82421875, + -1.1171875, + 1.53125, + -0.28125, + -0.236328125, + 1.984375, + 3.734375, + -2.21875, + -0.126953125, + -1.3984375, + 0.482421875, + -0.291015625, + 0.59765625, + 2.015625, + 6.125, + -1.5859375, + -1.515625, + -3.796875, + 5.53125, + 1.390625, + -0.80859375, + -0.578125, + 3.015625, + 4.125, + -0.205078125, + 3.40625, + -0.138671875, + 0.6171875, + -0.6640625, + 1.0703125, + 2.78125, + -0.1904296875, + -2.328125, + 0.453125, + -2.59375, + -2.65625, + -1.4375, + 0.8671875, + -0.15625, + -0.2373046875, + 3.234375, + 0.7890625, + 3.59375, + -1.5078125, + -0.359375, + -1.0390625, + 0.51171875, + -0.4296875, + 0.73828125, + -1.078125, + 0.07080078125, + -0.07666015625, + 1.5390625, + 0.6015625, + 3.015625, + 0.9453125, + 0.609375, + 1.9609375, + -0.99609375, + -1.1484375, + 3.21875, + -0.130859375, + -0.625, + -1.4375, + -1.03125, + -0.7734375, + -1.421875, + 8.125, + 0.123046875, + -0.486328125, + 1.6328125, + 0.66015625, + 0.275390625, + 1.03125, + 0.2109375, + 0.71875, + 0.072265625, + -1.578125, + 1.1015625, + 0.67578125, + 4.15625, + -2.109375, + -0.1123046875, + 1.109375, + 1.515625, + 1.734375, + 2.734375, + -1.078125, + -2.71875, + 1.21875, + 1.609375, + 3.75, + -2.734375, + -1.296875, + -1.3046875, + 1.609375, + -7.0, + -0.6953125, + 0.9296875, + -1.2265625, + 1.609375, + -1.1484375, + -1.1484375, + -1.7265625, + -2.078125, + -0.423828125, + -2.203125, + 0.0, + -3.671875, + -0.306640625, + -3.1875, + -3.171875, + -1.1796875, + -0.2578125, + 1.59375, + 2.859375, + 1.6015625, + 2.25, + 1.203125, + 1.25, + -2.03125, + 3.59375, + 2.0625, + 0.09130859375, + 1.625, + 4.0, + -0.91796875, + 2.9375, + 2.3125, + 0.83984375, + -0.4453125, + -0.427734375, + -1.25, + -3.9375, + 1.9921875, + 1.1796875, + -0.703125, + 0.15625, + -0.75390625, + 0.423828125, + -0.55859375, + 2.875, + -1.3046875, + 1.8046875, + 0.8125, + 3.59375, + -2.453125, + 1.96875, + -1.484375, + -1.109375, + 0.59375, + -0.0093994140625, + -1.28125, + -0.8359375, + -0.73046875, + -0.95703125, + 0.5546875, + -0.6796875, + -3.4375, + -0.46875, + -0.1474609375, + -0.8359375, + 4.0625, + 6.125, + 0.6484375, + 2.578125, + 1.8828125, + 1.9140625, + -0.263671875, + 0.376953125, + 0.87890625, + -0.1240234375, + 1.125, + -6.46875, + 1.8984375, + -1.2578125, + -1.7890625, + -0.65234375, + -1.984375, + -0.24609375, + 3.28125, + -0.298828125, + 0.27734375, + 1.953125, + 0.07177734375, + 1.375, + -2.140625, + -0.3984375, + 0.640625, + -0.59765625, + -0.169921875, + 1.6875, + 0.33984375, + -0.1787109375, + 3.125, + -0.859375, + 0.6171875, + 0.0654296875, + -0.349609375, + -2.5, + -0.6875, + 1.2578125, + 0.6796875, + 1.7890625, + -1.5546875, + 1.75, + -0.4140625, + -0.08837890625, + 2.515625, + 0.28515625, + 0.271484375, + -4.0625, + 2.1875, + 0.8671875, + -1.34375, + -1.3046875, + -2.0, + 0.06396484375, + -0.88671875, + -2.296875, + -0.5234375, + -0.212890625, + -0.8828125, + 0.703125, + 0.640625, + 3.21875, + -2.53125, + 1.28125, + 1.4453125, + 1.3671875, + -0.13671875, + -1.109375, + 0.0162353515625, + -0.01019287109375, + -2.21875, + 1.8046875, + 1.03125, + -0.0859375, + -2.96875, + -0.59375, + 1.6171875, + 0.251953125, + -3.390625, + -3.34375, + -1.125, + -0.466796875, + -0.51953125, + -1.6875, + -1.6796875, + 3.015625, + 0.58203125, + -4.28125, + -0.75, + 0.80859375, + -1.359375, + -0.259765625, + 1.6953125, + 1.03125, + 0.89453125, + 0.126953125, + 0.408203125, + 1.3046875, + 1.1953125, + 2.1875, + 1.25, + -0.1455078125, + 0.46484375, + -1.109375, + -0.7265625, + 0.0888671875, + -3.78125, + -0.80859375, + 1.9140625, + -4.40625, + -0.73828125, + 2.3125, + -0.177734375, + -1.09375, + -3.3125, + -1.578125, + 1.5546875, + 0.138671875, + -1.21875, + -0.7734375, + 1.984375, + 0.52734375, + 0.375, + 0.55078125, + 0.8828125, + 0.203125, + 0.038330078125, + 1.8828125, + -1.03125, + 1.0078125, + 0.51171875, + -2.125, + -2.28125, + -1.0078125, + -2.0, + 3.75, + 2.296875, + -1.6640625, + -2.203125, + 0.7578125, + -0.0301513671875, + 0.35546875, + 0.578125, + -2.03125, + -2.6875, + 0.640625, + -0.19921875, + -2.953125, + 0.064453125, + 1.6171875, + -0.248046875, + 2.75, + 0.053955078125, + 2.609375, + -0.79296875, + -1.0234375, + -0.94921875, + -1.40625, + -0.890625, + 1.8359375, + -2.59375, + 0.32421875, + 2.734375, + 1.4375, + 3.125, + 3.875, + 1.78125, + -4.46875, + -0.546875, + -0.3515625, + 0.8515625, + 1.34375, + -1.140625, + -0.70703125, + -0.57421875, + -0.90234375, + 1.8984375, + -3.984375, + 0.09814453125, + -2.703125, + 0.412109375, + -0.50390625, + 0.11328125, + 1.796875, + 0.380859375, + 0.1962890625, + -1.390625, + 0.4921875, + 1.0703125, + -0.609375, + 1.953125, + 2.015625, + 1.3671875, + -0.3515625, + 0.52734375, + 1.03125, + 2.640625, + -3.59375, + 2.171875, + -4.28125, + -2.46875, + 2.578125, + 3.453125, + 0.69140625, + 2.71875, + 0.00494384765625, + -0.66796875, + -2.234375, + 2.15625, + -3.109375, + 0.55078125, + -0.90234375, + -1.8671875, + 0.8984375, + 4.8125, + -3.90625, + 2.28125, + -2.78125, + -0.78125, + -1.1796875, + 3.640625, + 3.8125, + 1.09375, + -2.375, + 0.353515625, + -0.625, + -1.1171875, + -0.322265625, + -0.7578125, + 2.640625, + 1.046875, + 1.1015625, + 2.203125, + -1.6484375, + 0.6875, + 2.3125, + -1.171875, + 4.09375, + 1.0625, + -3.296875, + -1.8984375, + -1.8203125, + 0.74609375, + -2.5, + 1.234375, + 0.9453125, + 3.703125, + 1.28125, + -0.77734375, + -1.7890625, + -0.412109375, + -1.3125, + 1.625, + -3.625, + 0.8515625, + 4.40625, + -2.3125, + 0.251953125, + 0.87890625, + 1.03125, + 2.5, + 1.0859375, + -2.15625, + 0.91015625, + -1.3984375, + 1.203125, + -1.75, + 2.34375, + -0.8671875, + 0.9375, + -0.15625, + 1.2578125, + 2.375, + -1.328125, + -1.4765625, + 0.0400390625, + -1.609375, + 0.58203125, + 3.75, + 0.83203125, + -1.1171875, + 0.9296875, + -2.703125, + -0.87890625, + 1.484375, + 1.296875, + 0.1416015625, + 1.84375, + 0.6640625, + 1.875, + -3.65625, + 1.8984375, + -4.125, + 0.98046875, + 0.38671875, + 0.63671875, + 0.22265625, + 2.140625, + -1.90625, + -3.15625, + 1.4765625, + -2.125, + 0.263671875, + -1.953125, + 0.49609375, + 0.87890625, + 0.484375, + 1.7265625, + 10.9375, + -1.6796875, + -1.609375, + 0.6484375, + 0.6328125, + 0.53125, + -1.0234375, + -4.78125, + -0.32421875, + -2.328125, + -1.703125, + -0.1728515625, + 1.03125, + -0.12353515625, + -3.21875, + 0.609375, + 0.70703125, + -1.4296875, + -4.28125, + -0.1357421875, + -1.75, + 0.1796875, + 0.6640625, + -0.291015625, + -2.28125, + -2.59375, + 0.7734375, + 0.875, + -0.404296875, + -1.625, + -0.36328125, + 2.578125, + -0.66796875, + 2.421875, + -2.65625, + -1.296875, + -3.3125, + 0.373046875, + 1.3984375, + 3.359375, + 1.4453125, + -1.9609375, + 0.3359375, + 3.03125, + -0.89453125, + 2.78125, + -1.34375, + -0.9609375, + 0.423828125, + 0.953125, + 1.0859375, + -1.4609375, + -3.171875, + -3.53125, + 1.46875, + -0.34765625, + -0.27734375, + -0.9609375, + 0.4375, + -0.42578125, + 4.375, + -0.953125, + 0.72265625, + -1.328125, + -0.3515625, + 1.59375, + -1.8046875, + 2.171875, + 3.109375, + -2.109375, + -2.140625, + -1.78125, + 0.6171875, + 1.78125, + 1.6640625, + 3.203125, + 0.03857421875, + 1.515625, + -0.267578125, + 0.98046875, + -0.69921875, + 2.078125, + 1.0859375, + 0.58984375, + 2.546875, + -1.296875, + 1.421875, + -1.5078125, + -2.375, + 1.6796875, + -0.6015625, + -0.5546875, + 2.875, + 0.59375, + -0.875, + 1.5390625, + 2.3125, + -0.5, + -1.28125, + -2.4375, + -0.451171875, + -0.12060546875, + 1.53125, + 1.828125, + -1.765625, + -1.46875, + -0.373046875, + 1.5390625, + 1.6953125, + -0.65234375, + -0.0224609375, + -2.59375, + 1.96875, + 1.9296875, + 1.3359375, + -0.5703125, + -0.93359375, + 2.5625, + 0.82421875, + -1.015625, + -0.236328125, + 1.46875, + -2.015625, + -0.88671875, + 5.3125, + -1.96875, + -0.94921875, + -3.453125, + 2.546875, + -2.578125, + -1.84375, + 1.125, + 2.40625, + -2.453125, + -2.9375, + -1.8125, + 2.828125, + -0.66796875, + 0.01507568359375, + -0.140625, + -0.466796875, + 1.1875, + 0.546875, + -1.59375, + -2.625, + 4.25, + 2.296875, + -2.21875, + -1.5390625, + 0.8203125, + -3.84375, + -1.1796875, + 0.94921875, + 0.2080078125, + -0.1494140625, + -7.96875, + 1.84375, + -0.8828125, + 0.54296875, + 0.0185546875, + 1.0078125, + 1.6015625, + -5.25, + 0.99609375, + 1.2890625, + 2.421875, + -2.265625, + 1.8359375, + -4.46875, + -4.71875, + 3.21875, + -0.609375, + 2.3125, + -2.15625, + -0.60546875, + 2.421875, + 1.578125, + 0.56640625, + -2.484375, + -1.7109375, + 1.078125, + 0.4609375, + 5.46875, + 0.66796875, + -1.3671875, + -0.5390625, + -1.4375, + 0.44140625, + -0.177734375, + -3.421875, + -0.2216796875, + -0.65625, + 1.0546875, + -1.578125, + -1.25, + -0.578125, + 1.2890625, + -2.390625, + -1.09375, + 2.796875, + 0.6484375, + -0.2392578125, + -0.96484375, + -1.1796875, + -2.390625, + -2.125, + 2.015625, + 1.3203125, + 3.03125, + -0.6796875, + -1.1484375, + 0.62890625, + 3.078125, + 0.423828125, + 2.96875, + -1.3359375, + 1.8984375, + 3.34375, + 0.28515625, + -0.32421875, + -1.0078125, + 1.234375, + -1.5078125, + -1.578125, + 0.625, + 0.921875, + 0.80859375, + -2.171875, + -3.25, + -1.5546875, + 3.203125, + 0.59375, + 1.734375, + -0.8046875, + 0.1484375, + 1.46875, + 0.2578125, + -2.640625, + 1.125, + -3.015625, + -0.1748046875, + -1.3828125, + -4.65625, + 1.6171875, + 2.21875, + 0.076171875, + -0.337890625, + 3.421875, + 2.0, + -4.3125, + -0.455078125, + -3.609375, + 0.96484375, + 0.34375, + -1.0390625, + -3.109375, + 3.3125, + -3.703125, + -1.3359375, + -1.3984375, + 1.8671875, + -1.34375, + 2.15625, + 1.8671875, + -1.4140625, + -1.125, + -0.2236328125, + 0.94921875, + 2.328125, + -1.953125, + 0.65234375, + 1.3203125, + -0.9921875, + -1.4140625, + 0.1689453125, + 1.1015625, + -1.0078125, + 0.58984375, + 0.8515625, + 0.83984375, + -0.671875, + -0.1650390625, + 4.625, + 0.484375, + -0.00958251953125, + 0.6953125, + -0.32421875, + -0.68359375, + -2.171875, + -0.419921875, + 0.90625, + 2.0, + 3.875, + 0.1650390625, + -1.6328125, + -0.99609375, + 0.05029296875, + -2.515625, + -0.15234375, + 2.859375, + 0.74609375, + 0.451171875, + 0.1845703125, + -2.125, + 0.296875, + 0.11572265625, + 2.234375, + -3.125, + -1.125, + -2.4375, + -0.326171875, + -1.2109375, + 0.84765625, + -4.375, + 0.73046875, + -0.80859375, + -0.212890625, + -5.78125, + 2.6875, + -2.0625, + 1.609375, + -1.7578125, + 3.359375, + 0.68359375, + 6.6875, + 1.0234375, + -1.359375, + 1.8515625, + -0.68359375, + -0.38671875, + -1.15625, + -3.21875, + -1.3515625, + 1.453125, + 1.078125, + -0.333984375, + -1.4453125, + -4.28125, + -0.44140625, + -0.2890625, + -5.8125, + -2.34375, + 0.47265625, + 1.203125, + 3.84375, + -4.0625, + 0.423828125, + 1.15625, + 0.96875, + 1.46875, + -1.890625, + -9.3125, + -2.890625, + 1.5390625, + 1.6796875, + -0.98046875, + -1.1484375, + -3.71875, + 0.15625, + -1.1328125, + -1.2578125, + 2.015625, + -0.126953125, + -2.015625, + -1.0234375, + 0.0908203125, + -0.279296875, + 0.2578125, + -0.2109375, + -3.734375, + -2.96875, + 0.111328125, + 2.515625, + 1.71875, + 3.515625, + -4.15625, + -2.8125, + -1.6484375, + 0.26953125, + -0.52734375, + -2.40625, + 0.75, + 5.53125, + 0.048095703125, + -2.5, + -1.0, + 1.328125, + -0.86328125, + -2.3125, + 2.328125, + 3.25, + -0.08935546875, + 0.376953125, + -0.404296875, + 0.87890625, + 0.0002689361572265625, + -3.25, + 3.3125, + -0.94140625, + -2.78125, + 1.859375, + 1.46875, + -2.75, + 3.65625, + -0.474609375, + -1.75, + 0.306640625, + -0.01239013671875, + 0.18359375, + 2.578125, + 1.859375, + -1.328125, + -1.5546875, + 1.84375, + 3.671875, + -2.109375, + -3.203125, + -0.73046875, + -3.0, + 0.9140625, + -1.3671875, + 0.73828125, + -3.078125, + -0.90625, + 1.6171875, + 1.5078125, + 1.78125, + -0.79296875, + 1.46875, + -0.287109375, + 1.4375, + 2.8125, + 2.25, + -0.0830078125, + 0.384765625, + 0.040771484375, + -3.125, + 0.54296875, + 1.5, + -1.75, + 2.109375, + 0.400390625, + 1.2890625, + 0.447265625, + 0.435546875, + 2.1875, + 10.5625, + 1.203125, + 0.4453125, + 2.4375, + -1.5, + 2.375, + 2.5625, + 0.053955078125, + 0.10888671875, + 1.6015625, + 1.171875, + 0.875, + 0.86328125, + 2.15625, + 0.034423828125, + -2.34375, + 1.296875, + 1.3671875, + -0.53515625, + -0.99609375, + 2.03125, + 1.1171875, + 1.953125, + -0.72265625, + -0.81640625, + -3.671875, + -1.265625, + -1.421875, + 1.8125, + -0.58984375, + -1.5078125, + -1.9296875, + -1.5078125, + 2.6875, + -0.70703125, + 5.5, + -0.1923828125, + 1.7421875, + 1.7421875, + 4.34375, + -0.515625, + 0.0186767578125, + -1.0859375, + 1.296875, + 0.080078125, + 1.2734375, + -1.203125, + -1.34375, + 0.81640625, + -1.53125, + 2.828125, + 0.1689453125, + 1.578125, + -1.921875, + -4.03125, + -1.1484375, + 1.5, + 6.25, + -2.109375, + -0.345703125, + 0.1884765625, + 1.2265625, + -1.84375, + 2.53125, + 1.2890625, + 0.6015625, + -1.234375, + 1.015625, + 1.5390625, + -0.38671875, + -0.87109375, + 0.4140625, + 2.0, + 2.90625, + 0.423828125, + -1.4609375, + -2.09375, + -1.140625, + 2.59375, + -2.671875, + 0.15625, + 1.0546875, + 0.65234375, + -2.125, + 2.234375, + 1.125, + 1.9375, + -0.98046875, + -0.5546875, + -1.1875, + -2.5625, + 3.953125, + -0.94921875, + 0.68359375, + 2.4375, + -0.349609375, + 0.1865234375, + -2.796875, + 1.0625, + -0.21484375, + -4.0, + 2.796875, + 1.2890625, + 2.25, + -0.921875, + 0.94140625, + -1.7265625, + -3.140625, + -0.357421875, + -1.5390625, + 1.9921875, + 1.1640625, + -1.6015625, + 0.10009765625, + -0.0286865234375, + -2.328125, + -3.953125, + 0.08837890625, + -5.125, + 1.03125, + 1.234375, + 3.140625, + 1.3359375, + -0.984375, + -1.1484375, + -1.875, + -2.15625, + 1.6328125, + 2.328125, + -0.828125, + 0.921875, + -2.46875, + 0.1357421875, + -3.140625, + 0.82421875, + -0.0791015625, + -1.09375, + 2.71875, + 0.6328125, + 0.6015625, + 0.4921875, + -0.96484375, + -4.71875, + 3.328125, + -0.322265625, + -1.2109375, + 0.408203125, + 0.2421875, + -1.8125, + -2.53125, + -1.15625, + 1.6640625, + -0.26171875, + 0.061767578125, + -2.3125, + 0.2197265625, + -1.453125, + -4.46875, + 0.87109375, + 1.8125, + -2.484375, + -1.1875, + -0.421875, + -2.5625, + -1.0, + 1.09375, + -0.55859375, + -1.0859375, + 0.9765625, + 2.46875, + -2.0, + 0.1796875, + -1.4296875, + 4.03125, + 0.5625, + 1.9296875, + 0.201171875, + 0.625, + -0.53515625, + -0.0228271484375, + -0.28125, + 1.375, + 0.77734375, + 4.03125, + 1.3359375, + 2.859375, + 1.859375, + 1.28125, + 0.236328125, + 1.890625, + -1.2578125, + -1.203125, + 0.77734375, + 1.25, + -0.31640625, + 0.408203125, + 1.671875, + -1.6640625, + -2.953125, + -1.8984375, + -0.86328125, + 0.1396484375, + 0.27734375, + 0.70703125, + 2.171875, + -0.333984375, + 1.0703125, + -4.21875, + -4.21875, + 2.0625, + 1.453125, + -5.5625, + 1.96875, + 4.5, + 0.59765625, + -0.019775390625, + 0.75390625, + -0.349609375, + 0.0255126953125, + -0.040771484375, + 1.9921875, + 0.037109375, + 1.3359375, + 1.34375, + -0.490234375, + -1.3359375, + 1.1171875, + 1.546875, + -2.921875, + -2.5625, + 1.3203125, + -0.58203125, + -0.7265625, + -0.91796875, + -1.640625, + -1.9609375, + 0.51953125, + 2.09375, + 0.93359375, + -0.431640625, + -2.140625, + -0.000278472900390625, + 2.140625, + 0.8515625, + -0.578125, + -2.890625, + -1.546875, + 0.279296875, + -1.015625, + 0.734375, + -2.09375, + 1.5546875, + 0.0556640625, + 3.515625, + -0.89453125, + 1.03125, + -2.03125, + 1.3671875, + 1.1015625, + -1.7734375, + 2.15625, + 1.3359375, + 2.28125, + 0.91015625, + -2.125, + -1.546875, + 2.984375, + -0.6875, + -2.078125, + 1.2109375, + 0.72265625, + 0.77734375, + 0.189453125, + 2.765625, + 0.6875, + 2.296875, + -0.482421875, + 2.953125, + 1.8359375, + 1.1015625, + 1.140625, + 8.0, + -1.2890625, + -0.57421875, + 1.671875, + -1.0234375, + 2.953125, + -1.2734375, + 0.5, + -1.4140625, + 0.00946044921875, + -0.1328125, + 0.984375, + 1.296875, + -2.3125, + -0.66796875, + 2.015625, + -0.9140625, + 2.171875, + -0.9765625, + 0.01953125, + -1.5, + 2.09375, + -2.515625, + 0.32421875, + 1.15625, + -1.125, + -1.15625, + 4.125, + -1.140625, + -1.1796875, + 1.375, + -1.6875, + -7.4375, + -0.73828125, + 2.3125, + 0.134765625, + 2.703125, + -2.328125, + -0.8984375, + 0.15234375, + 0.52734375, + 1.578125, + -1.875, + -0.25390625, + 3.171875, + -1.171875, + 0.47265625, + -1.2890625, + 1.3515625, + -1.6875, + 0.0791015625, + 1.7734375, + -0.296875, + -1.734375, + 0.796875, + -0.54296875, + -0.31640625, + -1.3203125, + 1.84375, + -0.7578125, + -2.984375, + -3.8125, + -2.28125, + 0.83984375, + -0.9921875, + 0.40625, + -1.890625, + -0.66015625, + -1.609375, + -0.193359375, + -2.421875, + -1.7578125, + -3.28125, + 2.34375, + -1.203125, + 2.15625, + 0.1982421875, + -1.2421875, + -2.53125, + -1.2890625, + 0.2734375, + -1.9609375, + 2.234375, + 1.6953125, + 2.40625, + 4.5625, + 1.7265625, + 0.2265625, + 0.345703125, + 1.6171875, + -2.328125, + 0.396484375, + 3.46875, + 4.15625, + 1.0234375, + 1.28125, + -0.55078125, + 1.8203125, + -0.9375, + 3.40625, + 0.9765625, + 2.234375, + -2.65625, + -0.18359375, + 5.0625, + -5.625, + -0.002777099609375, + 0.470703125, + 0.94921875, + -2.09375, + -0.48828125, + 0.8046875, + -0.2578125, + -0.7734375, + -10.25, + -0.10986328125, + -0.72265625, + -0.416015625, + -0.5625, + 1.6640625, + -1.6171875, + -1.6484375, + -0.87109375, + 2.578125, + 0.45703125, + -2.09375, + 1.5234375, + 0.91015625, + 1.96875, + 2.609375, + -2.09375, + -2.046875, + -0.75, + -0.1650390625, + -0.9453125, + 0.123046875, + -1.7890625, + 1.171875, + 0.80078125, + -1.171875, + -0.515625, + 1.4140625, + -0.7890625, + -0.984375, + 2.546875, + 0.6640625, + 0.37890625, + -1.0625, + 1.1171875, + -0.66015625, + 2.46875, + 0.271484375, + 1.171875, + 0.578125, + 1.453125, + 0.302734375, + -2.453125, + -1.328125, + 0.46484375, + -1.6640625, + -1.59375, + -0.25, + -2.53125, + 0.10107421875, + 0.029052734375, + 1.125, + 0.02001953125, + -0.85546875, + 3.265625, + 1.1328125, + 2.375, + 0.8984375, + 0.50390625, + -1.65625, + -2.578125, + -1.1171875, + -2.765625, + -1.0078125, + 0.98828125, + 3.6875, + 1.8203125, + -3.15625, + -0.95703125, + 0.255859375, + -4.75, + -1.8046875, + 1.578125, + 1.6484375, + -2.53125, + -3.484375, + 2.5, + 0.1005859375, + 1.328125, + -4.28125, + -1.3671875, + -2.453125, + 1.0078125, + 0.6171875, + 11.0625, + 0.7265625, + -1.6875, + 0.96484375, + -1.484375, + -0.28125, + -0.796875, + -3.0625, + 0.44140625, + -2.09375, + -3.78125, + 0.482421875, + 4.4375, + 0.79296875, + -1.2734375, + -4.15625, + -1.703125, + 0.3671875, + 2.875, + 5.5625, + -2.25, + 0.94921875, + 1.96875, + 0.9921875, + -0.0966796875, + 1.359375, + -1.4453125, + 3.03125, + 1.6640625, + -3.21875, + 0.296875, + -1.3046875, + -1.0234375, + -0.3125, + -2.015625, + 1.6171875, + -0.205078125, + -1.0234375, + -2.296875, + 1.859375, + 1.484375, + 2.609375, + -1.078125, + -0.78515625, + 0.5859375, + 1.1171875, + 4.03125, + 4.34375, + 0.9765625, + -2.34375, + 0.9765625, + -5.71875, + 0.435546875, + 2.125, + -0.283203125, + 2.75, + -0.91015625, + -0.90234375, + -3.1875, + 2.1875, + -1.25, + -0.384765625, + 1.0703125, + 3.578125, + 2.453125, + -0.921875, + 2.03125, + 0.326171875, + 1.328125, + 0.90234375, + 1.7265625, + 2.203125, + 1.3515625, + -0.22265625, + 1.8984375, + -1.4765625, + 0.2890625, + -1.5546875, + -1.5234375, + -1.8984375, + 1.125, + -1.5703125, + 0.39453125, + -0.60546875, + 0.59375, + -0.6015625, + 0.6171875, + 1.390625, + 3.625, + -3.421875, + -1.96875, + -0.1748046875, + -1.8125, + 2.46875, + 0.087890625, + -2.859375, + -1.71875, + -5.09375, + -2.359375, + 1.7109375, + 0.3671875, + -2.53125, + -2.0625, + -1.734375, + 0.10791015625, + -0.98828125, + 1.9375, + -2.609375, + 2.265625, + -2.65625, + -0.2236328125, + 1.5234375, + 0.71875, + 2.578125, + -1.6015625, + 0.98046875, + -0.70703125, + -1.3203125, + -0.8515625, + 0.890625, + -3.34375, + -2.625, + -5.5, + 3.28125, + 3.4375, + 0.2197265625, + 2.359375, + 2.34375, + 1.9765625, + -2.8125, + 1.6328125, + 2.4375, + -0.16015625, + 1.1015625, + -0.73828125, + -0.87890625, + 0.9921875, + -2.84375, + 1.7265625, + 2.6875, + -2.078125, + -1.875, + -1.1171875, + -0.0478515625, + 1.21875, + -4.375, + -0.0712890625, + 1.96875, + -0.24609375, + 0.040283203125, + 0.69140625, + 2.296875, + -0.1611328125, + -1.4296875, + 0.291015625, + -2.609375, + -0.51953125, + -5.40625, + -0.6875, + -1.8359375, + -1.3203125, + 2.515625, + 0.1865234375, + 2.125, + -1.9765625, + 1.5390625, + -0.486328125, + 0.228515625, + -0.78125, + 0.6171875, + -0.71484375, + -3.671875, + 0.90234375, + -3.828125, + 0.53515625, + -3.078125, + 3.625, + -0.89453125, + 0.8359375, + 0.4921875, + -1.5546875, + -0.251953125, + 1.3671875, + -2.9375, + 0.2021484375, + 2.359375, + 1.046875, + -1.5390625, + 2.125, + 1.9140625, + 1.2265625, + -1.9140625, + -2.0, + 1.1953125, + 2.953125, + 0.65234375, + 0.2041015625, + -3.46875, + 2.546875, + 0.9765625, + -2.78125, + 1.96875, + 2.78125, + 1.984375, + 1.734375, + -0.0166015625, + 1.734375, + -0.373046875, + 1.734375, + -1.015625, + -0.6328125, + -9.375, + -0.240234375, + -1.0, + -3.421875, + -0.9609375, + -1.1796875, + -0.9296875, + 0.018310546875, + 0.69921875, + 3.578125, + 1.59375, + 0.0849609375, + -0.609375, + -0.8125, + 0.5234375, + -0.439453125, + 0.984375, + 1.015625, + -0.8359375, + 1.1875, + -1.046875, + -1.4765625, + -0.5390625, + -2.328125, + 0.57421875, + -2.984375, + -0.416015625, + -0.60546875, + -1.828125, + -2.1875, + -0.95703125, + -0.08984375, + -1.0078125, + -0.2109375, + -8.5, + 0.1181640625, + 2.421875, + 4.5625, + -0.9375, + 0.291015625, + -2.703125, + 4.40625, + -0.416015625, + 2.828125, + 2.03125, + 0.21875, + 0.11865234375, + 0.95703125, + -1.5546875, + 1.46875, + -0.68359375, + -0.54296875, + 0.94921875, + -2.375, + -0.19921875, + 0.466796875, + -1.578125, + -0.115234375, + 11.25, + -3.6875, + -1.7734375, + -1.6796875, + 4.875, + 0.79296875, + 0.31640625, + 2.015625, + 0.1240234375, + -0.392578125, + 2.46875, + 0.35546875, + -0.921875, + -0.396484375, + -0.234375, + -9.9375, + 0.546875, + 0.010009765625, + 2.03125, + -0.0966796875, + -0.6328125, + -2.625, + -1.515625, + -0.06494140625, + 0.43359375, + -2.09375, + -3.375, + 2.328125, + -0.1611328125, + 0.06982421875, + -3.21875, + -2.140625, + 2.28125, + 0.73046875, + 0.038330078125, + -1.4296875, + -0.047607421875, + -0.08935546875, + -1.6953125, + 1.0, + -1.3984375, + 2.921875, + -0.66796875, + 0.0478515625, + -0.84765625, + -1.09375, + -0.462890625, + 0.11865234375, + -2.34375, + -0.80859375, + 2.140625, + 0.0439453125, + -1.4921875, + -1.5390625, + 1.2421875, + 0.75, + 1.1015625, + 0.48046875, + 1.40625, + -0.2333984375, + 1.1640625, + -2.421875, + -0.90625, + 0.94921875, + -2.015625, + -1.6328125, + 1.1484375, + 0.75390625, + 0.51953125, + 3.5, + 2.875, + -0.98046875, + 0.48046875, + 0.89453125, + 2.453125, + 0.3046875, + 2.09375, + 0.7734375, + -0.490234375, + 0.59375, + -1.078125, + -1.8359375, + -1.1328125, + 3.34375, + 0.73046875, + -2.75, + 1.1328125, + 4.75, + 2.828125, + -2.25, + -0.76953125, + -2.203125, + 0.095703125, + 2.71875, + 0.053955078125, + -1.4375, + -1.3671875, + 0.58984375, + 1.4609375, + -0.2392578125, + 1.921875, + -1.2421875, + -1.0234375, + 0.369140625, + -0.75, + 0.78515625, + 1.2890625, + 1.109375, + 3.890625, + 0.2265625, + -0.83984375, + -1.5625, + 1.375, + 0.11669921875, + -1.25, + 0.8828125, + -1.7734375, + 0.99609375, + -1.1796875, + 1.5703125, + 2.3125, + 0.8125, + 0.81640625, + 1.4453125, + 2.453125, + -0.6796875, + 0.0849609375, + -1.609375, + 3.703125, + 0.09912109375, + -3.265625, + -1.0703125, + -4.6875, + 0.578125, + -1.5625, + 3.734375, + -0.11328125, + 0.44140625, + 0.2001953125, + -2.453125, + 3.1875, + -1.6875, + 1.0703125, + 0.45703125, + 0.734375, + -2.125, + 3.9375, + -3.03125, + 1.1953125, + 0.232421875, + 2.078125, + -2.796875, + -1.0859375, + -0.1396484375, + -1.6953125, + -4.34375, + -1.8828125, + -2.71875, + 0.2578125, + -0.86328125, + -1.3671875, + -0.26171875, + -2.828125, + 2.578125, + 0.98046875, + 1.8828125, + 3.328125, + -2.734375, + -0.77734375, + -0.9765625, + -1.9375, + -1.28125, + -0.6796875, + -7.5, + -1.4296875, + -0.380859375, + 0.48828125, + -0.478515625, + 0.427734375, + -0.58203125, + -0.46875, + -1.1171875, + 1.3125, + -0.0791015625, + -1.0234375, + 0.75390625, + -0.47265625, + -0.85546875, + -1.59375, + -0.1640625, + -0.765625, + 1.46875, + 0.4609375, + 0.458984375, + 0.80078125, + -0.59765625, + -1.9375, + 1.3046875, + 1.34375, + 1.421875, + -1.5390625, + 2.46875, + 2.296875, + -2.328125, + 3.203125, + -3.390625, + -1.1171875, + 1.4140625, + -0.703125, + 0.2490234375, + -2.375, + -1.1953125, + -1.234375, + 2.734375, + -1.984375, + 0.7265625, + -0.828125, + -1.484375, + 1.421875, + 0.7890625, + 2.359375, + -0.1455078125, + -1.5703125, + -0.25, + 0.431640625, + -0.46484375, + -0.59375, + 0.91015625, + 0.12255859375, + -2.421875, + 1.7890625, + 3.375, + 0.84375, + 1.6953125, + 3.296875, + 0.390625, + -1.2578125, + 2.234375, + 2.078125, + 4.6875, + 0.75390625, + -2.765625, + -1.1171875, + -3.40625, + -0.298828125, + 1.140625, + 2.15625, + -0.1142578125, + 2.328125, + -1.75, + 0.8671875, + 1.1171875, + -0.96484375, + 0.75, + -1.03125, + 0.9140625, + -0.6796875, + -2.984375, + -1.03125, + 0.1142578125, + 1.4453125, + 4.6875, + 0.765625, + -0.66015625, + 0.2314453125, + -1.671875, + 1.875, + 0.019287109375, + -3.09375, + 0.76171875, + 4.4375, + -1.1875, + 3.859375, + 0.019775390625, + -1.2890625, + -1.625, + -2.046875, + -1.46875, + 0.3828125, + 3.28125, + -0.765625, + -0.482421875, + 4.375, + -5.6875, + -1.3515625, + -1.71875, + -0.25390625, + 2.578125, + 1.1875, + 0.357421875, + -2.359375, + -0.47265625, + 1.0625, + 0.50390625, + 1.359375, + 2.28125, + -0.6015625, + 1.09375, + -1.7890625, + -0.140625, + -1.6328125, + -5.34375, + 3.65625, + 1.3203125, + -0.9453125, + 1.0234375, + -2.0, + 0.1328125, + 1.421875, + 0.9140625, + 2.03125, + 1.125, + 1.1328125, + -2.921875, + 2.3125, + -0.451171875, + -3.109375, + -1.4296875, + 0.00982666015625, + 2.046875, + 0.26953125, + -1.5859375, + 0.1328125, + -0.71875, + 2.140625, + -0.54296875, + 2.203125, + 1.4921875, + -2.296875, + 1.265625, + -0.12353515625, + 1.890625, + -1.0078125, + -0.42578125, + 0.224609375, + 0.66015625, + -2.0625, + -0.71875, + 1.40625, + 0.2158203125, + 0.062255859375, + 0.109375, + -3.78125, + -0.19921875, + -2.078125, + -1.6484375, + 1.4375, + 0.22265625, + -0.453125, + 2.390625, + 2.28125, + -4.0625, + -1.734375, + 1.640625, + 2.234375, + 3.546875, + 0.10302734375, + -3.03125, + 0.052978515625, + -3.703125, + 4.90625, + -4.3125, + 1.0703125, + -2.203125, + 3.609375, + 1.78125, + 0.9140625, + -2.171875, + -1.109375, + 0.2001953125, + 0.296875, + -0.44140625, + 0.73828125, + -0.54296875, + -1.234375, + 1.96875, + 2.609375, + -2.046875, + -0.7890625, + -1.3125, + -2.046875, + 1.625, + 2.640625, + -2.984375, + -0.134765625, + -1.6015625, + 0.6171875, + -2.625, + 3.59375, + -0.43359375, + 2.015625, + 1.484375, + 0.25390625, + 8.0, + -1.0078125, + 1.171875, + 2.28125, + -0.546875, + -0.404296875, + 0.076171875, + -1.1640625, + 1.3359375, + 7.90625, + -1.1015625, + 1.921875, + -0.333984375, + -0.80859375, + 0.921875, + 0.6328125, + -0.107421875, + -1.3984375, + -0.8515625, + -4.34375, + 1.984375, + 0.9453125, + -3.46875, + -3.140625, + -0.171875, + 1.375, + -2.9375, + 2.3125, + 0.388671875, + -3.328125, + -1.8515625, + -0.5234375, + 2.640625, + -0.6640625, + -0.3203125, + -0.10546875, + 0.68359375, + 9.625, + 1.9453125, + 0.427734375, + -3.90625, + 1.84375, + 5.03125, + -0.8984375, + 7.53125, + -3.953125, + 0.02001953125, + 2.03125, + 2.4375, + 1.8359375, + -0.0225830078125, + 3.09375, + 2.765625, + -0.96875, + 0.38671875, + -2.65625, + -1.5859375, + 0.3203125, + -4.0, + -3.53125, + -0.6328125, + -2.9375, + -1.6484375, + 1.8203125, + -1.1015625, + 2.703125, + 0.134765625, + 4.125, + -0.002471923828125, + -2.65625, + 3.453125, + -0.373046875, + 0.75390625, + -2.109375, + 2.734375, + 1.515625, + 2.640625, + 1.515625, + 2.296875, + -4.59375, + 1.8671875, + -1.9140625, + 1.65625, + 2.734375, + 2.15625, + -0.059814453125, + -1.5625, + -0.03857421875, + -1.2578125, + -1.109375, + -1.4609375, + -1.140625, + -2.4375, + 5.15625, + 1.9296875, + 0.65234375, + 1.90625, + 0.470703125, + -1.6640625, + 0.0712890625, + -0.6328125, + 2.578125, + 1.109375, + -2.140625, + 0.01708984375, + -0.294921875, + -0.357421875, + -1.484375, + -2.078125, + -0.232421875, + -1.34375, + 0.416015625, + 0.36328125, + -0.37890625, + 3.546875, + 1.15625, + -1.515625, + -1.484375, + -1.375, + 1.2734375, + -0.15625, + -4.6875, + 1.3671875, + 3.96875, + -1.328125, + -0.81640625, + 0.263671875, + 1.921875, + -3.859375, + 1.4296875, + -0.84375, + -3.0, + 1.2109375, + -0.72265625, + -1.1640625, + 3.03125, + -2.046875, + 2.375, + 1.8984375, + -10.875, + -0.4375, + 1.203125, + 2.109375, + -1.9609375, + 2.53125, + -0.435546875, + 0.84765625, + -1.421875, + 0.87890625, + -3.375, + -0.40625, + 4.75, + 0.9375, + -0.00250244140625, + 2.359375, + 0.59765625, + 0.059814453125, + -1.5859375, + 0.76953125, + -1.0703125, + 0.298828125, + 2.25, + 3.109375, + -2.203125, + -1.1875, + 0.06689453125, + 3.75, + -2.3125, + 2.453125, + -2.953125, + -0.1767578125, + -1.8359375, + -0.57421875, + -3.0625, + 1.0703125, + 1.1484375, + -1.1484375, + -0.05078125, + -0.77734375, + 1.8359375, + -0.828125, + 0.90234375, + 1.4921875, + -0.77734375, + 0.59375, + -1.328125, + -2.328125, + 0.703125, + -0.034912109375, + -1.9375, + 1.8515625, + 1.6640625, + -0.314453125, + -0.3828125, + 0.73046875, + -0.8828125, + 0.71484375, + 2.296875, + -1.3125, + 2.859375, + -0.185546875, + -0.033203125, + 0.50390625, + 0.75, + 0.73046875, + -2.453125, + 3.03125, + 0.796875, + 1.25, + 0.515625, + -0.283203125, + -1.7890625, + 1.9375, + 1.09375, + 0.7734375, + 0.77734375, + -1.3125, + -0.00628662109375, + -3.234375, + -3.1875, + 0.2109375, + -1.0859375, + 0.8828125, + -0.1376953125, + 0.828125, + 0.671875, + -0.486328125, + 1.09375, + 0.84765625, + -1.3671875, + -3.703125, + 3.984375, + -1.4609375, + 0.62890625, + -1.5390625, + 0.4921875, + 2.328125, + -0.453125, + -1.390625, + -1.8984375, + 0.4921875, + -0.1640625, + 0.486328125, + -1.921875, + -0.08740234375, + -0.546875, + -0.65234375, + 3.953125, + 2.296875, + -2.296875, + 1.9609375, + -0.310546875, + 1.7578125, + 2.25, + -0.9609375, + 0.09033203125, + -0.65234375, + 3.5, + -1.1796875, + -3.078125, + -0.640625, + -1.078125, + -1.8515625, + -0.12890625, + -2.90625, + -3.734375, + -0.875, + -3.53125, + -4.78125, + 1.3046875, + -1.6484375, + -1.3984375, + -0.58984375, + -4.125, + -0.296875, + 2.046875, + 0.38671875, + -0.07958984375, + -2.109375, + -0.65234375, + 1.5390625, + -1.828125, + -0.125, + -0.447265625, + -0.484375, + 2.171875, + 0.2265625, + -2.296875, + 0.96875, + 0.88671875, + 0.2080078125, + 0.9140625, + -2.453125, + -1.4609375, + 2.09375, + 0.1083984375, + 2.046875, + -0.1923828125, + -0.2890625, + 2.65625, + -2.671875, + 1.046875, + 0.703125, + -2.671875, + -0.337890625, + 2.625, + -0.0595703125, + -1.4140625, + -1.71875, + 2.734375, + 0.14453125, + 0.875, + 0.6953125, + -2.3125, + -0.0498046875, + 1.2890625, + 2.4375, + -1.984375, + 3.3125, + -2.28125, + 1.5859375, + 0.578125, + 0.37109375, + 2.828125, + 3.46875, + 2.640625, + 1.1640625, + 3.140625, + 1.0859375, + -0.60546875, + -0.8203125, + 1.4609375, + 0.07275390625, + 0.50390625, + -1.3984375, + -1.1875, + -1.25, + 1.3046875, + 1.78125, + -5.21875, + 1.0703125, + -2.3125, + 0.1923828125, + 1.1484375, + -3.546875, + 0.90625, + -0.33984375, + -1.140625, + -2.046875, + -1.71875, + -0.494140625, + -2.34375, + 2.78125, + 1.09375, + -0.28125, + -1.0390625, + -1.4765625, + -1.078125, + 0.57421875, + -2.875, + 0.283203125, + -1.5859375, + 3.53125, + 2.09375, + 1.171875, + 3.296875, + 2.84375, + -2.671875, + 0.71875, + 0.7734375, + -2.28125, + 0.404296875, + -0.9921875, + 2.40625, + -1.1015625, + 1.0078125, + 1.6875, + -0.2333984375, + -0.4296875, + 1.8125, + -0.71875, + -0.197265625, + 0.78125, + 2.5, + -2.875, + -2.5, + 2.8125, + 1.3046875, + -3.640625, + 2.5, + -0.06494140625, + -0.80859375, + -0.91015625, + 2.296875, + 4.84375, + -1.0, + 1.25, + -4.4375, + 6.09375, + 4.34375, + -2.375, + -0.90234375, + 1.28125, + 0.07275390625, + 0.4765625, + 0.04443359375, + 0.50390625, + -3.953125, + -3.734375, + -2.765625, + 2.375, + -1.609375, + 0.828125, + -1.328125, + -2.078125, + -2.109375, + 0.671875, + 0.24609375, + 1.1484375, + -2.078125, + 0.84765625, + 1.359375, + 0.337890625, + -0.330078125, + 1.359375, + 1.8671875, + 0.326171875, + -1.4921875, + 1.171875, + 2.09375, + 1.4765625, + -3.4375, + -5.40625, + 2.28125, + -0.314453125, + 0.89453125, + -0.045166015625, + 1.4375, + 1.546875, + 0.59375, + -6.8125, + 1.2421875, + -4.65625, + 2.796875, + 0.75, + 1.140625, + 1.25, + 3.53125, + 0.6953125, + 0.80078125, + 0.93359375, + -1.6796875, + 3.171875, + 2.671875, + 0.3671875, + -3.828125, + -1.6640625, + 1.0078125, + -0.75, + 1.5703125, + -1.765625, + 2.265625, + -0.5859375, + -1.8984375, + 0.26171875, + 1.6484375, + -0.87109375, + 9.375, + -1.2890625, + 3.75, + -2.6875, + -1.421875, + -0.265625, + 1.59375, + -1.0234375, + -0.4921875, + -0.58203125, + 0.66796875, + 3.46875, + 2.75, + -1.03125, + 0.625, + 0.2197265625, + 2.953125, + -3.46875, + 0.10791015625, + -0.4375, + 1.1875, + 0.283203125, + -0.357421875, + -0.4921875, + 2.46875, + 2.703125, + 1.9453125, + 1.1484375, + 2.1875, + -0.38671875, + -0.134765625, + 0.1845703125, + 0.12109375, + -0.625, + -2.90625, + -0.65234375, + 4.65625, + -0.58203125, + 1.3515625, + 0.47265625, + 5.28125, + -1.8828125, + -0.41015625, + -0.12060546875, + -2.578125, + -0.4765625, + 1.5390625, + 4.34375, + -1.09375, + 0.388671875, + 1.0, + 0.640625, + 1.0, + -0.0693359375, + -0.97265625, + 0.609375, + -1.0859375, + -1.5078125, + -2.75, + -3.0, + 3.1875, + 3.984375, + 2.40625, + 0.228515625, + 1.1171875, + 3.796875, + 1.4609375, + -3.5, + -1.5234375, + -0.0380859375, + -4.4375, + 4.0, + -2.765625, + 0.984375, + 1.1328125, + 0.3671875, + 0.50390625, + -0.48046875, + -0.0272216796875, + -0.8984375, + -0.87890625, + 2.671875, + -2.046875, + 0.1484375, + 3.5625, + 0.86328125, + 1.96875, + 1.640625, + -3.90625, + -1.59375, + 0.51953125, + -2.65625, + -0.50390625, + -1.375, + 1.953125, + 1.2890625, + -0.53125, + -0.0478515625, + 1.9140625, + 4.1875, + -1.140625, + -0.6015625, + -1.828125, + -0.01251220703125, + -2.640625, + -1.34375, + 4.28125, + -0.6640625, + 2.84375, + -0.78125, + -1.4375, + 0.09326171875, + 2.671875, + 1.125, + 2.125, + -1.1015625, + 0.1005859375, + 1.1640625, + -2.421875, + 2.0, + 0.95703125, + -2.40625, + -2.03125, + 0.890625, + -1.4453125, + -0.86328125, + 1.359375, + -0.447265625, + 4.78125, + -1.5, + -1.3203125, + 2.296875, + 0.16015625, + 0.326171875, + 0.59375, + -0.65234375, + 0.00689697265625, + -2.140625, + 0.87890625, + 0.053955078125, + -1.8203125, + 0.265625, + 2.21875, + 1.03125, + 0.7578125, + -2.015625, + 0.96484375, + 0.375, + 0.271484375, + -1.515625, + -1.7734375, + -2.40625, + 0.6796875, + 0.072265625, + 0.32421875, + -0.9921875, + 0.376953125, + -0.98828125, + 0.62109375, + 1.3515625, + -1.234375, + 0.87109375, + -3.28125, + -0.90234375, + -4.1875, + -1.5859375, + -1.4765625, + -1.4765625, + 3.890625, + -1.140625, + -1.125, + 1.1875, + 0.83203125, + -1.421875, + -2.328125, + 0.81640625, + 13.0625, + -0.55078125, + 2.09375, + -3.09375, + -1.984375, + -0.60546875, + 3.5, + -3.9375, + -2.125, + -0.111328125, + 0.2080078125, + 0.1923828125, + -1.6953125, + 0.38671875, + -1.8203125, + 0.66796875, + -3.640625, + 0.08837890625, + -3.078125, + -2.09375, + -0.515625, + -0.34375, + 0.61328125, + 2.71875, + -0.10693359375, + 1.0078125, + -2.109375, + 1.2890625, + 0.193359375, + -0.703125, + -1.3671875, + -1.046875, + 0.349609375, + -0.376953125, + 2.15625, + -3.0, + 0.427734375, + -5.5, + -0.0986328125, + 2.09375, + 2.671875, + 0.2333984375, + 3.15625, + -0.1669921875, + 0.77734375, + 0.498046875, + -3.5, + 1.2421875, + 0.80078125, + 0.91796875, + 2.359375, + -0.337890625, + -1.484375, + 0.220703125, + -0.9296875, + 0.365234375, + -0.65234375, + 0.74609375, + 3.609375, + 1.3828125, + -0.6640625, + -2.109375, + -1.625, + 0.07177734375, + -1.03125, + -0.96484375, + -1.2890625, + -1.6328125, + 0.02490234375, + -2.046875, + -1.5546875, + 1.1015625, + 1.875, + -1.5546875, + -2.4375, + 1.3828125, + -0.62890625, + 0.1611328125, + -1.34375, + -2.6875, + -0.7890625, + -2.65625, + 0.1240234375, + -0.4296875, + 0.71484375, + -0.83984375, + 1.7265625, + -1.578125, + -0.1513671875, + -2.234375, + 0.2265625, + 3.65625, + 3.0, + 2.28125, + -2.921875, + -0.306640625, + 0.7890625, + -0.9296875, + -3.953125, + -1.234375, + -0.0311279296875, + 4.625, + 3.9375, + -0.7109375, + -1.7890625, + -0.52734375, + 0.5, + 1.3828125, + 2.109375, + -1.0703125, + -0.578125, + 2.140625, + 1.6875, + -0.69921875, + -0.49609375, + 2.5, + 0.8359375, + -0.58984375, + 1.4765625, + -2.171875, + -0.85546875, + -1.9765625, + 0.7265625, + -0.69921875, + 1.796875, + 0.322265625, + 3.25, + -0.11865234375, + -0.99609375, + -1.28125, + -2.09375, + -3.59375, + -1.0703125, + 3.015625, + 1.25, + -0.06396484375, + 0.5078125, + 1.59375, + -2.453125, + 1.1328125, + 2.671875, + -1.3671875, + 0.9765625, + -2.4375, + 2.6875, + 2.8125, + -1.078125, + -2.15625, + -1.625, + -0.32421875, + -0.74609375, + 1.234375, + -2.03125, + 2.28125, + -2.546875, + 0.97265625, + -2.84375, + 0.062255859375, + 0.2197265625, + -1.5234375, + 2.09375, + 2.375, + -1.0234375, + -0.130859375, + 1.4921875, + 2.96875, + -0.8359375, + 0.04833984375, + 2.28125, + 1.4453125, + 2.671875, + 0.6640625, + -0.53125, + -1.890625, + -0.5859375, + 0.734375, + -0.1455078125, + 0.01507568359375, + 0.171875, + 0.1728515625, + 1.078125, + -0.054931640625, + 1.6875, + 1.453125, + -2.796875, + 1.328125, + -0.0299072265625, + 0.384765625, + 1.7109375, + 1.5859375, + 2.234375, + -2.0, + -1.1640625, + 0.400390625, + -0.8984375, + -1.296875, + -2.046875, + -0.2275390625, + -1.796875, + 0.498046875, + -2.078125, + 1.828125, + 0.14453125, + 0.09033203125, + -0.91015625, + 4.46875, + -0.65625, + 4.53125, + -0.1962890625, + 1.1875, + -2.21875, + 2.171875, + 2.21875, + -2.21875, + -0.5703125, + 1.109375, + -0.98828125, + -1.171875, + -1.65625, + -0.396484375, + -0.478515625, + 0.78125, + -0.68359375, + -0.93359375, + 1.75, + -0.01007080078125, + 3.734375, + -0.498046875, + 1.390625, + 0.13671875, + -0.91796875, + -1.8203125, + -2.046875, + 1.6171875, + -0.53515625, + -0.91796875, + -1.0, + -2.703125, + 0.82421875, + 0.4375, + -0.90625, + 1.09375, + -0.107421875, + 1.9375, + 0.330078125, + -0.65234375, + 4.125, + 4.84375, + 14.4375, + -0.8671875, + 1.265625, + 0.310546875, + -0.59765625, + -1.4453125, + -2.125, + 2.4375, + -2.28125, + -0.98046875, + -0.57421875, + -0.39453125, + -0.11328125, + 0.30078125, + -0.369140625, + 0.7421875, + -1.34375, + -0.91015625, + 0.2392578125, + 2.265625, + -1.640625, + 0.6796875, + 3.53125, + 0.326171875, + -8.0, + 0.486328125, + 1.3515625, + -0.76953125, + 1.0078125, + 0.66015625, + 1.6171875, + 2.15625, + -2.375, + -0.439453125, + 1.1484375, + -0.859375, + 0.287109375, + -0.72265625, + 3.109375, + -0.59765625, + -0.46875, + 2.390625, + -2.859375, + -0.3671875, + -0.04150390625, + -1.21875, + 1.5625, + -1.59375, + -3.0, + -0.8125, + -3.671875, + 4.5, + 0.88671875, + 0.5859375, + 1.390625, + -0.3203125, + -1.3671875, + -0.031982421875, + 1.265625, + 0.9375, + 0.515625, + -0.431640625, + -3.171875, + -4.21875, + -1.234375, + 0.72265625, + 3.84375, + -0.94140625, + 0.2294921875, + -1.0546875, + 0.061767578125, + -1.5859375, + -0.87109375, + 2.703125, + 0.609375, + 1.1015625, + -1.015625, + 1.6796875, + 1.953125, + 0.83984375, + 1.390625, + -1.5390625, + -1.4609375, + 1.7265625, + 0.04248046875, + 0.67578125, + -1.1875, + 0.2060546875, + -1.7265625, + -0.050048828125, + 0.640625, + -1.7421875, + 1.203125, + 0.059814453125, + -1.5078125, + 4.875, + 0.271484375, + -1.5859375, + 0.416015625, + 0.8515625, + -2.9375, + 1.609375, + 0.16796875, + 0.890625, + 1.4921875, + 1.1484375, + -0.4453125, + 1.171875, + 2.671875, + 0.41015625, + 0.6171875, + -2.640625, + -0.34765625, + 1.8046875, + 1.9375, + 0.71484375, + 10.0625, + 0.265625, + 0.65625, + -2.21875, + 3.171875, + -0.0047607421875, + -2.25, + 0.439453125, + -0.765625, + 1.03125, + 0.57421875, + -0.12109375, + -1.2109375, + -4.4375, + 0.92578125, + -1.8203125, + 0.7890625, + 0.79296875, + 2.6875, + -0.703125, + -1.453125, + 2.828125, + 8.0, + 0.50390625, + 0.1474609375, + -1.3671875, + -0.033935546875, + 0.77734375, + -1.40625, + -1.3359375, + 0.5234375, + 0.478515625, + -0.1572265625, + 1.0078125, + -1.1328125, + -0.265625, + -1.2578125, + 0.59375, + -0.212890625, + -2.421875, + -0.921875, + 1.1953125, + 0.69921875, + 0.5078125, + 1.0546875, + 1.078125, + 1.375, + 1.0859375, + 0.90234375, + -1.1640625, + -0.0146484375, + 0.474609375, + 0.76171875, + -1.0546875, + 1.328125, + -0.0537109375, + -0.349609375, + -2.25, + -2.78125 + ], + "index": 0, + "object": "embedding", + "raw_output": null + } + ], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 7, + "total_tokens": 7, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/aa745b14fe67.json b/tests/integration/recordings/responses/aa745b14fe67.json new file mode 100644 index 000000000..cfca3ba7a --- /dev/null +++ b/tests/integration/recordings/responses/aa745b14fe67.json @@ -0,0 +1,12345 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": [ + "Hello, world!", + "How are you today?", + "This is a test." + ], + "encoding_format": "float" + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [ + { + "embedding": [ + 2.640625, + 0.67578125, + -1.4375, + -4.0, + 0.85546875, + -2.984375, + -5.03125, + 1.90625, + -3.34375, + 1.859375, + -1.6875, + -0.69140625, + 6.34375, + 0.58984375, + 3.3125, + 1.890625, + 1.765625, + -2.265625, + 1.1640625, + 3.40625, + -4.5, + 3.890625, + 2.375, + 0.439453125, + 3.328125, + 2.640625, + -5.5, + -3.96875, + -0.09765625, + 4.28125, + -2.671875, + 1.9453125, + 0.73046875, + 6.0, + -2.578125, + -0.1865234375, + -1.171875, + 0.40234375, + 3.125, + 2.125, + 0.609375, + -0.8515625, + 3.9375, + 0.6484375, + -2.296875, + -0.212890625, + -3.796875, + -0.97265625, + 0.80859375, + 0.48828125, + -1.8515625, + -2.953125, + -1.28125, + -0.353515625, + -0.5703125, + -1.5703125, + -1.9296875, + -2.4375, + -3.765625, + -0.7734375, + -4.28125, + 3.734375, + -0.89453125, + -0.77734375, + 0.08349609375, + 1.375, + 1.984375, + -0.77734375, + 3.1875, + -2.078125, + 3.84375, + 1.8984375, + 3.09375, + 0.90625, + -1.4609375, + 3.328125, + -3.46875, + -5.375, + 2.53125, + 3.75, + -1.265625, + -0.2734375, + 0.03515625, + -3.421875, + 0.043701171875, + -2.65625, + 0.376953125, + -1.5703125, + 0.40625, + -2.4375, + 3.65625, + 0.03662109375, + 0.63671875, + 0.287109375, + 0.236328125, + 1.6640625, + -3.5625, + 0.4296875, + -2.65625, + 1.484375, + 3.171875, + 3.515625, + 1.3046875, + 1.375, + 2.625, + -3.171875, + -1.34375, + 0.451171875, + -0.87890625, + -1.765625, + 1.15625, + 3.1875, + 3.390625, + 1.0078125, + -1.6640625, + -3.6875, + -1.5546875, + 0.3203125, + -2.28125, + 1.6484375, + -1.109375, + -1.2265625, + -1.484375, + -2.09375, + 3.375, + -1.65625, + 0.6640625, + 2.96875, + 2.078125, + 0.1806640625, + 1.5, + -1.8046875, + 1.234375, + -3.6875, + -0.53125, + 0.51171875, + -1.7421875, + -1.109375, + -3.359375, + -1.6796875, + -1.921875, + 1.9140625, + 1.9375, + -1.6953125, + -0.166015625, + 2.59375, + -2.953125, + 0.8828125, + -0.044189453125, + -0.82421875, + -0.75390625, + -0.59375, + -1.1796875, + -1.4375, + -2.890625, + -2.390625, + -1.84375, + 2.15625, + 5.5625, + -0.796875, + 0.296875, + -1.03125, + 2.734375, + -0.6796875, + -0.7734375, + -1.328125, + 2.140625, + -1.984375, + 2.046875, + -1.1015625, + 2.359375, + -0.1982421875, + -2.703125, + 2.453125, + 1.03125, + -1.9921875, + -0.7421875, + -4.8125, + 2.625, + 3.34375, + -1.3515625, + 2.703125, + -0.5625, + 2.078125, + -0.85546875, + 2.53125, + -1.296875, + -1.03125, + 0.60546875, + 2.765625, + 1.7421875, + -0.2216796875, + -1.328125, + 0.26171875, + 0.98828125, + 0.140625, + -1.265625, + -1.125, + 3.34375, + -2.203125, + 6.15625, + -3.671875, + 1.4375, + -0.07421875, + 1.9609375, + -1.0234375, + -1.9609375, + 3.046875, + -0.41796875, + -1.234375, + 0.4296875, + 0.70703125, + -0.27734375, + 3.296875, + -0.0830078125, + -0.23046875, + 1.8515625, + -0.49609375, + -3.015625, + 0.33203125, + 1.75, + -0.05859375, + -0.40234375, + 2.109375, + -1.359375, + -4.5, + 0.640625, + -2.171875, + 0.515625, + -4.03125, + 2.21875, + -4.375, + -0.34765625, + -1.4140625, + -2.015625, + -1.7578125, + -1.5625, + -2.125, + 0.78515625, + 2.59375, + 1.015625, + -0.306640625, + -1.4375, + -1.9765625, + 2.09375, + -0.1484375, + 3.0, + -2.25, + 2.609375, + -2.828125, + -0.74609375, + -2.0, + -2.234375, + -2.59375, + -0.373046875, + 0.0234375, + -0.328125, + 0.58203125, + 1.0078125, + 3.65625, + -1.109375, + -6.3125, + -3.125, + 3.078125, + -3.234375, + 1.2421875, + -3.140625, + -1.1640625, + 0.390625, + 0.6953125, + 0.0177001953125, + -2.6875, + -0.2119140625, + 0.1884765625, + 0.388671875, + 3.96875, + -1.359375, + -1.84375, + -3.328125, + -0.58984375, + 1.0625, + -2.640625, + 3.46875, + -1.4921875, + 0.87109375, + 0.470703125, + 0.271484375, + 4.59375, + -0.02099609375, + 1.1484375, + 0.333984375, + 2.890625, + 0.6328125, + 4.03125, + -0.08642578125, + 2.953125, + -3.3125, + -1.6640625, + 1.7890625, + -1.0078125, + -2.96875, + -1.390625, + -0.2451171875, + 1.9375, + -1.890625, + 0.86328125, + -0.1806640625, + 3.0625, + 0.35546875, + -0.7890625, + -4.21875, + 0.2197265625, + 2.0625, + -2.65625, + -1.1875, + 0.2099609375, + -0.6015625, + 0.46875, + -3.6875, + 2.71875, + -2.890625, + -2.1875, + -0.439453125, + 1.875, + -0.68359375, + 1.3984375, + -0.55859375, + -1.0390625, + -3.0, + 0.072265625, + 1.0078125, + -1.9765625, + -0.011474609375, + 1.2734375, + 0.81640625, + 0.361328125, + 1.875, + -0.435546875, + 1.9765625, + -0.46484375, + -1.7421875, + -3.1875, + 1.53125, + -1.453125, + -1.375, + 0.33203125, + 2.25, + -0.20703125, + -2.5, + 1.015625, + -2.796875, + 1.6875, + 0.91015625, + 0.73828125, + -0.67578125, + 0.96484375, + -2.765625, + 2.484375, + 5.6875, + 0.388671875, + -0.08837890625, + 0.8359375, + 1.2421875, + -0.87890625, + 1.765625, + 0.9375, + 3.515625, + 1.2421875, + -3.71875, + 1.4453125, + 0.373046875, + 0.89453125, + -1.2421875, + 0.91796875, + -1.1484375, + 1.34375, + 2.296875, + -4.0, + 2.640625, + 0.337890625, + 0.0, + -6.3125, + -1.234375, + -2.953125, + -0.447265625, + 1.921875, + -0.1650390625, + -1.2109375, + 1.3671875, + -1.875, + -0.83984375, + 1.25, + 1.203125, + 0.2138671875, + -1.2265625, + 0.1943359375, + -0.5546875, + -2.578125, + -3.28125, + 1.71875, + 4.21875, + 1.3984375, + -0.123046875, + 4.8125, + -0.57421875, + 0.54296875, + -2.125, + -1.2734375, + -1.703125, + 1.0625, + -2.171875, + 0.5, + -1.7109375, + 0.7890625, + 1.4140625, + 1.46875, + 1.96875, + 4.625, + -5.0, + -3.3125, + -0.93359375, + 3.0, + 1.0546875, + -1.5, + -2.296875, + 0.6328125, + -1.0078125, + -0.91015625, + 3.046875, + -1.859375, + -0.78125, + -3.5, + -4.03125, + 2.15625, + 2.484375, + 2.0, + 0.96875, + -1.546875, + 0.287109375, + 1.3984375, + 2.796875, + -0.984375, + 2.53125, + 2.71875, + 0.4140625, + 1.125, + 0.359375, + 2.421875, + -1.1328125, + -0.6328125, + -1.8984375, + 1.78125, + -0.66015625, + 1.125, + -1.984375, + -2.828125, + -0.466796875, + -0.6171875, + 1.3671875, + 2.25, + -0.0849609375, + -1.6171875, + -0.2890625, + 1.7578125, + 2.265625, + -0.99609375, + 3.578125, + -3.234375, + -2.765625, + -0.87109375, + -2.4375, + 1.3203125, + -1.3203125, + -1.78125, + -0.5390625, + 2.21875, + 0.1875, + -4.15625, + 1.296875, + -3.140625, + -1.6875, + -3.578125, + -4.625, + -4.78125, + 3.234375, + 5.03125, + 1.0234375, + -4.40625, + -0.63671875, + 0.47265625, + -0.79296875, + 2.234375, + 4.375, + -0.138671875, + 0.66796875, + 1.1015625, + 2.390625, + -0.36328125, + 3.578125, + 0.97265625, + -0.036376953125, + -3.78125, + 0.345703125, + -0.26953125, + -2.125, + -1.203125, + 3.984375, + 0.0023193359375, + 0.78125, + 0.77734375, + 2.3125, + -3.90625, + -2.671875, + 0.89453125, + -1.53125, + -1.03125, + 0.93359375, + 0.007110595703125, + 0.08349609375, + 3.40625, + -0.625, + -0.291015625, + -1.78125, + -2.046875, + 1.4765625, + 0.55078125, + 0.94921875, + 1.65625, + 3.390625, + -0.71484375, + -1.4609375, + 0.921875, + -1.1484375, + -0.1328125, + -3.15625, + -2.765625, + -0.97265625, + -0.5859375, + -0.08447265625, + -0.6015625, + -1.875, + 2.28125, + 0.94921875, + -1.859375, + 0.828125, + 6.375, + -0.58984375, + -1.3828125, + 0.255859375, + -0.609375, + 1.5234375, + 0.66015625, + 0.921875, + 1.6171875, + 3.578125, + 1.5703125, + -2.21875, + -1.796875, + 0.279296875, + -0.90625, + -1.4765625, + -1.7265625, + -2.25, + -1.0234375, + -3.6875, + -2.328125, + -1.71875, + 2.734375, + -1.6171875, + 1.1328125, + 0.265625, + 1.1953125, + 0.921875, + 1.484375, + 1.0546875, + -0.1787109375, + -2.0625, + -0.39453125, + -0.55859375, + -1.390625, + 2.734375, + -1.1328125, + -0.2392578125, + 0.66015625, + 2.125, + -2.59375, + 0.58203125, + -0.08056640625, + -0.6484375, + 0.1748046875, + -0.478515625, + 1.5703125, + 1.8828125, + -5.59375, + -1.8046875, + 2.84375, + -1.953125, + -3.765625, + 1.1328125, + 1.0625, + 0.1494140625, + -2.046875, + 0.2158203125, + 2.53125, + 0.80078125, + 3.859375, + 0.92578125, + -4.3125, + 2.578125, + -2.875, + 2.734375, + 1.0546875, + -1.5, + 1.6796875, + -0.91796875, + -3.40625, + 0.2138671875, + -1.625, + 2.15625, + 3.46875, + -3.8125, + -3.65625, + -0.1650390625, + 1.4140625, + -0.54296875, + 1.625, + 0.275390625, + 1.890625, + -3.28125, + 0.80859375, + -1.453125, + 0.83203125, + 3.40625, + -4.9375, + -3.34375, + 1.59375, + 1.8046875, + -0.08203125, + -3.015625, + 3.796875, + 2.953125, + 2.75, + 2.890625, + 2.03125, + 0.828125, + 1.6875, + 4.25, + 2.828125, + -2.21875, + -0.52734375, + -0.5703125, + -1.828125, + 5.96875, + -0.99609375, + 2.65625, + -3.578125, + 2.6875, + -0.55859375, + -0.482421875, + 0.37890625, + -4.96875, + -0.54296875, + 2.46875, + -4.4375, + 0.91015625, + -1.2109375, + 0.18359375, + 3.140625, + 2.1875, + -5.9375, + -5.9375, + 3.328125, + -1.3515625, + 3.1875, + 2.015625, + 0.126953125, + 4.34375, + 3.71875, + 0.73828125, + -3.859375, + -2.234375, + -2.03125, + -0.6171875, + 1.5703125, + 0.51953125, + -3.375, + -1.046875, + 0.15625, + 3.484375, + -0.376953125, + 2.125, + -3.34375, + 3.28125, + -3.546875, + 3.390625, + 2.546875, + 0.5546875, + -0.53125, + 2.109375, + 2.203125, + 2.109375, + -0.84375, + -3.625, + -3.40625, + -0.62109375, + -1.6796875, + -1.9921875, + 0.373046875, + -4.3125, + -0.15234375, + -1.875, + 0.060302734375, + -0.447265625, + -0.87109375, + -2.8125, + -1.796875, + 2.125, + -0.375, + -0.75390625, + -2.8125, + 2.34375, + 2.328125, + -1.8515625, + 2.25, + 0.0040283203125, + -1.5546875, + 3.84375, + -0.609375, + 1.671875, + -4.5625, + -0.1787109375, + 2.3125, + -0.353515625, + 1.3203125, + -3.421875, + 1.3515625, + 1.859375, + 1.578125, + -0.2158203125, + -0.90234375, + -1.5078125, + 0.255859375, + -0.08740234375, + 0.6328125, + -2.625, + -0.58203125, + 0.09912109375, + -0.05078125, + 0.83984375, + -2.921875, + -0.640625, + -0.1416015625, + 0.49609375, + -0.69921875, + 0.74609375, + 1.40625, + -0.7578125, + 0.84375, + 2.78125, + -0.32421875, + -2.046875, + 1.2109375, + -1.0234375, + 0.875, + 2.84375, + 1.375, + -1.71875, + 2.359375, + 3.609375, + -0.0277099609375, + 0.64453125, + -1.7578125, + 1.546875, + 0.86328125, + -2.78125, + -1.4296875, + -1.40625, + 1.1484375, + -1.6015625, + -1.0234375, + 0.609375, + 0.02392578125, + -0.166015625, + -2.4375, + -0.71875, + 1.421875, + -1.3671875, + 4.09375, + -0.7734375, + 1.5, + -4.84375, + 1.1875, + 4.15625, + 1.5625, + 2.265625, + -0.44921875, + 0.76171875, + 0.25390625, + -2.0, + 4.125, + -1.0625, + 1.7734375, + -3.578125, + 0.177734375, + 1.6171875, + -0.318359375, + 1.2109375, + -0.494140625, + 1.0234375, + 1.3828125, + -0.875, + 4.65625, + 0.3515625, + -1.75, + 1.5625, + 0.470703125, + -1.1484375, + -1.9921875, + -0.63671875, + 1.03125, + -1.71875, + 0.484375, + 3.578125, + 0.26953125, + -1.4453125, + 0.298828125, + 1.09375, + 2.703125, + 0.4921875, + 3.390625, + 2.46875, + -2.4375, + 0.8671875, + 0.8203125, + 0.42578125, + -0.66796875, + -0.09716796875, + -3.125, + -0.54296875, + 0.54296875, + 1.8828125, + -0.427734375, + -0.68359375, + -2.890625, + 1.5546875, + 1.359375, + -1.9921875, + 0.56640625, + -0.2216796875, + -1.1015625, + -0.97265625, + -2.9375, + 1.0859375, + 0.05859375, + -0.224609375, + 1.6640625, + 1.9921875, + 0.921875, + 0.70703125, + 2.21875, + -0.4296875, + 0.08203125, + 0.283203125, + -3.609375, + 1.765625, + -0.890625, + 0.83203125, + 0.201171875, + -1.90625, + -0.1943359375, + 1.5625, + 0.458984375, + -1.6953125, + -1.265625, + 0.8125, + -2.890625, + -3.703125, + 2.328125, + 2.84375, + -2.8125, + -1.3359375, + -0.146484375, + -1.6640625, + -0.1474609375, + -2.4375, + 1.6953125, + -2.125, + 2.65625, + 0.1474609375, + 1.75, + 2.359375, + -4.15625, + -1.1015625, + 1.0859375, + -1.9609375, + -0.390625, + 0.0185546875, + 1.359375, + 1.4375, + -1.0390625, + -2.4375, + 2.046875, + -0.53515625, + 0.92578125, + -0.9609375, + 5.15625, + -1.1328125, + -0.76953125, + -2.921875, + -1.390625, + 1.3046875, + -2.4375, + -1.53125, + -0.34765625, + 0.765625, + -0.466796875, + 2.390625, + 0.37890625, + 2.578125, + -2.078125, + 1.9765625, + 0.3046875, + 1.25, + 0.5703125, + -0.0361328125, + -0.478515625, + 0.46484375, + 3.046875, + -0.91015625, + -1.2421875, + -0.80078125, + 1.03125, + -0.640625, + -0.62890625, + 0.51171875, + -1.0234375, + 1.6640625, + -2.03125, + 4.65625, + 0.4921875, + -0.84375, + -1.5390625, + 4.875, + 0.859375, + 0.37890625, + -2.875, + -1.8671875, + -0.515625, + 0.26171875, + 2.46875, + 2.671875, + -3.421875, + 1.140625, + 1.4140625, + 1.8046875, + -0.3203125, + 2.28125, + -1.8359375, + -3.21875, + -0.01171875, + -2.609375, + -2.546875, + 3.90625, + -3.09375, + 2.890625, + -1.0078125, + 0.130859375, + -1.53125, + -3.578125, + 1.9765625, + -0.1025390625, + -0.734375, + -0.453125, + -0.953125, + -1.1484375, + -0.359375, + 3.9375, + 0.10107421875, + 0.828125, + -2.3125, + -1.71875, + 0.12158203125, + 0.20703125, + 1.3515625, + 0.6484375, + 1.875, + 1.1796875, + -1.65625, + -4.1875, + 8.3125, + 0.291015625, + -2.09375, + 2.4375, + 1.3671875, + 3.71875, + -1.4921875, + -0.365234375, + 0.0076904296875, + 2.609375, + 2.71875, + 0.86328125, + 2.984375, + -1.0859375, + -2.5625, + 2.859375, + -2.421875, + -2.3125, + -0.283203125, + 1.171875, + -2.703125, + 1.1953125, + 0.39453125, + 2.0, + 1.453125, + -0.251953125, + 0.59765625, + -3.71875, + -0.83203125, + -0.671875, + 3.609375, + 0.326171875, + -1.953125, + 1.0546875, + -3.796875, + 0.98828125, + 2.875, + -2.953125, + -1.4375, + 0.080078125, + -0.5078125, + 1.234375, + 3.34375, + -1.96875, + -0.0079345703125, + -1.0703125, + -1.3984375, + 0.173828125, + -0.47265625, + 3.125, + -1.7890625, + 0.1513671875, + -0.228515625, + 0.400390625, + 0.74609375, + -0.0014801025390625, + -0.91015625, + 0.1259765625, + 1.4375, + -1.09375, + -1.3984375, + 1.5390625, + 1.796875, + -1.234375, + 1.0078125, + 0.8203125, + 0.318359375, + -1.2578125, + 2.5, + 0.75, + -1.8671875, + 1.109375, + -1.4375, + 4.90625, + -2.890625, + -0.6875, + 0.09326171875, + 1.484375, + -6.1875, + -0.1494140625, + 2.109375, + 0.9296875, + 0.84375, + -0.84375, + -2.875, + -5.46875, + -3.28125, + -5.5625, + -3.546875, + -0.8359375, + -0.3359375, + -0.74609375, + -1.15625, + 0.55859375, + 0.94140625, + 4.125, + 4.5625, + 0.89453125, + 0.7578125, + 0.357421875, + 1.5546875, + -1.65625, + 1.0, + 1.2578125, + 0.9375, + -0.6171875, + 1.65625, + 0.11376953125, + -0.98046875, + 3.890625, + 0.859375, + 5.0, + -1.2421875, + 3.109375, + -2.796875, + -1.0078125, + 1.7734375, + 0.5234375, + -1.7265625, + 1.203125, + -1.546875, + 3.0625, + 2.296875, + 1.6875, + -2.703125, + 6.5, + -0.365234375, + 1.40625, + 1.046875, + -0.48046875, + -1.25, + -3.078125, + -2.109375, + -0.47265625, + -4.25, + 0.55859375, + -1.5390625, + -0.306640625, + -3.03125, + -4.9375, + 0.62890625, + 2.28125, + 1.9921875, + -1.109375, + 3.640625, + 4.09375, + 0.33203125, + 1.03125, + 3.3125, + -2.09375, + 0.76171875, + -0.421875, + 0.92578125, + 1.359375, + 3.890625, + -7.5625, + 1.4765625, + -1.1015625, + -0.7421875, + -0.5625, + 0.77734375, + 0.208984375, + -3.390625, + -0.578125, + -2.328125, + -2.59375, + -1.6796875, + 2.0, + -2.3125, + 1.234375, + 0.126953125, + 0.45703125, + 1.8984375, + -0.95703125, + -1.5859375, + -0.1572265625, + 0.275390625, + 0.470703125, + 1.4375, + 0.94140625, + 0.10302734375, + -1.03125, + -0.3046875, + -1.1015625, + 0.2734375, + -0.373046875, + 0.6875, + 1.125, + -0.44140625, + -0.00701904296875, + 3.765625, + 1.6640625, + -1.625, + -3.109375, + 1.0078125, + -1.5625, + -3.171875, + 1.1171875, + -0.0947265625, + 3.5625, + -1.1484375, + -1.4296875, + 1.5, + 1.125, + -1.015625, + -0.2236328125, + 3.59375, + 3.390625, + -1.2890625, + 1.765625, + -0.90625, + 1.6015625, + -0.08447265625, + -1.546875, + -0.1826171875, + 1.734375, + 0.93359375, + -1.171875, + 1.21875, + 1.5703125, + -3.234375, + -3.546875, + -0.439453125, + -3.03125, + -1.8203125, + -4.4375, + -1.140625, + -2.421875, + -2.203125, + -1.28125, + -1.875, + 1.7734375, + -0.84765625, + -1.4296875, + 0.416015625, + 0.78125, + -1.59375, + 3.515625, + 2.15625, + -1.0, + 2.5, + 0.115234375, + -2.8125, + 0.5078125, + 0.322265625, + 2.453125, + 2.171875, + -1.8515625, + 1.5625, + -1.546875, + -2.453125, + 1.484375, + -1.328125, + 1.28125, + 0.65625, + -1.28125, + -1.203125, + 0.35546875, + -3.1875, + 0.11962890625, + -4.59375, + -5.25, + 2.390625, + -0.236328125, + -2.03125, + -4.1875, + -1.515625, + -1.984375, + 3.296875, + 2.6875, + -0.94140625, + 2.171875, + -2.609375, + 0.061767578125, + -1.21875, + -0.03564453125, + 0.79296875, + -4.15625, + -0.181640625, + 1.9765625, + -1.203125, + -0.76953125, + 1.4375, + -0.64453125, + -1.46875, + -0.11181640625, + -0.337890625, + 0.5546875, + 1.3125, + -1.3984375, + -0.84765625, + 1.3828125, + -0.578125, + -0.208984375, + 0.10009765625, + -2.328125, + 1.9296875, + 2.703125, + -0.474609375, + -0.8359375, + 1.96875, + -0.287109375, + -0.98046875, + 1.9375, + -0.66796875, + 3.359375, + -0.35546875, + 0.01324462890625, + 3.640625, + 2.21875, + -0.88671875, + 2.40625, + 2.53125, + -3.390625, + 2.34375, + 1.3203125, + 2.53125, + 1.7421875, + 0.765625, + 1.3671875, + 0.64453125, + -0.6328125, + 4.625, + 0.494140625, + -1.84375, + -1.765625, + -2.328125, + 1.2109375, + 2.75, + 2.453125, + 3.328125, + 0.5078125, + -1.3828125, + 1.03125, + -0.83203125, + -1.40625, + 0.71875, + -0.310546875, + 0.283203125, + -0.65234375, + -0.037353515625, + 0.275390625, + 0.91796875, + -1.3828125, + 2.9375, + -5.0625, + -2.0625, + 1.46875, + 2.515625, + -2.09375, + 2.96875, + -0.0274658203125, + 0.91796875, + -3.078125, + 3.6875, + -2.34375, + 1.6328125, + 3.0625, + -0.75390625, + 2.21875, + -1.46875, + -2.46875, + -0.318359375, + -0.34765625, + -5.71875, + 0.3984375, + 2.4375, + 3.046875, + -0.4453125, + -2.796875, + -1.2421875, + 0.67578125, + 1.1953125, + -0.3359375, + 1.6640625, + 3.984375, + 1.671875, + -0.482421875, + 3.609375, + -1.5625, + 2.953125, + 1.015625, + -0.65234375, + 2.734375, + -1.9765625, + -0.9921875, + -3.140625, + 0.1201171875, + 2.953125, + 1.0, + -0.34765625, + 0.048583984375, + -0.5390625, + 1.6640625, + -0.59765625, + -0.828125, + -1.2890625, + 0.71484375, + 1.8203125, + -3.328125, + 2.546875, + -0.0272216796875, + -0.66796875, + -1.2734375, + 1.9765625, + -1.4453125, + -0.52734375, + 1.0546875, + -1.8203125, + 2.84375, + -0.78125, + 0.345703125, + 2.09375, + 2.546875, + 3.484375, + 0.0517578125, + -1.390625, + 2.046875, + -1.3203125, + -1.5, + -0.287109375, + -3.109375, + -0.158203125, + -1.1875, + 2.390625, + -1.4765625, + -0.921875, + -2.09375, + -2.375, + 3.375, + -1.75, + -0.0230712890625, + 0.0, + 2.6875, + -2.171875, + 0.5703125, + -1.7890625, + 2.640625, + -2.03125, + 1.4609375, + -0.38671875, + -0.044189453125, + 0.1806640625, + 1.9765625, + -0.6484375, + -2.34375, + 3.84375, + -1.1015625, + 0.58984375, + -2.53125, + 0.7578125, + -0.69140625, + -4.3125, + 3.3125, + 11.4375, + -0.064453125, + -3.8125, + -1.25, + 4.25, + -0.88671875, + -3.0, + -7.3125, + -0.9609375, + -3.21875, + -3.03125, + -0.7421875, + 0.28125, + 1.625, + -1.859375, + -0.66796875, + 1.5234375, + -0.38671875, + -0.1796875, + -1.625, + -0.00732421875, + 1.625, + -1.234375, + -1.1015625, + -2.59375, + -2.546875, + -0.322265625, + 1.796875, + -1.984375, + 0.671875, + -0.984375, + 2.0625, + -1.4765625, + 0.62109375, + 0.7734375, + -3.75, + -0.4609375, + -0.35546875, + 6.1875, + 0.76171875, + 1.890625, + -0.40234375, + 3.15625, + 2.9375, + 1.9296875, + 3.578125, + -2.46875, + 0.052978515625, + 0.74609375, + 2.765625, + 0.0242919921875, + -1.46875, + 0.9765625, + -0.90234375, + 2.515625, + -3.171875, + 2.75, + -0.39453125, + 0.21484375, + 2.28125, + 0.546875, + -2.21875, + -0.416015625, + 0.8125, + -1.21875, + 0.5546875, + 1.375, + 2.234375, + 0.92578125, + -0.67578125, + -4.5625, + 2.265625, + 2.578125, + 5.5, + -0.1728515625, + 1.5234375, + 1.515625, + -0.6328125, + -1.203125, + -0.78515625, + -1.1484375, + 2.484375, + 1.6875, + -0.0830078125, + 2.734375, + -0.2177734375, + 0.9296875, + -1.03125, + 0.64453125, + -0.421875, + 2.328125, + 0.921875, + 1.640625, + 0.83203125, + -0.98046875, + -0.9140625, + 1.953125, + 1.296875, + -0.5625, + -1.84375, + -3.875, + 1.328125, + 1.4140625, + 0.22265625, + 0.25, + -1.078125, + -1.65625, + 0.458984375, + 0.6171875, + -0.4296875, + -0.76953125, + -0.59375, + 2.390625, + -1.59375, + -0.703125, + -2.15625, + 1.1796875, + 3.34375, + 1.90625, + -0.2490234375, + 0.2421875, + 0.34765625, + -1.4921875, + 1.921875, + 1.3515625, + 0.88671875, + 1.390625, + -2.15625, + 0.326171875, + -0.375, + 0.02001953125, + 1.734375, + 3.859375, + -0.5078125, + -2.84375, + -0.1962890625, + 5.0, + -0.125, + -0.498046875, + 0.00299072265625, + -1.828125, + 2.046875, + 0.84765625, + -3.140625, + -2.890625, + 0.7109375, + 1.5859375, + 0.76171875, + -0.80859375, + 0.435546875, + 3.109375, + 1.640625, + -0.1953125, + 0.201171875, + -1.9921875, + -5.0, + 0.640625, + 1.3984375, + 1.65625, + -1.296875, + 1.46875, + -0.8203125, + -4.09375, + 3.171875, + -1.3828125, + 0.89453125, + -2.96875, + 1.90625, + -1.2421875, + -5.59375, + 1.2109375, + -1.515625, + 1.8515625, + 0.004058837890625, + -1.484375, + 1.2734375, + 1.234375, + -0.01544189453125, + 0.494140625, + -2.21875, + 1.078125, + 0.1376953125, + 1.9453125, + 1.1875, + 0.146484375, + -0.984375, + -1.4375, + -0.57421875, + -0.208984375, + 0.85546875, + 0.34765625, + 1.6953125, + 1.7734375, + -0.02294921875, + -0.62109375, + 3.578125, + 2.609375, + 1.2578125, + 0.734375, + -0.3359375, + 1.0390625, + -0.5703125, + -1.5, + -0.52734375, + -1.703125, + 2.546875, + 2.78125, + 1.015625, + 1.3515625, + 0.92578125, + -0.99609375, + 1.8359375, + 2.953125, + -1.46875, + -0.07373046875, + -0.51953125, + -0.96484375, + 1.515625, + 1.375, + 1.6953125, + -4.375, + -1.5078125, + -0.328125, + -0.01202392578125, + -0.94140625, + 0.5546875, + 0.609375, + -2.65625, + -3.078125, + -2.609375, + -0.474609375, + -0.53125, + -0.18359375, + -0.92578125, + -2.265625, + -1.265625, + 0.59375, + -2.984375, + 2.5, + 1.953125, + 1.3984375, + -1.984375, + 0.205078125, + 2.078125, + 0.5078125, + 0.6796875, + -0.1748046875, + -0.51171875, + 2.421875, + -2.296875, + 2.84375, + -2.609375, + 1.15625, + -2.3125, + -1.09375, + 0.90625, + 3.4375, + -3.84375, + 2.484375, + -1.90625, + 2.140625, + -1.625, + 0.6640625, + 2.125, + 2.21875, + -1.0859375, + -1.28125, + -0.5703125, + 0.05810546875, + -0.1513671875, + 0.061767578125, + -0.6484375, + 0.341796875, + -2.921875, + 5.1875, + 0.97265625, + -4.5, + 3.25, + 0.515625, + 0.2314453125, + -1.609375, + -2.0625, + 2.015625, + -1.390625, + 0.296875, + 0.494140625, + 0.90625, + 0.96484375, + -2.328125, + -3.703125, + 1.75, + -3.265625, + 0.6796875, + -1.859375, + 1.8203125, + -0.9296875, + -0.318359375, + -2.234375, + -0.1767578125, + 0.6015625, + 0.5390625, + 1.59375, + 1.3671875, + -0.640625, + 0.90234375, + 0.6640625, + -1.796875, + 2.34375, + -2.734375, + 0.22265625, + -2.609375, + -0.75, + -1.4609375, + -1.34375, + -1.21875, + 1.328125, + -0.640625, + -3.15625, + 2.96875, + -1.0, + 0.1083984375, + 1.75, + 1.3671875, + -1.84375, + 10.5625, + 2.328125, + 0.60546875, + 3.3125, + 0.019775390625, + 0.88671875, + 0.000949859619140625, + -1.2578125, + -2.171875, + -1.6484375, + 1.140625, + 0.08984375, + -1.8046875, + -1.328125, + -1.8203125, + 0.79296875, + -4.125, + -0.99609375, + 0.984375, + 1.6640625, + 1.59375, + -3.75, + 1.0546875, + 2.328125, + -0.349609375, + 0.671875, + -2.109375, + -5.125, + 0.06787109375, + 3.71875, + 2.8125, + -0.302734375, + -2.21875, + -2.515625, + 1.734375, + -2.46875, + -0.5859375, + 1.375, + 0.25, + -0.333984375, + -1.1640625, + 0.77734375, + 0.66015625, + -0.1396484375, + -0.451171875, + 0.60546875, + -0.09716796875, + -1.265625, + 1.7265625, + -0.048583984375, + 2.59375, + -0.21875, + -1.546875, + -1.875, + 0.1708984375, + -2.640625, + 1.8671875, + 0.76171875, + 0.1943359375, + 1.4375, + -1.8515625, + 0.16796875, + -1.4921875, + -1.5703125, + -1.6640625, + 2.71875, + 0.7421875, + -1.921875, + 0.8359375, + -1.5859375, + 1.0859375, + -0.00037384033203125, + -1.4140625, + 2.265625, + -0.0037689208984375, + -2.90625, + 2.453125, + -4.34375, + -0.76953125, + -1.375, + -0.78515625, + 1.921875, + 2.375, + -0.169921875, + 0.32421875, + 0.388671875, + 0.68359375, + 1.234375, + 0.87890625, + -0.24609375, + -1.1875, + -1.3828125, + -1.4921875, + 0.2412109375, + -0.82421875, + -0.796875, + -0.875, + 0.76171875, + 0.2275390625, + -1.390625, + 0.0654296875, + -0.84375, + 1.3828125, + -2.46875, + -0.2578125, + 0.8515625, + 0.337890625, + 1.1875, + 0.306640625, + 0.62890625, + -2.703125, + -0.390625, + -3.21875, + -3.15625, + 0.6796875, + -3.765625, + 2.875, + -0.8671875, + -0.6953125, + 1.0546875, + -1.0625, + -0.9921875, + 16.75, + -0.65625, + -1.265625, + 2.4375, + 0.0556640625, + -0.498046875, + 0.64453125, + -0.703125, + -3.234375, + 0.4921875, + 3.21875, + -0.765625, + -1.65625, + 0.404296875, + -2.28125, + -2.9375, + 0.490234375, + 2.203125, + 0.7265625, + 0.68359375, + 0.359375, + 1.4296875, + 1.40625, + -0.6953125, + -0.0703125, + -1.984375, + 0.61328125, + -3.765625, + 0.9609375, + 0.380859375, + 3.734375, + -4.59375, + -2.296875, + 2.15625, + 1.8671875, + 6.21875, + -2.65625, + 2.640625, + -0.02294921875, + 1.421875, + -2.375, + -2.78125, + -0.263671875, + -1.390625, + -1.9140625, + 0.76953125, + 0.306640625, + -0.08740234375, + 0.61328125, + -3.5, + 0.7265625, + -1.328125, + 0.96875, + 2.328125, + -3.625, + -1.8046875, + 0.482421875, + 6.40625, + -1.8203125, + -1.40625, + -0.98046875, + 0.77734375, + -0.78125, + -0.73046875, + 1.1640625, + 2.796875, + -1.078125, + -0.63671875, + 2.140625, + -0.16015625, + -2.859375, + 0.54296875, + -0.38671875, + -0.259765625, + -0.92578125, + -0.181640625, + 0.6484375, + 1.5078125, + 2.890625, + -0.1845703125, + 0.45703125, + 0.85546875, + 0.2373046875, + 1.4921875, + 0.5546875, + -0.734375, + 1.515625, + 0.8828125, + 0.0888671875, + 1.7109375, + 0.99609375, + 1.78125, + 0.1572265625, + -1.7890625, + 2.453125, + -0.9921875, + -1.8203125, + -2.359375, + 0.294921875, + 0.4765625, + -3.640625, + 4.90625, + -0.134765625, + 2.484375, + -0.1630859375, + 1.84375, + -1.390625, + -3.96875, + 0.88671875, + -1.7421875, + 0.330078125, + 0.2138671875, + -0.84375, + 0.365234375, + 1.7890625, + 1.546875, + -0.17578125, + 2.484375, + -0.3671875, + -0.2001953125, + 1.5078125, + 2.609375, + -1.140625, + -0.265625, + -1.7734375, + 0.328125, + 1.359375, + -1.5625, + 2.25, + -0.47265625, + 0.15625, + -0.63671875, + 0.81640625, + -0.73046875, + 2.609375, + -3.046875, + -1.1640625, + 3.1875, + 1.09375, + 0.765625, + 1.1484375, + -0.65234375, + -0.81640625, + 0.9921875, + 0.91796875, + -1.2734375, + -0.1875, + 0.70703125, + -0.5625, + -2.40625, + -0.984375, + -0.2353515625, + -0.0140380859375, + 1.359375, + 0.63671875, + 0.037109375, + -2.375, + 1.4921875, + 1.9765625, + -0.93359375, + -1.34375, + -0.2197265625, + 1.4453125, + 0.1259765625, + -0.01556396484375, + -0.60546875, + -1.7109375, + 1.265625, + 3.859375, + 1.96875, + -0.333984375, + 3.078125, + -4.53125, + 3.671875, + 1.0546875, + -0.04638671875, + -1.78125, + -1.359375, + -1.7890625, + -1.8515625, + 1.6171875, + -0.8046875, + 0.2333984375, + 0.80859375, + 1.2734375, + 0.07177734375, + 1.2265625, + 0.64453125, + 2.515625, + 1.8515625, + -1.125, + -4.40625, + -0.255859375, + 3.171875, + -0.99609375, + -1.390625, + 2.140625, + -1.046875, + -2.78125, + 1.34375, + -1.8046875, + -0.6953125, + -0.4375, + -1.6640625, + -2.734375, + -1.015625, + -0.49609375, + 1.3359375, + -2.5, + 1.984375, + 0.1953125, + -2.375, + 2.109375, + 3.6875, + 1.40625, + 1.0234375, + 1.9375, + -0.40234375, + -2.78125, + -0.5234375, + 8.375, + 2.140625, + 0.79296875, + -0.2080078125, + -0.06787109375, + 0.291015625, + 0.6640625, + -0.33984375, + -3.9375, + -2.25, + 3.09375, + 1.1171875, + 1.1328125, + 0.9765625, + 0.69140625, + -2.015625, + 0.02978515625, + 1.0390625, + -2.0, + 0.91796875, + -3.4375, + 2.75, + 0.97265625, + -2.890625, + 0.86328125, + 2.359375, + 0.57421875, + -0.71875, + 0.5546875, + -1.140625, + -2.21875, + 0.1943359375, + 2.296875, + -0.92578125, + -3.078125, + 0.56640625, + -0.400390625, + -0.412109375, + 0.625, + 0.453125, + 2.703125, + -1.8125, + 3.46875, + -0.1708984375, + -2.84375, + -0.0159912109375, + 0.93359375, + 1.0625, + -1.15625, + 7.0, + -3.46875, + 2.015625, + -3.109375, + 2.625, + 3.03125, + 0.78125, + -0.11083984375, + 0.1513671875, + 0.236328125, + 1.0703125, + 1.3203125, + -2.796875, + -1.6875, + 1.3203125, + 0.1279296875, + -1.40625, + -0.365234375, + -0.267578125, + 1.1171875, + -0.2138671875, + -0.796875, + 0.0556640625, + 0.1728515625, + 3.09375, + 0.177734375, + 0.29296875, + 0.23046875, + -4.53125, + 0.16015625, + -1.4453125, + 0.0155029296875, + -0.03173828125, + 1.2734375, + -3.71875, + -3.03125, + -1.7421875, + 4.53125, + 0.9296875, + 0.73046875, + -3.171875, + -1.46875, + 1.9453125, + -0.416015625, + -13.5625, + -0.92578125, + 2.328125, + -1.15625, + 1.6640625, + -1.7734375, + -0.875, + 1.578125, + -1.640625, + 0.52734375, + -2.734375, + 0.87109375, + 0.1982421875, + -0.99609375, + -0.55078125, + -0.84375, + 1.0859375, + -1.0, + 1.3125, + 1.1640625, + -1.515625, + -0.63671875, + 0.7109375, + -3.546875, + 0.734375, + -0.87890625, + 0.00096893310546875, + 1.8125, + -3.421875, + 1.9296875, + -1.2421875, + -0.56640625, + -2.5, + -0.154296875, + -0.365234375, + -2.640625, + -0.88671875, + -2.109375, + -1.5, + -1.1484375, + -0.8046875, + 0.82421875, + 0.50390625, + 0.298828125, + 2.484375, + -0.796875, + -0.9453125, + -0.734375, + 0.5625, + 0.053955078125, + 0.97265625, + 0.8125, + 1.8984375, + 1.234375, + -0.3515625, + 0.3046875, + 0.89453125, + 2.21875, + -0.0286865234375, + 0.94921875, + 2.5, + 0.54296875, + 0.043701171875, + -0.64453125, + 0.4765625, + -0.80078125, + 1.9140625, + 2.828125, + 1.5859375, + 1.015625, + 1.0625, + -6.78125, + -0.1328125, + -2.109375, + 0.0019073486328125, + -0.341796875, + -1.5703125, + -3.75, + 0.9375, + -0.84375, + -1.125, + 4.125, + -4.46875, + 0.57421875, + 1.3671875, + -1.3828125, + -0.0198974609375, + 3.734375, + -2.515625, + 0.875, + -3.40625, + 1.9375, + 2.5, + 1.109375, + -2.15625, + 0.74609375, + 3.796875, + 2.65625, + -0.75390625, + 0.0157470703125, + 2.328125, + 2.5625, + -1.2578125, + 1.6484375, + 0.6875, + 1.484375, + 0.78515625, + -0.1455078125, + -0.765625, + 2.421875, + -1.71875, + 0.142578125, + -0.01123046875, + 1.71875, + -0.69921875, + -0.003936767578125, + 2.6875, + -2.75, + 2.5, + 0.62890625, + 0.72265625, + 1.5390625, + -1.078125, + 1.1484375, + -0.162109375, + 3.03125, + 1.015625, + 0.03759765625, + 0.2216796875, + -1.8828125, + -3.390625, + 0.65625, + -0.51953125, + 4.59375, + 0.7890625, + -1.40625, + 2.421875, + -0.056640625, + 1.515625, + 0.1513671875, + 2.140625, + 0.1826171875, + -1.734375, + -1.6796875, + 0.1650390625, + -2.109375, + -1.2109375, + -0.05126953125, + 4.40625, + -2.90625, + -0.69140625, + -1.5390625, + -1.5625, + -0.81640625, + 0.50390625, + 0.953125, + -3.296875, + -1.8515625, + 2.25, + 0.314453125, + 0.91796875, + -2.28125, + -0.059814453125, + -1.8515625, + 0.8515625, + -1.09375, + -1.46875, + 2.484375, + 0.5546875, + -1.0234375, + -1.2421875, + 0.19921875, + 0.09326171875, + 1.3125, + 2.421875, + 0.42578125, + -1.4921875, + 0.140625, + 3.5625, + -0.06982421875, + -1.3671875, + -3.390625, + 0.1533203125, + -0.6015625, + -0.5546875, + 4.40625, + 0.59375, + 0.486328125, + 1.453125, + 1.1875, + 2.21875, + -1.96875, + -0.98046875, + 0.84765625, + 1.53125, + -0.6640625, + -0.296875, + 1.5859375, + 3.40625, + -0.953125, + -1.109375, + 0.4453125, + -2.109375, + 1.8125, + -1.8515625, + 1.140625, + 0.125, + 2.203125, + -2.25, + -1.703125, + 1.0703125, + 0.78125, + 2.875, + 1.9375, + 0.83203125, + -1.6640625, + 2.65625, + -0.0308837890625, + 0.369140625, + 2.78125, + -1.984375, + -0.059326171875, + 1.03125, + 0.8671875, + -3.015625, + 0.64453125, + -0.038330078125, + -3.609375, + 0.416015625, + 2.53125, + 1.6953125, + 3.828125, + 2.15625, + 1.2109375, + -0.625, + 0.83984375, + 1.90625, + 1.21875, + 1.3203125, + -2.859375, + 0.87109375, + 0.73046875, + 2.046875, + -0.01165771484375, + -3.296875, + 0.2470703125, + 0.8203125, + -1.5390625, + 0.71875, + -0.875, + 2.046875, + -0.056884765625, + -3.125, + 4.6875, + 1.8671875, + -1.2890625, + -1.2578125, + 0.2099609375, + -1.484375, + 1.5703125, + -1.921875, + 0.81640625, + 1.703125, + -1.9609375, + -3.234375, + 2.546875, + 4.34375, + -3.296875, + -1.1953125, + 4.15625, + 0.5625, + -1.078125, + 0.054443359375, + -2.8125, + -0.21484375, + 0.208984375, + -1.421875, + -0.59375, + -1.390625, + 1.4765625, + -1.0625, + -5.21875, + 0.10693359375, + -2.296875, + 0.796875, + 0.69921875, + -2.078125, + 1.2109375, + -5.34375, + 0.12109375, + 2.296875, + 1.03125, + -1.7734375, + -0.54296875, + -2.546875, + -0.734375, + 1.640625, + 2.0, + -2.140625, + -0.9765625, + 0.470703125, + -0.3515625, + 0.61328125, + -0.365234375, + 1.6015625, + 0.392578125, + -0.98828125, + -2.53125, + -1.0234375, + -0.294921875, + 1.640625, + -1.6953125, + -1.3046875, + 0.9609375, + -1.359375, + -1.796875, + 0.66796875, + 0.45703125, + -2.6875, + 1.5234375, + -1.40625, + -0.71875, + -0.5859375, + -7.25, + -1.7109375, + -0.166015625, + -4.21875, + 2.8125, + -2.265625, + 1.734375, + -1.9296875, + 1.7734375, + -0.2333984375, + -0.1708984375, + -2.3125, + -0.050537109375, + -3.4375, + -0.81640625, + -2.015625, + -3.421875, + -0.73828125, + -2.5, + 1.5703125, + -2.859375, + 0.05908203125, + 4.46875, + -1.375, + -0.1357421875, + 0.0235595703125, + -1.828125, + -1.1953125, + 0.5859375, + 1.328125, + -1.0390625, + 0.92578125, + 0.8125, + 1.9453125, + 0.71875, + -0.193359375, + 1.1171875, + 3.1875, + -0.19921875, + -0.68359375, + -0.15625, + 3.265625, + 0.345703125, + 0.1845703125, + 4.375, + 1.5859375, + 0.7890625, + 4.34375, + 2.1875, + 0.87890625, + -2.59375, + 4.40625, + -2.21875, + 1.0859375, + -5.0625, + -0.314453125, + -1.6015625, + -1.359375, + 3.515625, + -0.435546875, + -0.0224609375, + -1.09375, + 0.1416015625, + 1.0234375, + 0.50390625, + 0.2578125, + 0.9765625, + 2.109375, + -2.90625, + 0.984375, + -0.8125, + 1.4375, + -1.5859375, + 1.2890625, + 3.921875, + -0.326171875, + 1.9921875, + 0.72265625, + -1.2421875, + 0.32421875, + -1.515625, + 0.82421875, + 0.2451171875, + -1.8359375, + -0.408203125, + -0.93359375, + 0.400390625, + -0.0191650390625, + -10.0625, + 3.140625, + 1.9765625, + 0.578125, + -0.03173828125, + -0.2412109375, + -0.671875, + 1.1328125, + -2.140625, + 2.953125, + 1.4921875, + -0.027099609375, + -0.8125, + 1.171875, + -1.0234375, + 1.328125, + 0.78125, + -1.53125, + -0.06884765625, + 0.74609375, + 0.44921875, + -1.390625, + -0.337890625, + -0.84765625, + 0.98046875, + -3.015625, + 1.0234375, + -1.109375, + -2.125, + 3.515625, + -0.76171875, + -0.69140625, + 0.56640625, + 1.921875, + -4.71875, + 2.125, + -0.003662109375, + -2.390625, + -0.79296875, + -6.5, + 1.4765625, + 0.019775390625, + -1.25, + -2.828125, + 2.359375, + -0.640625, + -2.09375, + 0.466796875, + 2.65625, + -0.26953125, + -2.40625, + 1.515625, + 1.703125, + -0.166015625, + -4.78125, + -1.1171875, + 4.03125, + 0.279296875, + 0.91796875, + -0.7109375, + -1.0859375, + -1.0859375, + -2.375, + -0.134765625, + -2.1875, + 2.84375, + 3.859375, + -0.75390625, + 0.2236328125, + 1.1953125, + -1.625, + -0.8984375, + 0.5625, + -2.28125, + -0.65625, + 0.5390625, + 0.73046875, + -2.375, + 0.80078125, + 2.609375, + -1.078125, + -0.609375, + 1.671875, + 0.1962890625, + 0.640625, + 0.609375, + 1.7421875, + 2.75, + -0.6796875, + -0.828125, + 0.56640625, + -1.1875, + -1.265625, + 2.46875, + -0.0233154296875, + 2.828125, + -5.09375, + 2.21875, + -1.3125, + 1.234375, + 4.15625, + 0.7265625, + 0.875, + 2.34375, + -0.296875, + -1.765625, + -2.234375, + 4.34375, + 0.03955078125, + -1.265625, + 0.94140625, + 3.703125, + 2.15625, + -1.6640625, + -1.1484375, + -2.796875, + 0.60546875, + 0.578125, + -1.5703125, + -3.03125, + -3.296875, + -1.3359375, + -0.78125, + -0.37890625, + 3.8125, + 2.90625, + 0.283203125, + -0.11865234375, + -0.6328125, + -0.4140625, + 0.5859375, + -3.796875, + 5.53125, + 0.81640625, + -1.5078125, + -0.369140625, + 1.84375, + 0.30859375, + -1.6875, + -0.26171875, + 0.71875, + -0.2236328125, + 1.921875, + 0.28515625, + 3.28125, + -2.125, + -2.734375, + 2.03125, + 3.859375, + 0.7734375, + -1.6328125, + -0.59375, + -1.640625, + 1.015625, + -1.171875, + 0.41015625, + -2.203125, + 1.0390625, + -0.224609375, + 3.40625, + 0.376953125, + -1.7109375, + 1.1875, + -2.96875, + 2.84375, + -0.05029296875, + 0.3984375, + 1.2890625, + 3.359375, + -3.015625, + 1.015625, + -3.3125, + -0.5703125, + -0.310546875, + 1.3203125, + -4.15625, + 1.484375, + -2.96875, + -1.2734375, + -2.578125, + -0.490234375, + 0.94140625, + -0.06298828125, + -0.32421875, + -1.046875, + 1.171875, + -3.515625, + -2.328125, + 1.2578125, + 0.47265625, + 3.40625, + 0.91015625, + 0.734375, + 0.8125, + -3.09375, + -1.0703125, + -2.859375, + 0.2734375, + 0.11474609375, + 1.4296875, + -0.1640625, + 2.21875, + -0.30859375, + -0.310546875, + -0.421875, + -1.1328125, + 1.53125, + -1.0546875, + -1.0390625, + 1.2109375, + -1.1953125, + -3.5625, + -0.482421875, + 0.51953125, + 1.390625, + 1.484375, + 0.0235595703125, + 0.275390625, + 0.298828125, + -0.1455078125, + -2.0625, + -1.6328125, + 1.6796875, + -0.259765625, + 0.67578125, + 3.015625, + 0.609375, + -1.1015625, + 4.15625, + -0.8984375, + 1.1796875, + 1.28125, + 0.0308837890625, + 0.87890625, + -0.80859375, + 1.7421875, + -0.8359375, + 1.46875, + -0.9921875, + -1.421875, + 0.056640625, + -1.5859375, + 1.671875, + 2.6875, + 1.046875, + -1.796875, + -1.9921875, + -1.4375, + 0.85546875, + 4.96875, + 2.03125, + -0.11474609375, + 0.1787109375, + -0.482421875, + 2.875, + 1.390625, + 2.46875, + -1.9375, + 2.296875, + -0.51953125, + -0.921875, + 0.1494140625, + 1.625, + 2.890625, + -1.109375, + 0.765625, + -2.90625, + -3.28125, + -0.5390625, + -0.51171875, + -2.09375, + -0.703125, + 2.328125, + -0.51953125, + 2.96875, + 0.28125, + 2.8125, + 1.8515625, + -0.09033203125, + 1.515625, + -0.12890625, + -0.65234375, + 1.5546875, + -2.0625, + -1.6171875, + 1.3125, + 0.103515625, + -0.09326171875, + 0.51171875, + -0.498046875, + 1.40625, + 1.8359375, + -0.96875, + 0.66796875, + 1.3984375, + -0.2490234375, + 2.859375, + 1.453125, + -0.8828125, + -0.66015625, + -1.9375, + 1.53125, + 0.5859375, + 1.046875, + -2.265625, + -0.037109375, + 3.28125, + -2.890625, + 0.90625, + 2.140625, + -0.056396484375, + 2.34375, + 1.1328125, + -1.5625, + 1.0546875, + 0.61328125, + 2.375, + 2.109375, + 0.65625, + 2.921875, + -0.07958984375, + 2.203125, + -5.125, + -2.640625, + 0.193359375, + 1.6328125, + -0.12060546875, + 3.09375, + -0.047119140625, + -1.1796875, + 1.6640625, + -3.609375, + 0.12109375, + -1.8046875, + 4.46875, + -0.765625, + 2.296875, + -4.4375, + 4.0625, + -0.09765625, + -2.15625, + -2.46875, + -0.93359375, + 0.11669921875, + 1.2421875, + -1.6640625, + -0.76171875, + 4.125, + 0.95703125, + -0.76953125, + 2.4375, + 1.625, + -1.671875, + 1.875, + -1.5390625, + 0.427734375, + -0.3359375, + -1.046875, + 3.875, + 4.8125, + -8.625, + -1.40625, + 4.59375, + 6.8125, + -0.031005859375, + -0.73046875, + -1.28125, + 0.6875, + -2.71875, + -1.59375, + 2.53125, + -0.9296875, + -0.93359375, + 1.859375, + 4.75, + -1.8125, + 0.578125, + -0.625, + 2.796875, + 4.28125, + 0.031982421875, + -1.6953125, + 0.60546875, + -0.08740234375, + 2.9375, + 1.65625, + -4.0, + -0.361328125, + 1.3515625, + 2.96875, + 1.7734375, + -0.1650390625, + 2.71875, + -2.515625, + -0.96484375, + 0.287109375, + -1.4765625, + -8.9375, + -1.90625, + -0.71484375, + 3.59375, + -2.5, + -1.1484375, + 0.9765625, + 0.205078125, + -0.462890625, + -4.0625, + -1.8125, + -0.322265625, + 2.40625, + -1.40625, + 1.2421875, + 0.3046875, + -1.6953125, + 1.796875, + 0.734375, + -0.8203125, + 3.40625, + 2.875, + 2.984375, + -2.46875, + 0.12890625, + 0.703125, + -1.2578125, + -3.34375, + -0.73828125, + 6.03125, + 0.27734375, + 0.2109375, + 0.8203125, + 0.85546875, + 3.703125, + -0.60546875, + 0.53515625, + -1.0625, + 1.515625, + -2.171875, + 1.359375, + 1.4921875, + -2.015625, + -0.041748046875, + 0.474609375, + 0.734375, + -0.72265625, + -2.515625, + -1.234375, + -0.3984375, + -8.375, + -0.94140625, + 1.7109375, + -1.8671875, + -1.0078125, + -3.140625, + 0.58203125, + 10.0, + 2.1875, + 0.77734375, + -0.04736328125, + 0.58203125, + 2.765625, + -2.09375, + 2.265625, + 0.7578125, + -0.34765625, + 0.98828125, + 0.875, + 0.318359375, + 1.171875, + 2.046875, + -0.98828125, + 0.53125, + 1.1875, + 3.171875, + -0.11279296875, + 2.53125, + 1.0546875, + -1.4765625, + 1.3359375, + 0.9140625, + 0.58984375, + 0.25, + -2.6875, + 1.6328125, + 0.08349609375, + 1.140625, + -0.71875, + -1.2734375, + -0.78125, + -0.0634765625, + -1.078125, + -1.3203125, + 3.265625, + 2.78125, + 1.640625, + -1.7890625, + 2.0625, + 1.78125, + 2.25, + -1.2734375, + 2.234375, + 3.453125, + -2.140625, + 1.09375, + -0.08837890625, + -1.7109375, + -1.2890625, + -2.875, + -0.330078125, + -0.73828125, + 0.765625, + 5.1875, + -0.54296875, + -0.52734375, + 0.58984375, + -1.1640625, + -2.328125, + -0.005126953125, + -0.515625, + 0.7109375, + 1.75, + -0.8046875, + -2.609375, + 3.296875, + 1.671875, + -0.380859375, + -1.1328125, + -0.29296875, + -1.296875, + -0.474609375, + 1.5390625, + 1.390625, + -0.421875, + 1.2734375, + 0.181640625, + -0.84375, + -1.4296875, + 0.9609375, + 2.21875, + -3.6875, + -0.82421875, + 0.2890625, + -4.625, + 0.474609375, + -0.0203857421875, + 0.33984375, + -1.640625, + -0.376953125, + 1.3828125, + -3.46875, + 1.6484375, + -4.0625, + 1.09375, + 0.14453125, + -1.265625, + 0.671875, + 4.4375, + -7.59375, + 0.50390625, + 2.6875, + -1.984375, + 1.8671875, + -0.294921875, + -1.6328125, + -2.40625, + 1.1875, + 1.453125, + -7.09375, + 1.4921875, + 7.3125, + 1.7109375, + 1.984375, + 0.85546875, + 1.78125, + -0.78125, + 0.2890625, + 1.0390625, + -1.109375, + 2.109375, + 0.0260009765625, + 1.9296875, + -6.3125, + 1.3515625, + -1.2734375, + 0.70703125, + -5.09375, + 0.443359375, + -1.1796875, + -0.60546875, + -3.921875, + -2.4375, + -4.78125, + -0.73828125, + 0.8671875, + -1.5078125, + -3.296875, + -0.0673828125, + 1.1640625, + 1.96875, + 1.78125, + -0.68359375, + 1.8515625, + 1.5546875, + -3.375, + 3.078125, + -0.5859375, + 4.65625, + 1.7421875, + -0.076171875, + -2.09375, + -0.60546875, + -0.0302734375, + 1.078125, + -3.34375, + 1.890625, + 2.125, + -1.5078125, + -0.49609375, + 1.640625, + -1.2109375, + 2.03125, + -0.1142578125, + 0.3359375, + -1.53125, + 4.09375, + 1.859375, + -0.26171875, + -0.78125, + -1.265625, + -1.609375, + 1.9140625, + 1.9765625, + 0.66796875, + -0.75390625, + 0.76953125, + -0.99609375, + -5.0625, + -4.34375, + -1.15625, + -2.375, + 0.91796875, + -0.578125, + 1.0546875, + -0.11376953125, + -3.46875, + -0.10791015625, + 0.052001953125, + 0.9375, + -3.578125, + 1.609375, + -0.453125, + 0.515625, + -1.203125, + 0.1728515625, + -0.62890625, + -3.421875, + -1.984375, + 0.7578125, + 1.3046875, + 2.921875, + -1.296875, + 0.05126953125, + -0.12451171875, + -1.5703125, + -1.1171875, + 2.359375, + 1.640625, + -1.546875, + 2.0, + 0.478515625, + 1.6484375, + 2.0, + -2.390625, + 0.8203125, + 0.494140625, + 1.3046875, + -2.78125, + -1.4296875, + -1.5234375, + -1.8046875, + -1.515625, + 0.490234375, + -1.6875, + -3.09375, + -2.828125, + -2.9375, + 0.1337890625, + 0.79296875, + 0.10888671875, + -2.484375, + 1.546875, + -0.408203125, + -2.46875, + 0.515625, + -3.21875, + 0.01483154296875, + -2.71875, + 1.3125, + 0.7890625, + -0.330078125, + -3.15625, + 0.7109375, + 0.71484375, + 2.921875, + 1.4921875, + -0.89453125, + 1.59375, + 0.96484375, + 1.515625, + 1.5078125, + 0.02099609375, + -0.90625, + 3.75, + 0.50390625, + 0.05615234375, + -1.28125, + -0.96875, + 3.828125, + -2.0625, + -1.1875, + 0.89453125, + -0.8359375, + -0.55859375, + -0.453125, + 1.21875, + 1.2109375, + -2.828125, + 3.8125, + -2.59375, + -0.5234375, + 0.50390625, + -3.203125, + -1.8203125, + 2.078125, + 2.78125, + 1.0078125, + 0.2421875, + -2.859375, + 0.5703125, + 0.4453125, + 1.703125, + -0.357421875, + 9.25, + 2.15625, + 0.00775146484375, + -0.43359375, + -0.9609375, + -0.66796875, + 2.46875, + 1.4375, + -2.90625, + -2.25, + 0.154296875, + -3.234375, + -1.515625, + 0.043212890625, + 3.609375, + -2.953125, + 2.046875, + -0.1904296875, + 2.21875, + 1.21875, + -0.482421875, + -3.359375, + -0.435546875, + 0.95703125, + -2.078125, + -1.9140625, + -1.7890625, + -2.265625, + 2.34375, + 2.0625, + 0.703125, + -1.515625, + -0.228515625, + 1.9296875, + 2.21875, + -0.55078125, + -2.5, + 2.546875, + 1.2578125, + 1.1953125, + -2.265625, + 1.3046875, + 4.875, + -1.234375, + 2.265625, + 0.8515625, + -2.859375, + -1.984375, + -1.34375, + 1.734375, + -3.59375, + 0.0966796875, + 2.421875, + -1.96875, + -0.6328125, + 3.40625, + -3.359375, + 0.6328125, + 1.140625, + -0.1865234375, + -2.609375, + -0.59765625, + 2.734375, + 1.28125, + -0.62890625, + 0.734375, + 1.84375, + 0.1337890625, + 1.796875, + -0.56640625, + 5.625, + 0.828125, + -1.9921875, + -3.484375, + 2.453125, + 1.90625, + -0.51953125, + 0.86328125, + 0.62109375, + -0.59765625, + 2.5, + -2.5, + 0.75, + 2.546875, + -3.703125, + 0.609375, + -1.2890625, + 0.90625, + -2.0625, + -6.4375, + -2.265625, + 0.2197265625, + 0.61328125, + 2.671875, + 2.859375, + -0.4453125, + 0.47265625, + -1.3125, + 3.1875, + -0.640625, + -2.203125, + 2.296875, + -3.046875, + 0.84375, + 0.69140625, + 2.625, + 0.1357421875, + 1.265625, + -2.515625, + 1.875, + 0.14453125, + -1.1796875, + 0.396484375, + -1.515625, + 0.97265625, + -0.76953125, + -5.15625, + -0.28515625, + -0.69140625, + 1.6640625, + 0.3671875, + 0.3359375, + -0.04296875, + 0.7578125, + -1.703125, + 1.828125, + 0.609375, + 0.03955078125, + 1.1171875, + 0.625, + 1.1171875, + -0.59375, + -2.828125, + -0.5390625, + 1.1328125, + 0.76171875, + -0.0947265625, + 3.796875, + -1.375, + 0.443359375, + 0.04833984375, + 1.265625, + -0.97265625, + 1.6875, + -2.484375, + 4.875, + 1.265625, + -0.057373046875, + -0.494140625, + 3.703125, + 0.4375, + 0.427734375, + -1.234375, + 0.06396484375, + 4.40625, + 0.2294921875, + -0.017822265625, + 0.8359375, + -2.21875, + 1.140625, + 0.349609375, + 1.515625, + 0.546875, + 0.0546875, + -2.953125, + -3.875, + -0.5859375, + 1.2578125, + 3.796875, + 0.71484375, + 1.4296875, + -0.21484375, + 1.1796875, + 3.53125, + -0.466796875, + 0.30078125, + -4.34375, + 1.4453125, + 1.609375, + 2.21875, + -0.2734375, + 0.30859375, + 1.4609375, + -1.0234375, + 0.8203125, + 1.125, + 0.4375, + -0.9140625, + 1.765625, + 1.9765625, + 0.349609375, + -2.046875, + 4.4375, + 1.65625, + 1.6328125, + 3.96875, + 1.703125, + -1.671875, + -0.7421875, + 2.5625, + -1.9296875, + -3.3125, + -4.8125, + 2.515625, + 0.003997802734375, + 1.0859375, + 1.5390625, + 0.765625, + 3.3125, + 0.2109375, + -0.64453125, + -0.6640625, + -0.91015625, + -1.765625, + 2.90625, + -0.70703125, + 0.5234375, + -0.205078125, + 2.125, + 2.078125, + -0.69140625, + 1.546875, + 0.080078125, + -1.3203125, + 1.5625, + -5.0625, + 0.083984375, + -1.6484375, + 0.76953125, + 0.99609375, + 0.71484375, + 1.671875, + -3.328125, + 1.515625, + -2.4375, + 0.042724609375, + -1.25, + 1.609375, + 0.72265625, + -1.1484375, + 0.89453125, + -0.5546875, + 3.109375, + 1.125, + 3.296875, + 2.34375, + 1.28125, + -3.984375, + 0.5078125, + 1.25, + -1.6796875, + 0.8125, + 2.8125, + -1.578125, + 1.390625, + 3.46875, + 2.421875, + 1.0625, + -1.8359375, + 3.78125, + 1.21875, + 2.234375, + 1.203125, + 0.298828125, + -1.5078125, + -0.3203125, + -0.83984375, + -0.7734375, + -0.890625, + -0.158203125, + -1.25, + 3.9375, + -2.875, + -0.28125, + 2.078125, + -1.7421875, + -0.353515625, + 0.76171875, + 0.5, + -1.765625, + 1.2109375, + 0.85546875, + 1.7421875, + -4.40625, + -0.1357421875, + 1.9765625, + -3.859375, + -2.734375, + -0.609375, + -3.1875, + -0.47265625, + -1.2578125, + -2.328125, + -1.7109375, + -4.75, + -3.484375, + -0.8203125, + 1.1015625, + -0.69140625, + -0.75, + -2.234375, + -0.4453125, + 2.71875, + -4.34375, + -0.8203125, + 1.0390625, + 1.71875, + 0.859375, + -1.28125, + 1.7734375, + -1.3046875, + 3.984375, + -1.1171875, + -0.54296875, + -1.28125, + 0.6796875, + -1.84375, + -3.265625, + 2.8125, + 1.0859375, + 2.578125, + 1.546875, + -1.46875, + -0.09033203125, + -0.625, + 0.80078125, + -0.59375, + 0.1982421875, + 0.2392578125, + 0.12158203125, + -1.0546875, + 1.625, + 0.283203125, + 0.11083984375, + 1.0546875, + -0.1630859375, + -2.984375, + -4.96875, + -1.546875, + -0.87109375, + 1.0390625, + 1.859375, + 1.15625, + -0.1220703125, + 0.6796875, + -0.83984375, + 1.09375, + -2.1875, + -1.8125, + 0.4765625, + 0.443359375, + -1.1953125, + 1.75, + 0.76171875, + 1.0078125, + 1.453125, + -2.671875, + -0.671875, + -0.072265625, + 0.490234375, + 1.3984375, + 1.40625, + 0.6171875, + 3.078125, + -0.875, + -5.53125, + -2.546875, + -2.96875, + -1.796875, + 3.328125, + 2.796875, + 2.65625, + 0.2431640625, + 0.68359375, + 1.15625, + -4.59375, + 0.060546875, + -0.859375, + -0.515625, + -2.296875, + -1.3125, + 0.11767578125, + 1.8515625, + 0.0286865234375, + -2.40625, + 1.953125, + -0.63671875, + 2.625, + -1.5390625, + 2.3125, + 2.0, + 1.671875, + 0.46875, + -3.484375, + 0.39453125, + 2.609375, + -1.375, + -3.84375, + -0.361328125, + 2.546875, + -1.0703125, + 2.0625, + 1.25, + 1.7578125, + 0.6171875, + 1.3359375, + -0.1513671875, + 0.453125, + 0.232421875, + 0.09326171875, + 2.515625, + 1.4375, + 1.5078125, + -3.015625, + 0.474609375, + -0.228515625, + 0.07177734375, + -1.078125, + -0.86328125, + 1.1640625, + 3.796875, + -3.109375, + -0.42578125, + -1.984375, + -0.482421875, + -2.1875, + -4.78125, + 0.90625, + -1.46875, + 1.28125, + 3.265625, + 2.421875, + -0.59765625, + 2.0, + 0.55078125, + 0.765625, + 0.28125, + 0.03564453125, + -3.828125, + -1.875, + -0.20703125, + 0.51953125, + 1.4765625, + 3.9375, + -0.5859375, + -0.007354736328125, + 2.6875, + 1.203125, + 0.244140625, + -1.6875, + -2.796875, + -0.42578125, + 0.8359375, + -2.84375, + -0.859375, + -1.7109375, + 0.435546875, + 0.87890625, + -0.318359375, + 0.2080078125, + -0.50390625, + 1.34375, + -3.390625, + 1.8046875, + -0.181640625, + -2.515625, + -0.416015625, + -1.421875, + 0.171875, + 0.83203125, + 1.578125, + 0.96875, + -1.3984375, + 0.26953125, + -1.0, + -1.453125, + 2.859375, + 0.53125, + -2.703125, + 2.890625, + 1.4453125, + 0.1171875, + -0.2578125, + -0.6171875, + -0.80078125, + -0.4296875, + -0.765625, + -0.0140380859375, + -0.2255859375, + 0.98828125, + 3.65625, + -0.0242919921875, + -1.6015625, + 4.84375, + -0.765625, + -1.4921875, + 1.6015625, + -1.28125, + 0.1494140625, + 0.765625, + 1.0859375, + 0.6015625, + -1.5078125, + -3.828125, + -3.40625, + 1.7734375, + -1.203125, + -1.21875, + -0.03173828125, + 0.546875, + 0.1328125, + -2.34375, + 1.2421875, + 1.1328125, + -2.296875, + 0.609375, + 1.7109375, + -2.375, + 0.2060546875, + -3.203125, + 0.154296875, + -0.478515625, + 1.8359375, + -0.7578125, + -4.78125, + 0.87109375, + 4.75, + -0.5390625, + -1.09375, + 0.388671875, + 0.5390625, + -1.046875, + -6.1875, + -0.875, + -5.375, + -2.28125, + -0.5703125, + -0.150390625, + 0.75390625, + -1.2578125, + 0.09228515625, + -0.64453125, + 1.34375, + -0.9375, + -2.03125, + 1.2734375, + 0.3828125, + 0.03955078125, + 1.78125, + -0.98046875, + -2.421875, + 1.15625, + 0.984375, + -1.2890625, + -2.0, + -0.302734375, + 0.921875, + 0.23828125, + 1.7421875, + -2.28125, + 0.73828125, + 0.353515625, + -0.011474609375, + 1.6875, + 1.3203125, + 1.9921875, + 3.96875, + 12.0625, + 0.9765625, + -0.443359375, + -0.171875, + -1.390625, + -1.3203125, + 0.2294921875, + -1.3203125, + -2.109375, + -0.08056640625, + -2.921875, + -1.59375, + -0.2470703125, + -0.2490234375, + -0.48046875, + -0.373046875, + 0.314453125, + 0.66015625, + 0.703125, + 3.203125, + 2.734375, + 0.5390625, + 2.0625, + -3.546875, + 1.390625, + 1.796875, + 0.271484375, + 1.0625, + 0.55078125, + 2.359375, + 0.64453125, + -0.640625, + -1.5, + 2.390625, + 2.4375, + -0.47265625, + 0.6171875, + -1.765625, + 2.96875, + 0.16796875, + 2.859375, + 1.1796875, + -1.46875, + -0.58203125, + 3.640625, + -0.88671875, + -2.953125, + 0.474609375, + -1.5625, + 0.76171875, + -3.0625, + -1.125, + 0.3359375, + 1.390625, + 0.69140625, + -1.375, + -1.3671875, + -0.1474609375, + -0.4765625, + 2.265625, + 1.03125, + -0.1494140625, + -0.2578125, + -4.1875, + -2.359375, + -0.91015625, + 0.7265625, + -0.59375, + 0.80859375, + 1.765625, + 1.8671875, + -1.515625, + -0.46484375, + 4.6875, + 0.640625, + 2.4375, + 2.828125, + 1.2734375, + 2.90625, + 1.0390625, + -1.46875, + 3.171875, + -0.1435546875, + 4.0, + -0.79296875, + 3.25, + -1.4765625, + -3.359375, + -0.69921875, + -1.984375, + 0.5703125, + -1.328125, + -0.64453125, + 0.6328125, + -0.734375, + 4.90625, + 0.96875, + 2.0625, + -0.1884765625, + 0.99609375, + -2.359375, + -3.75, + 0.2041015625, + -0.9296875, + 1.703125, + 1.796875, + -0.96484375, + -0.4375, + -1.0, + 0.76953125, + -0.9453125, + 2.5, + 0.4375, + 1.75, + -0.41796875, + 1.9765625, + 4.71875, + 2.0625, + 0.91015625, + -0.95703125, + 0.349609375, + 0.0419921875, + -1.2734375, + 1.1328125, + 0.07373046875, + -1.8984375, + 0.17578125, + -0.341796875, + -0.78125, + -6.09375, + -2.265625, + -1.8125, + 1.25, + -2.390625, + 0.703125, + -0.64453125, + -1.7734375, + -0.74609375, + 4.21875, + 0.365234375, + 0.5, + -2.390625, + 0.921875, + 1.828125, + -4.625, + -0.78515625, + -0.76953125, + 2.640625, + 1.28125, + 0.8671875, + 0.6953125, + 2.40625, + -0.9375, + 0.28125, + 1.9765625, + 2.234375, + 0.022216796875, + -1.0390625, + 0.4296875, + -2.046875, + -7.03125, + 2.40625, + 0.57421875, + -0.1728515625, + 1.6796875, + -3.203125, + -0.2734375, + -1.1171875, + 0.76953125, + 2.09375, + 0.97265625, + -1.71875, + -1.484375, + -0.99609375, + 4.1875 + ], + "index": 0, + "object": "embedding", + "raw_output": null + }, + { + "embedding": [ + 3.203125, + 0.05224609375, + -1.484375, + -1.609375, + 1.1796875, + -4.125, + -2.53125, + -0.328125, + 0.1669921875, + 1.8515625, + -5.15625, + -1.28125, + 5.6875, + -0.62890625, + -1.4296875, + 1.1640625, + -3.734375, + -2.015625, + 4.0, + 3.90625, + -1.140625, + 0.482421875, + 3.109375, + -5.1875, + 3.34375, + 4.59375, + -0.69921875, + -4.28125, + -0.58203125, + 6.25, + -5.125, + -0.068359375, + 1.171875, + 2.25, + -2.875, + 1.90625, + -0.3359375, + 1.1015625, + 3.625, + -2.078125, + 2.140625, + 1.1796875, + -1.5546875, + 1.15625, + -2.78125, + -3.390625, + -0.9375, + -2.765625, + 0.82421875, + 3.46875, + 3.4375, + -2.234375, + -1.3828125, + -2.53125, + -2.09375, + -1.609375, + -2.015625, + -0.75390625, + -1.734375, + 3.375, + -6.4375, + 2.078125, + 2.109375, + -3.21875, + 2.296875, + -0.126953125, + 0.416015625, + -1.09375, + 1.796875, + 1.1484375, + -0.62109375, + -1.0859375, + 0.87109375, + 2.28125, + -0.8828125, + 3.25, + -2.984375, + -2.640625, + 1.4296875, + 5.28125, + -1.4609375, + 3.296875, + 1.4921875, + -1.5078125, + 2.625, + -2.34375, + -0.54296875, + -2.015625, + -4.03125, + -1.46875, + 1.375, + -2.09375, + 1.28125, + 2.015625, + 0.40234375, + -1.0546875, + -2.421875, + 0.52734375, + -2.390625, + -2.0, + 0.83203125, + 1.53125, + 0.396484375, + 0.8359375, + 2.859375, + -0.30859375, + -2.03125, + -1.546875, + -0.70703125, + -1.1640625, + -3.375, + 1.2578125, + 3.84375, + -1.921875, + 0.326171875, + -2.421875, + -3.25, + -1.484375, + -0.07568359375, + 0.10009765625, + -0.73828125, + -0.369140625, + -4.21875, + -0.2021484375, + 2.96875, + -2.421875, + -0.828125, + 1.09375, + 1.265625, + 0.81640625, + 0.546875, + -3.3125, + -0.036376953125, + -0.162109375, + 2.265625, + -0.380859375, + 0.94921875, + 0.326171875, + 0.0255126953125, + 0.79296875, + 2.609375, + 1.1328125, + 1.1328125, + -1.9609375, + -0.50390625, + 2.65625, + 1.9296875, + 2.578125, + 0.578125, + 0.06982421875, + -0.1708984375, + -0.0478515625, + -4.84375, + -1.4921875, + -2.6875, + -1.3671875, + -1.8046875, + 0.87890625, + 3.1875, + -1.6171875, + 0.72265625, + -0.22265625, + 0.33984375, + -2.828125, + -0.33984375, + -3.265625, + -0.0703125, + 0.019775390625, + 4.375, + -0.5234375, + 0.6484375, + -0.048828125, + 4.1875, + 3.859375, + 0.26953125, + -4.1875, + -0.07373046875, + -1.4609375, + 0.65234375, + 3.03125, + -2.65625, + 1.953125, + 3.1875, + 3.484375, + -0.43359375, + 3.734375, + 1.4609375, + -1.5703125, + -2.34375, + -1.2734375, + 3.390625, + 0.6171875, + -0.9375, + 2.03125, + 0.2431640625, + 2.25, + -0.0284423828125, + -0.6484375, + 2.125, + 0.54296875, + 6.1875, + -5.1875, + 2.75, + 3.890625, + -0.0103759765625, + 0.259765625, + -3.421875, + 2.25, + 0.279296875, + -3.34375, + 0.7421875, + 2.078125, + -0.32421875, + 0.87109375, + 1.078125, + -1.3671875, + 3.578125, + -2.578125, + 0.09619140625, + 1.34375, + -0.255859375, + -0.314453125, + 1.171875, + 0.279296875, + -0.0751953125, + -3.828125, + 2.3125, + -1.6953125, + 1.8125, + -0.5625, + 1.1796875, + -3.96875, + -0.0159912109375, + -1.2734375, + -4.875, + -2.59375, + 0.8125, + -3.1875, + -1.0546875, + 4.0625, + 0.32421875, + -2.4375, + 1.6796875, + -1.4375, + -0.89453125, + -0.1279296875, + 1.1875, + -2.890625, + -1.7890625, + -2.390625, + -1.4921875, + 1.3359375, + -1.8125, + -3.671875, + -1.84375, + 0.1376953125, + 0.162109375, + 2.765625, + 1.28125, + 2.8125, + 0.034423828125, + -3.4375, + 3.140625, + 1.7734375, + -0.1435546875, + 1.3671875, + -4.15625, + -4.46875, + 0.58203125, + 0.9296875, + 0.2490234375, + -2.6875, + 0.36328125, + 0.20703125, + -2.28125, + 1.9375, + 1.4765625, + -2.96875, + -0.41796875, + 0.2119140625, + -1.265625, + -2.640625, + 2.8125, + -2.140625, + 2.3125, + 0.63671875, + -0.408203125, + 4.59375, + -0.53125, + 0.431640625, + 0.6875, + 0.396484375, + 0.87890625, + 1.1328125, + -1.546875, + 1.171875, + -2.109375, + -3.265625, + 1.0390625, + -1.4453125, + -5.75, + 0.796875, + -2.140625, + 0.142578125, + -0.91796875, + -2.59375, + -4.96875, + 2.09375, + 0.64453125, + 1.671875, + -4.125, + 1.0859375, + 2.6875, + -0.62109375, + -1.90625, + 0.123046875, + 2.015625, + -2.28125, + 1.6484375, + 3.125, + -0.96875, + -0.0294189453125, + -1.234375, + 2.3125, + -0.0849609375, + 0.6796875, + -0.6171875, + -1.6484375, + -0.5234375, + 1.75, + -0.388671875, + -6.65625, + -0.50390625, + -0.1494140625, + 2.1875, + 1.4375, + -1.0390625, + -0.703125, + 3.921875, + 0.130859375, + -0.361328125, + -0.57421875, + 3.765625, + 0.1572265625, + -0.322265625, + -1.015625, + 0.91796875, + -0.76171875, + -2.3125, + -0.79296875, + 0.74609375, + -0.287109375, + 0.57421875, + -3.375, + 0.828125, + -2.5625, + -1.8515625, + 0.515625, + 0.421875, + -2.46875, + -0.7421875, + 1.8046875, + 4.96875, + -0.255859375, + 2.625, + 0.86328125, + -0.875, + 1.3046875, + -2.875, + 0.65625, + -1.359375, + 0.640625, + -1.578125, + -0.50390625, + -0.287109375, + -0.5859375, + -0.482421875, + -1.7734375, + 1.8046875, + 0.734375, + 1.8984375, + -4.90625, + -0.142578125, + -0.296875, + -0.12451171875, + 3.09375, + -0.1806640625, + -3.78125, + 0.71875, + -2.109375, + 0.494140625, + -0.65625, + 0.84765625, + 1.2734375, + -2.828125, + 0.259765625, + 0.71875, + -2.625, + -1.6796875, + 0.75390625, + 3.640625, + 2.4375, + 0.77734375, + 1.3359375, + -2.484375, + 2.046875, + 1.078125, + -0.76171875, + -2.0625, + 1.1484375, + 0.9609375, + 1.046875, + -0.8046875, + -0.93359375, + 1.9375, + -0.369140625, + 1.7421875, + 2.875, + -0.1025390625, + -3.734375, + -0.3046875, + 2.984375, + 2.21875, + 0.578125, + -5.03125, + 1.921875, + 1.78125, + -1.96875, + 4.125, + 0.71484375, + -2.296875, + -0.2216796875, + -1.9765625, + -1.4375, + 2.8125, + 0.51171875, + 0.5859375, + 0.66015625, + 0.29296875, + 2.375, + 1.1796875, + 0.59765625, + -0.43359375, + 0.0830078125, + 2.703125, + -0.8671875, + -0.369140625, + -0.10205078125, + 0.546875, + -0.5859375, + -2.4375, + 1.15625, + -3.484375, + 0.10302734375, + -2.9375, + -0.2197265625, + 0.65625, + 0.58203125, + -0.2734375, + 3.796875, + 1.953125, + -2.9375, + 2.328125, + 1.3828125, + 3.671875, + -1.84375, + 0.494140625, + -1.359375, + -3.65625, + -3.015625, + -0.54296875, + 1.4375, + -1.171875, + -0.37890625, + 0.1630859375, + 0.302734375, + -0.1845703125, + -0.546875, + 2.78125, + -2.0, + 0.154296875, + -0.34765625, + 0.88671875, + -1.8671875, + 1.59375, + 4.28125, + 1.65625, + -7.46875, + -1.59375, + -0.08203125, + -2.34375, + 0.91796875, + 1.84375, + -2.828125, + 3.203125, + 1.4453125, + 3.578125, + -0.82421875, + 2.671875, + 1.046875, + -0.298828125, + -0.236328125, + 0.87890625, + -0.79296875, + -2.1875, + -3.625, + 4.8125, + 2.46875, + -1.9609375, + 0.2314453125, + 2.15625, + -1.828125, + 0.62109375, + 0.07177734375, + -0.5703125, + -1.59375, + 2.53125, + 0.66796875, + -0.455078125, + 4.53125, + -1.5, + 3.046875, + -3.0625, + -0.302734375, + 0.921875, + -0.68359375, + -0.8984375, + -2.96875, + 3.078125, + -3.21875, + -3.078125, + 0.87109375, + -0.275390625, + 2.46875, + -1.703125, + 0.059326171875, + 4.15625, + 1.3828125, + 1.0, + -1.15625, + -3.09375, + 2.0625, + -0.2119140625, + -1.921875, + -1.0859375, + 3.59375, + -0.40234375, + -2.078125, + 3.59375, + 4.9375, + 2.1875, + 2.546875, + -2.25, + 0.232421875, + -0.53515625, + -0.212890625, + -0.8359375, + -1.734375, + 1.1796875, + 0.6171875, + -0.9921875, + -0.95703125, + -0.546875, + 0.298828125, + -2.15625, + -4.6875, + 1.2109375, + 0.1435546875, + -3.640625, + 0.9453125, + -2.453125, + 2.34375, + 2.34375, + 2.109375, + 1.5546875, + 0.85546875, + -0.466796875, + 2.921875, + 0.37109375, + -1.984375, + 0.3359375, + 2.203125, + -0.1904296875, + -0.345703125, + 2.40625, + -3.6875, + 0.54296875, + 0.85546875, + 0.56640625, + -2.5, + 0.193359375, + 0.94140625, + 3.046875, + -2.015625, + -4.40625, + -0.27734375, + -0.5625, + -3.59375, + 0.64453125, + -0.6796875, + -0.72265625, + -4.5625, + 3.203125, + -1.2265625, + -0.14453125, + 5.03125, + 1.5078125, + -3.53125, + 1.2109375, + -2.921875, + 0.07568359375, + 1.734375, + -2.109375, + 0.87109375, + -0.40234375, + -3.484375, + 0.91015625, + -4.75, + 2.859375, + 2.453125, + -1.7265625, + -1.78125, + -0.50390625, + 1.921875, + 1.75, + 3.796875, + -0.2158203125, + 0.9296875, + -1.953125, + 0.66015625, + -1.71875, + 2.625, + 0.7890625, + -2.15625, + -5.3125, + 1.3046875, + 3.171875, + -0.84765625, + -1.5390625, + 1.765625, + 0.55859375, + 0.388671875, + 3.359375, + 2.1875, + -0.26171875, + 1.5390625, + 4.34375, + 1.75, + -1.609375, + -1.8359375, + 2.21875, + 0.3828125, + 2.609375, + 1.2734375, + 4.25, + -3.671875, + 1.484375, + -2.15625, + -0.44140625, + -1.453125, + -3.078125, + 0.40625, + -0.361328125, + 0.73828125, + 0.083984375, + 2.109375, + -0.193359375, + 3.28125, + 0.98828125, + -0.67578125, + -4.34375, + 2.21875, + 0.36328125, + -0.1376953125, + 3.3125, + -1.828125, + 4.1875, + 1.34375, + 0.380859375, + -0.042724609375, + -0.17578125, + 0.58984375, + 2.328125, + 0.6953125, + -3.140625, + -2.390625, + -1.421875, + 0.375, + 2.5625, + 2.515625, + -2.3125, + -6.375, + 1.5390625, + -0.333984375, + -0.69921875, + 0.0869140625, + -0.09912109375, + -2.359375, + 0.9921875, + 1.3046875, + 0.9765625, + -1.546875, + -2.09375, + -2.890625, + -1.875, + -3.078125, + -3.5, + 0.51171875, + -1.4765625, + 0.158203125, + -1.40625, + 1.15625, + 1.078125, + 0.57421875, + -0.9296875, + 0.80859375, + -0.0057373046875, + 1.953125, + 0.0986328125, + -3.9375, + 5.375, + -0.76171875, + -2.796875, + 0.1357421875, + 1.7265625, + -0.71875, + 2.40625, + 2.703125, + 3.25, + -2.5625, + 0.50390625, + 1.0625, + -0.251953125, + 0.2119140625, + -0.7734375, + 2.203125, + -1.0, + 1.2265625, + -0.1328125, + -2.421875, + -2.203125, + 0.2099609375, + 0.06591796875, + -0.65234375, + -2.625, + -1.328125, + 0.1025390625, + 2.34375, + 2.46875, + -2.71875, + -0.83203125, + 1.3828125, + -1.1875, + 0.62890625, + 0.7578125, + 2.078125, + -3.4375, + 0.453125, + 1.796875, + -1.96875, + 2.078125, + 0.82421875, + 0.5234375, + 2.3125, + 2.140625, + -0.22265625, + 1.375, + 1.96875, + 2.09375, + -1.7421875, + 0.90234375, + -1.4765625, + 1.6875, + 2.078125, + 1.4140625, + -1.2578125, + -2.234375, + 1.2734375, + 0.76953125, + -0.78515625, + -1.3203125, + 0.07275390625, + -1.328125, + -3.96875, + 0.37890625, + -0.1123046875, + 0.2275390625, + 4.84375, + 0.75, + 0.69140625, + -1.8125, + 0.515625, + 2.625, + 0.82421875, + 3.5, + -0.94140625, + 0.69140625, + 0.09521484375, + -0.95703125, + 1.625, + -0.98828125, + 0.419921875, + -2.390625, + 0.498046875, + 1.53125, + 0.6640625, + -1.84375, + -0.259765625, + -0.53125, + 5.46875, + -0.0849609375, + -2.75, + -1.671875, + -1.0625, + 4.875, + 1.6875, + -0.83984375, + -3.0625, + -1.046875, + 0.419921875, + -2.34375, + -2.25, + 0.5859375, + 3.578125, + 1.1171875, + -1.6484375, + 0.404296875, + 1.453125, + 0.82421875, + 7.03125, + -0.1650390625, + -2.390625, + 1.1640625, + 0.275390625, + 0.7890625, + 0.412109375, + -0.32421875, + -2.328125, + 1.390625, + -0.185546875, + -0.88671875, + 0.388671875, + -1.9296875, + -3.453125, + 1.359375, + 0.09326171875, + 0.10205078125, + -0.53515625, + -0.421875, + -0.578125, + -0.8828125, + -1.578125, + 2.234375, + -3.171875, + -0.35546875, + 2.125, + 0.01263427734375, + 1.1015625, + 0.1767578125, + 2.6875, + -1.78125, + 1.6953125, + 1.8125, + -0.2353515625, + 1.1328125, + -2.25, + -0.09375, + 0.318359375, + -1.921875, + 1.2890625, + 1.453125, + -0.025146484375, + -0.451171875, + -0.94140625, + -0.04248046875, + -2.671875, + -2.125, + 1.8203125, + -0.0162353515625, + -3.84375, + -2.578125, + -0.23828125, + -1.1875, + 1.265625, + -3.09375, + 0.5, + -1.015625, + -0.154296875, + -0.267578125, + 0.57421875, + 1.0859375, + 0.07373046875, + -3.515625, + -1.28125, + -1.296875, + 2.390625, + -1.0703125, + 1.6171875, + -0.11962890625, + 0.640625, + -4.21875, + 1.6875, + -2.671875, + -0.25390625, + 0.59375, + 4.3125, + -2.328125, + -0.75390625, + 2.140625, + -1.640625, + 1.8203125, + -0.7265625, + 3.515625, + 0.0267333984375, + -1.28125, + 1.25, + 4.53125, + -1.34375, + 1.0859375, + 0.443359375, + -2.1875, + 1.796875, + 6.59375, + 0.5234375, + 1.171875, + 1.640625, + -0.10009765625, + 1.375, + 0.3515625, + -1.6796875, + -1.796875, + 1.125, + -2.1875, + -2.109375, + -2.109375, + 1.1015625, + 0.7421875, + -0.96484375, + 2.546875, + -1.3203125, + -2.5625, + -1.53125, + 1.2109375, + -1.4609375, + -1.1328125, + -3.328125, + -2.5, + -0.1357421875, + 1.2890625, + 1.8828125, + -1.15625, + -3.328125, + -0.388671875, + -1.0, + 0.298828125, + -0.51953125, + -2.953125, + -0.353515625, + -1.703125, + -1.09375, + -2.015625, + -0.8359375, + 1.390625, + -0.3359375, + 4.03125, + -1.3515625, + -0.90234375, + 2.90625, + -0.66015625, + 2.859375, + -3.984375, + -0.0927734375, + -1.609375, + -1.6875, + 0.451171875, + -2.359375, + 4.84375, + 1.5234375, + -1.5625, + -1.0, + -2.328125, + 2.359375, + 0.28125, + 2.546875, + 2.625, + 0.5859375, + -1.34375, + 0.11376953125, + -2.953125, + 7.65625, + 0.51953125, + -1.28125, + 0.95703125, + 2.234375, + 2.96875, + -1.4765625, + 0.890625, + -0.1484375, + 0.97265625, + -2.34375, + 2.328125, + 2.296875, + -1.25, + -3.59375, + 0.6015625, + -2.609375, + -0.6171875, + -2.015625, + 0.98046875, + 0.6328125, + -1.1171875, + 1.4609375, + 1.40625, + 1.6484375, + 0.10400390625, + -0.75390625, + -0.87109375, + 0.115234375, + -2.0625, + 0.75, + 0.7890625, + 0.042236328125, + 3.703125, + 1.1328125, + -0.045654296875, + 3.5, + 0.6953125, + 0.275390625, + 2.46875, + -1.5078125, + -0.73046875, + 1.7109375, + -2.515625, + -1.5859375, + -0.9609375, + 2.4375, + 0.421875, + -0.92578125, + -1.578125, + -0.80078125, + -1.3671875, + -1.1953125, + 6.09375, + 0.2119140625, + -2.359375, + -3.484375, + 0.43359375, + -2.15625, + -3.03125, + -0.81640625, + 0.53515625, + -0.271484375, + -0.08203125, + -0.9140625, + -0.734375, + 0.5390625, + -3.015625, + 0.050537109375, + 0.5078125, + -3.5, + 1.125, + -0.047119140625, + -0.154296875, + 0.22265625, + -1.78125, + -4.75, + -0.7890625, + -7.71875, + -1.609375, + 0.2734375, + -1.4296875, + 0.515625, + -1.640625, + -1.8359375, + -1.6875, + -3.6875, + -1.328125, + 0.0233154296875, + -1.2578125, + 3.5, + -0.173828125, + -0.97265625, + -1.4296875, + -3.78125, + 0.435546875, + 0.53125, + -0.8515625, + -0.8359375, + -0.09423828125, + 0.275390625, + 0.93359375, + -2.53125, + 3.484375, + 0.57421875, + 1.1875, + 0.298828125, + -0.1552734375, + -0.91796875, + 2.609375, + -0.5078125, + -0.236328125, + -0.859375, + 2.640625, + -4.375, + -0.431640625, + 0.07568359375, + 2.25, + -0.3828125, + 1.2578125, + -1.2890625, + 0.17578125, + -1.8515625, + -1.96875, + 0.302734375, + 7.125, + 0.94140625, + 0.23828125, + 1.9140625, + -0.90625, + -0.81640625, + -3.65625, + 1.3671875, + 0.462890625, + -4.96875, + -0.162109375, + -0.439453125, + 1.234375, + -0.75390625, + -2.53125, + -2.71875, + -1.234375, + -1.1953125, + -0.400390625, + 3.015625, + 7.71875, + -0.341796875, + 2.5, + 2.34375, + 2.71875, + 0.921875, + -1.484375, + -0.828125, + 1.25, + 3.90625, + -6.4375, + 3.09375, + -2.578125, + 0.52734375, + -1.484375, + -1.4453125, + 0.546875, + 1.59375, + 2.015625, + -1.109375, + 0.384765625, + -2.046875, + 2.640625, + -4.71875, + -0.2119140625, + 1.359375, + -0.5390625, + 3.40625, + 1.5234375, + 1.71875, + -0.61328125, + 0.201171875, + -0.9609375, + 0.62890625, + 0.361328125, + 1.5703125, + 1.921875, + -0.84765625, + -2.125, + 1.125, + -3.296875, + -0.04248046875, + 2.953125, + -0.96875, + -1.078125, + 3.203125, + 1.0703125, + -0.53125, + -3.765625, + 1.3984375, + 0.279296875, + -0.68359375, + -1.6796875, + 0.5, + -1.3984375, + -2.265625, + 2.140625, + -0.59765625, + 1.1484375, + 0.15625, + 0.17578125, + 2.8125, + 1.546875, + -1.1171875, + 0.6484375, + -0.162109375, + -0.5078125, + -1.5390625, + 1.171875, + 0.4921875, + 0.032470703125, + 0.43359375, + 0.345703125, + -0.7265625, + -2.609375, + 1.234375, + -2.296875, + 0.6953125, + -0.07861328125, + -2.4375, + -5.21875, + -4.28125, + 0.54296875, + -0.6796875, + -2.71875, + -0.55859375, + 4.09375, + 0.40625, + -4.21875, + -0.85546875, + 1.28125, + -0.86328125, + 0.66015625, + 0.89453125, + -0.169921875, + -0.28125, + 1.90625, + 4.9375, + 3.515625, + -0.78125, + 1.8046875, + 1.7890625, + 0.66796875, + -2.046875, + 1.4453125, + -4.96875, + -1.515625, + -2.1875, + 0.34375, + 2.53125, + -3.21875, + 0.29296875, + -1.1640625, + -1.9140625, + -1.265625, + -2.25, + -2.703125, + 0.43359375, + -1.1328125, + -0.3671875, + 0.59375, + 1.03125, + -1.9921875, + -0.181640625, + -0.09326171875, + -0.7265625, + 3.6875, + -3.875, + 0.05810546875, + -1.609375, + 0.263671875, + 2.046875, + -0.18359375, + 0.9609375, + 1.4921875, + 0.3984375, + 0.62109375, + 3.21875, + -3.09375, + -2.0625, + 0.71484375, + 2.0625, + 0.392578125, + 1.6953125, + -0.609375, + 2.90625, + 2.59375, + -2.453125, + -1.2890625, + 1.96875, + 3.21875, + 2.0, + 3.46875, + 0.3828125, + 2.765625, + 2.28125, + -0.326171875, + -0.0830078125, + 3.140625, + -1.6484375, + -0.51171875, + 0.365234375, + -0.2119140625, + 4.3125, + 2.375, + 1.75, + 2.46875, + 1.1953125, + -3.90625, + -1.2578125, + 1.3671875, + 2.421875, + 1.6796875, + -0.38671875, + 1.09375, + 0.1669921875, + -1.9140625, + 2.65625, + 1.6171875, + -1.765625, + -4.0625, + -1.2109375, + 2.28125, + -1.140625, + 0.1474609375, + -0.6875, + -0.10986328125, + 0.5859375, + -0.3984375, + 0.53125, + -1.90625, + 0.45703125, + 0.431640625, + -1.4140625, + -1.140625, + 0.1103515625, + 1.5, + -4.125, + 0.2158203125, + 0.93359375, + -2.5, + -3.40625, + 2.46875, + -1.4765625, + 0.146484375, + 2.3125, + -0.65625, + -1.6328125, + -2.046875, + 4.59375, + -0.39453125, + 3.328125, + -0.123046875, + -1.21875, + 1.265625, + 1.359375, + -3.0625, + 3.765625, + -1.78125, + -8.25, + 0.384765625, + 1.09375, + 3.78125, + -1.9140625, + -1.8359375, + -1.0546875, + 2.34375, + -0.259765625, + 1.203125, + 3.203125, + 1.75, + 5.8125, + 1.0390625, + 1.8203125, + -0.68359375, + 0.61328125, + 1.1796875, + 0.51953125, + 2.671875, + -0.27734375, + 3.34375, + 0.53125, + -0.77734375, + 2.40625, + -0.63671875, + 0.033935546875, + -0.56640625, + 1.0703125, + 1.3046875, + -0.80078125, + 0.21875, + 0.1748046875, + 1.0546875, + 0.2255859375, + -2.484375, + 0.96484375, + -1.3046875, + -2.296875, + -2.28125, + 1.46875, + 1.40625, + 0.1435546875, + 0.2021484375, + -1.1328125, + 1.6484375, + -1.0390625, + 0.609375, + -2.125, + -1.0546875, + 2.59375, + -1.328125, + -1.7578125, + 4.15625, + -1.3828125, + -7.59375, + -3.625, + 0.1357421875, + -2.09375, + 1.1328125, + 3.140625, + -1.0859375, + -0.82421875, + -0.68359375, + 0.126953125, + 2.90625, + -0.8984375, + 2.609375, + -1.1640625, + 7.40625, + -0.6015625, + 1.859375, + -1.7578125, + 0.52734375, + -1.8984375, + -1.5, + -0.1953125, + 1.4453125, + -1.5078125, + 1.4453125, + -0.3359375, + -1.0546875, + 2.75, + -1.796875, + -1.4140625, + -0.52734375, + -0.462890625, + -0.26171875, + -3.90625, + 2.28125, + 3.234375, + 1.296875, + -3.171875, + -1.5390625, + -0.09228515625, + 0.82421875, + -0.111328125, + -2.6875, + -3.140625, + -1.6484375, + -1.203125, + -0.7421875, + 1.34375, + -1.5546875, + -2.5625, + 2.484375, + 1.28125, + -0.86328125, + -4.25, + -0.7890625, + -2.265625, + -2.140625, + -1.9375, + 0.4453125, + -0.62109375, + 0.0, + 0.265625, + 1.34375, + -1.984375, + 0.53515625, + -2.0625, + -1.953125, + -2.09375, + 3.09375, + -0.369140625, + -1.8828125, + 1.796875, + -0.28125, + -0.1220703125, + 2.5625, + 0.640625, + -0.298828125, + 0.177734375, + 1.546875, + -1.0703125, + 2.375, + -0.201171875, + -0.609375, + 0.32421875, + 2.390625, + 1.1015625, + -0.111328125, + 0.1953125, + -1.4921875, + 0.859375, + -5.78125, + -0.69921875, + -0.0250244140625, + -2.3125, + -1.2578125, + 3.84375, + -5.375, + 0.328125, + -0.4765625, + -1.203125, + 0.2421875, + -0.984375, + 2.8125, + 5.34375, + 2.234375, + -1.921875, + -0.1875, + 0.08251953125, + 0.734375, + 1.421875, + 1.4765625, + 1.9765625, + -1.671875, + -0.8046875, + -0.1240234375, + -2.640625, + 3.625, + 4.375, + 2.34375, + 1.671875, + 1.0625, + 0.034423828125, + -2.046875, + -1.3125, + -0.22265625, + 0.00836181640625, + 1.5234375, + 5.0, + 2.90625, + -0.55859375, + 1.5390625, + 3.328125, + 0.83203125, + -1.015625, + -2.9375, + -3.578125, + -2.125, + -0.765625, + -0.984375, + 0.98828125, + -3.71875, + -2.4375, + 2.53125, + 0.53125, + -0.474609375, + 1.5859375, + -3.203125, + -0.53515625, + -2.359375, + -3.21875, + -1.6875, + 0.578125, + 0.41796875, + 1.09375, + 3.046875, + 0.4921875, + -0.84765625, + -1.078125, + 2.671875, + 2.25, + 2.09375, + -0.8671875, + -2.203125, + -0.7109375, + -0.298828125, + 1.515625, + 2.484375, + 2.21875, + -1.3359375, + -2.90625, + 0.1845703125, + 1.1171875, + 1.484375, + -3.859375, + -0.236328125, + -1.0859375, + -1.1640625, + -0.98828125, + -2.390625, + -1.125, + -0.60546875, + 1.7890625, + 1.84375, + -1.4453125, + -1.890625, + -5.125, + 1.1015625, + 1.875, + 0.7890625, + 0.8671875, + -0.275390625, + 4.90625, + 2.28125, + 2.640625, + -1.1640625, + 1.6953125, + 4.21875, + -0.5625, + 4.5, + 0.9140625, + 2.71875, + -0.671875, + 2.1875, + -2.046875, + 0.60546875, + 1.2890625, + -0.6953125, + 0.1552734375, + -0.0010833740234375, + 0.94921875, + 3.734375, + 0.166015625, + -1.9921875, + -2.34375, + -1.4140625, + 1.484375, + 0.310546875, + 1.5859375, + 0.51953125, + -0.8359375, + -0.130859375, + 1.078125, + -0.341796875, + 0.06640625, + -0.609375, + 0.6640625, + 0.0966796875, + 5.46875, + 0.478515625, + -2.21875, + 1.75, + 2.453125, + 4.53125, + -0.78515625, + -3.1875, + 0.1669921875, + 2.671875, + -0.10205078125, + -1.375, + -1.4765625, + 0.451171875, + 0.953125, + -2.515625, + 0.9140625, + 0.58984375, + -0.40234375, + -1.59375, + 3.15625, + 0.68359375, + -1.703125, + -1.2734375, + 0.10595703125, + 1.2578125, + 1.609375, + 1.796875, + -2.796875, + -0.0478515625, + 0.9375, + -2.21875, + -0.50390625, + 0.279296875, + 0.6328125, + 1.03125, + -2.375, + -1.5625, + 1.625, + 0.62890625, + 0.9296875, + -0.75, + -0.6796875, + -1.3203125, + 1.0234375, + -3.265625, + 1.3125, + -0.36328125, + 1.796875, + -1.390625, + 1.1328125, + -2.671875, + 1.828125, + 1.3828125, + 3.59375, + -1.875, + 0.6484375, + -0.11474609375, + 6.09375, + -0.59375, + -1.0625, + 0.08740234375, + 0.291015625, + -4.21875, + -0.09033203125, + -3.765625, + 3.4375, + -2.328125, + 3.734375, + -1.5078125, + 0.4453125, + 0.271484375, + 1.7578125, + -1.765625, + -1.1015625, + -3.4375, + 0.92578125, + 0.049560546875, + -1.4609375, + 1.6484375, + -0.56640625, + -0.287109375, + -0.78125, + 2.796875, + -0.86328125, + 2.03125, + -1.2421875, + 1.3515625, + 0.359375, + -0.8671875, + 1.3828125, + -0.9140625, + 0.53515625, + 1.5390625, + -1.140625, + -0.546875, + 0.06640625, + -3.359375, + 0.5703125, + -1.0390625, + -1.8125, + -0.279296875, + 3.21875, + 0.54296875, + 1.8828125, + -1.5859375, + -3.8125, + -0.07470703125, + 1.1796875, + 0.5859375, + 1.8671875, + -0.275390625, + 0.60546875, + -0.73828125, + -0.4609375, + 1.90625, + -1.21875, + -2.484375, + -2.140625, + -1.3515625, + -0.7265625, + -1.9296875, + -0.73046875, + 1.109375, + -4.25, + 0.7578125, + 4.5, + -2.125, + 4.21875, + -2.625, + 0.80859375, + 1.390625, + 4.59375, + 0.75, + 1.5234375, + -0.080078125, + 0.462890625, + 0.9140625, + -0.1669921875, + -2.9375, + -0.59765625, + -0.06298828125, + -1.1015625, + 1.828125, + 0.66796875, + -1.640625, + -0.828125, + 1.1171875, + -0.5, + -0.515625, + -0.0247802734375, + 3.0625, + 5.09375, + -4.875, + -0.9453125, + 0.703125, + -2.28125, + 0.2314453125, + 2.59375, + -3.203125, + -3.765625, + 4.96875, + 2.109375, + 1.984375, + -1.6328125, + -1.2265625, + -0.53125, + -0.87890625, + 0.9765625, + 0.95703125, + 0.35546875, + 1.1015625, + -3.421875, + 1.3046875, + -0.89453125, + -2.203125, + 1.7578125, + -3.515625, + 0.283203125, + -4.03125, + 1.78125, + 1.2578125, + 0.1669921875, + 0.75390625, + -0.71875, + -0.9140625, + -0.58203125, + -0.353515625, + 2.1875, + -1.4453125, + 6.125, + 1.9609375, + -2.0, + -1.5703125, + -1.8984375, + -1.546875, + 0.0, + 4.21875, + 2.5, + -1.46875, + 0.5078125, + 2.4375, + 4.8125, + -0.00011444091796875, + 1.046875, + 1.7890625, + 0.35546875, + 0.66796875, + 3.625, + -0.7109375, + -0.126953125, + -0.1240234375, + -0.84375, + -2.015625, + 2.515625, + -3.28125, + -0.40234375, + 3.53125, + 0.890625, + 0.125, + 0.70703125, + -1.9140625, + -1.5078125, + -2.65625, + -1.5, + -1.453125, + -1.3359375, + 1.5625, + 0.1982421875, + -0.640625, + -0.5546875, + -2.1875, + 0.265625, + -1.7578125, + -1.0078125, + -2.8125, + 0.58984375, + 0.4609375, + 1.734375, + -0.06884765625, + -0.123046875, + 1.1171875, + -1.4453125, + 0.1787109375, + -2.578125, + -4.21875, + -0.224609375, + -2.75, + 1.3359375, + -0.068359375, + 0.197265625, + 0.0289306640625, + -0.76171875, + -1.5703125, + 11.375, + -1.0546875, + -1.703125, + -0.76171875, + -0.80859375, + 2.109375, + -2.703125, + -1.5390625, + 0.396484375, + 0.6875, + 0.1572265625, + 1.7265625, + -0.384765625, + 2.03125, + 1.4609375, + -3.0, + 2.5625, + 2.96875, + 0.87890625, + -2.015625, + 1.2265625, + 1.1640625, + 0.671875, + -0.0233154296875, + -2.40625, + -3.578125, + -2.234375, + -4.3125, + 0.5234375, + -0.609375, + 0.478515625, + -7.40625, + -0.74609375, + 0.91015625, + -1.9609375, + 5.625, + 0.224609375, + 4.96875, + 0.037353515625, + -0.3828125, + 0.220703125, + -0.0238037109375, + 2.015625, + 0.0341796875, + -3.015625, + 2.46875, + -2.59375, + 0.294921875, + 1.7265625, + 0.2197265625, + 1.2265625, + -1.59375, + -1.7265625, + 0.53125, + -2.765625, + 1.9609375, + 0.09326171875, + 4.09375, + -1.9921875, + 1.640625, + -3.515625, + 2.96875, + -0.291015625, + 0.287109375, + 2.546875, + 1.875, + -2.6875, + -0.98828125, + 0.625, + 1.1328125, + -2.171875, + 0.255859375, + -2.75, + 0.1708984375, + 0.39453125, + -0.515625, + 2.046875, + 1.3671875, + 0.7265625, + -3.03125, + 1.578125, + 1.53125, + 0.5234375, + -0.345703125, + -2.21875, + -0.5, + 0.494140625, + -0.8828125, + 0.8984375, + 3.5625, + 2.1875, + 4.1875, + -3.609375, + 0.24609375, + 1.6875, + -1.4765625, + -1.40625, + -1.0234375, + -0.46875, + -4.125, + -4.34375, + 3.859375, + -2.5625, + 3.15625, + -0.41015625, + 4.8125, + -5.84375, + -2.078125, + -0.73828125, + -1.9609375, + 1.296875, + 1.0390625, + -1.9609375, + -0.1103515625, + -0.6796875, + 3.171875, + 1.5, + -1.4296875, + -1.859375, + -0.11767578125, + -0.83203125, + 4.5, + -1.7109375, + -3.3125, + -0.49609375, + 2.015625, + -1.1953125, + -1.203125, + 2.75, + -2.875, + -1.2578125, + -0.44140625, + 1.609375, + -2.015625, + 1.203125, + -1.6328125, + 1.328125, + 1.4140625, + 2.109375, + 0.119140625, + -2.109375, + 0.1474609375, + -1.265625, + -0.447265625, + 0.921875, + -0.6328125, + -0.337890625, + -1.046875, + 0.035888671875, + -1.0078125, + -3.34375, + 0.1220703125, + 0.96484375, + -0.1298828125, + -1.734375, + 1.0703125, + 0.2451171875, + -0.0625, + 0.439453125, + -2.28125, + 1.5078125, + 1.15625, + -2.65625, + 0.189453125, + -0.5859375, + -1.5703125, + -3.546875, + 0.7421875, + 1.921875, + 2.234375, + -0.59375, + 3.5625, + -2.53125, + -1.0703125, + 3.296875, + 1.53125, + -2.65625, + 0.1572265625, + -1.140625, + -2.9375, + 1.4375, + -1.8515625, + 2.328125, + 2.734375, + 1.0, + -0.10693359375, + 0.126953125, + -0.251953125, + -0.67578125, + 1.9296875, + -0.6171875, + -3.046875, + -2.859375, + 3.453125, + 0.5234375, + -2.765625, + 1.7421875, + 0.84765625, + 0.2578125, + -1.28125, + -1.3515625, + -0.5703125, + 2.328125, + 0.076171875, + 1.2890625, + -2.78125, + -1.765625, + 1.6640625, + -5.21875, + 1.9765625, + 1.03125, + -2.78125, + 0.291015625, + 2.8125, + 0.2119140625, + -1.5, + 2.390625, + 0.578125, + -0.73828125, + 1.1875, + 6.5, + -1.8671875, + -4.9375, + -0.51171875, + -0.0023193359375, + -0.2158203125, + -0.875, + 2.0625, + -2.546875, + -2.359375, + -1.203125, + 3.15625, + 2.15625, + -0.6015625, + -0.58203125, + -2.703125, + 1.8984375, + -1.3046875, + 0.8203125, + 0.79296875, + -2.296875, + 2.09375, + -0.64453125, + 0.984375, + -0.353515625, + 2.109375, + 1.015625, + -0.38671875, + -2.03125, + -3.96875, + -3.484375, + 0.27734375, + 2.234375, + 1.2578125, + -0.482421875, + -1.0078125, + -0.3203125, + 0.388671875, + 0.44921875, + 0.80078125, + 3.6875, + 0.76171875, + -0.625, + 0.08837890625, + -1.3125, + -0.27734375, + -0.5703125, + 4.125, + 0.0, + 9.9375, + -1.4609375, + -1.671875, + 1.53125, + 2.59375, + -0.62890625, + 2.421875, + 0.306640625, + 3.46875, + 1.3125, + 1.8046875, + -0.318359375, + 7.1875, + 1.3671875, + 4.9375, + 3.625, + -0.39453125, + 1.15625, + -0.07666015625, + 0.64453125, + -0.123046875, + -2.953125, + -1.6875, + 1.75, + -0.421875, + -1.09375, + 1.015625, + 0.6875, + -4.5, + 0.1728515625, + -2.84375, + 0.9140625, + 0.00848388671875, + 0.9609375, + -4.09375, + -3.453125, + -2.0625, + 3.703125, + 0.357421875, + 0.6875, + -0.8203125, + -1.6328125, + 0.48828125, + 1.125, + -12.5, + -0.65625, + 0.765625, + 1.609375, + 3.5625, + 0.41796875, + 0.15234375, + 0.97265625, + -0.404296875, + -0.19140625, + -3.5, + -0.83203125, + 2.421875, + 2.84375, + 2.515625, + -0.07470703125, + -3.625, + 0.6640625, + -0.67578125, + -0.0673828125, + -2.109375, + 1.1796875, + -2.578125, + -0.65625, + 1.7265625, + -1.296875, + 2.125, + -2.171875, + -2.1875, + -1.6796875, + -3.0, + -0.5390625, + 1.359375, + -0.236328125, + -0.026123046875, + -1.1015625, + -2.84375, + -1.859375, + -0.99609375, + 0.029052734375, + 0.87890625, + 3.359375, + -1.0703125, + -1.3828125, + 1.0078125, + -1.34375, + -2.140625, + -0.90625, + -2.140625, + -0.103515625, + 2.25, + -2.453125, + 4.03125, + -2.171875, + 1.0390625, + -0.1572265625, + 1.8125, + -0.93359375, + -0.921875, + -2.75, + 2.5, + 1.28125, + -0.62890625, + 0.765625, + -0.294921875, + -0.455078125, + 0.06982421875, + 3.859375, + 2.109375, + 1.015625, + 1.1953125, + -7.09375, + 0.2490234375, + -4.3125, + 0.00078582763671875, + 1.0859375, + 3.03125, + -3.453125, + 1.2578125, + -0.2138671875, + 1.1640625, + 2.3125, + -4.25, + -1.15625, + -0.80859375, + -2.3125, + -1.3203125, + 2.796875, + -0.03076171875, + 0.55078125, + -2.21875, + 1.546875, + -0.52734375, + 0.8984375, + -1.640625, + -1.40625, + 3.78125, + 3.5625, + -1.7890625, + -0.404296875, + 2.828125, + 1.0703125, + -2.140625, + 1.8359375, + -2.46875, + 0.080078125, + 0.671875, + 0.34375, + -1.96875, + 2.65625, + 1.0859375, + 2.140625, + -1.671875, + 0.87890625, + 0.05419921875, + -1.9765625, + 1.1875, + 0.1640625, + 0.212890625, + 1.0, + 1.234375, + -0.150390625, + -1.5703125, + -0.79296875, + -0.5390625, + -0.6328125, + -0.0498046875, + -1.78125, + -1.59375, + -2.796875, + -1.7578125, + -0.31640625, + -1.9296875, + -0.21484375, + 0.34765625, + -1.484375, + 1.671875, + -2.546875, + 1.4453125, + 0.55859375, + -0.03857421875, + 0.2392578125, + 0.2197265625, + 1.40625, + -3.703125, + 1.421875, + -2.015625, + 0.373046875, + 0.033203125, + -3.65625, + -1.2734375, + 0.039794921875, + 4.78125, + -1.171875, + 0.53515625, + -0.9921875, + -2.453125, + -1.0390625, + 4.8125, + 1.203125, + 1.0078125, + -3.453125, + -0.205078125, + 0.498046875, + 0.7421875, + -1.5078125, + 3.25, + 0.6484375, + 0.9609375, + 1.5625, + -0.69921875, + -0.8828125, + -0.138671875, + -1.6640625, + 1.9296875, + 1.859375, + -0.197265625, + -1.59375, + 6.09375, + 0.890625, + -0.484375, + -1.7109375, + 1.7109375, + 1.2890625, + 1.3203125, + -0.1708984375, + -1.046875, + 0.44921875, + -1.078125, + -0.322265625, + 1.4765625, + -0.0189208984375, + -0.35546875, + -1.90625, + 3.09375, + -1.046875, + -0.79296875, + -1.6484375, + 1.6484375, + -2.1875, + -3.578125, + -2.453125, + -0.11767578125, + 1.5390625, + -2.046875, + 0.19921875, + 0.8671875, + 0.9375, + 2.25, + -0.2392578125, + -1.6171875, + 0.31640625, + 3.15625, + 0.255859375, + 0.126953125, + -3.578125, + 0.07275390625, + -4.8125, + 1.0859375, + 2.015625, + 1.8203125, + 2.375, + -0.94140625, + 0.044921875, + -4.1875, + 0.625, + 0.024658203125, + 0.703125, + 4.8125, + 2.1875, + 1.4453125, + -0.3828125, + -0.365234375, + -1.3515625, + 0.89453125, + -1.65625, + 2.53125, + 3.140625, + -0.65625, + -1.171875, + -0.001556396484375, + 2.125, + 2.78125, + -1.9921875, + -2.375, + -0.05126953125, + -0.482421875, + -0.35546875, + 1.53125, + -1.21875, + 1.234375, + 0.09716796875, + 0.10595703125, + 2.078125, + 1.21875, + -2.515625, + -0.82421875, + 1.984375, + 2.046875, + 0.1884765625, + -0.92578125, + 1.34375, + -1.5859375, + 1.78125, + -5.9375, + -1.1171875, + 3.28125, + -4.90625, + -1.1953125, + 1.4296875, + -0.59375, + -2.328125, + 0.609375, + -3.34375, + 1.0859375, + 0.44140625, + -0.2021484375, + 0.68359375, + 3.859375, + 1.2578125, + -2.890625, + -0.6484375, + -1.8515625, + 2.1875, + 0.671875, + -0.48046875, + -1.1171875, + 1.46875, + -5.34375, + 3.515625, + 1.6875, + 0.55078125, + -3.109375, + 2.1875, + -0.640625, + 0.91015625, + 5.8125, + 1.921875, + -0.02490234375, + -3.734375, + -3.09375, + -2.203125, + 0.828125, + -1.8515625, + 2.09375, + -0.5390625, + -0.4609375, + -1.9609375, + 0.8125, + -0.32421875, + 0.69921875, + -4.25, + -0.287109375, + -0.447265625, + -0.07763671875, + -1.1328125, + 0.9296875, + 2.15625, + -1.109375, + 0.671875, + 0.68359375, + -1.5078125, + 1.984375, + -1.9609375, + -0.486328125, + -2.171875, + -1.328125, + 0.00616455078125, + -2.625, + 3.125, + -1.4453125, + 3.625, + -0.2578125, + 1.375, + -2.375, + 0.34375, + -1.4453125, + -2.3125, + 1.171875, + -1.015625, + -5.21875, + -1.25, + 2.09375, + 0.29296875, + -0.345703125, + 1.3515625, + -1.109375, + 0.30859375, + 0.8515625, + 0.515625, + 0.76953125, + 2.125, + 0.625, + 0.56640625, + 2.421875, + 1.28125, + 2.0, + 0.10205078125, + 0.11474609375, + 1.703125, + 0.5, + -0.1748046875, + -0.314453125, + 2.578125, + 3.765625, + 2.734375, + -2.8125, + -0.58203125, + 0.58984375, + 1.40625, + 6.03125, + 2.53125, + -2.40625, + -1.3515625, + 2.453125, + -0.75, + -0.6015625, + -6.1875, + -0.6484375, + -1.921875, + 0.4140625, + 4.25, + 1.546875, + 0.5625, + -0.73046875, + -1.4296875, + 2.109375, + -3.125, + 1.734375, + 0.15625, + -2.125, + -2.828125, + 1.84375, + -2.484375, + 2.09375, + -1.0546875, + 0.3046875, + 1.359375, + -0.423828125, + -0.8359375, + -2.984375, + -2.140625, + -1.15625, + -1.59375, + -0.412109375, + 2.9375, + -1.578125, + -1.6171875, + 2.1875, + -2.953125, + 0.5859375, + -6.5, + 2.203125, + -2.5625, + 1.40625, + 1.734375, + -0.03759765625, + -1.703125, + 4.53125, + -2.59375, + -0.10205078125, + -2.640625, + -0.255859375, + 0.8515625, + -0.1611328125, + -1.6015625, + 1.0625, + 1.1640625, + 0.66796875, + 0.25, + -2.734375, + 1.1171875, + 3.84375, + 3.078125, + -0.87890625, + 6.90625, + -0.1650390625, + 2.8125, + 0.19140625, + 0.546875, + -1.1015625, + -3.109375, + -1.09375, + -3.390625, + 0.279296875, + -1.390625, + -1.0703125, + 1.109375, + -0.4296875, + -0.9375, + -7.03125, + 0.02001953125, + -0.1611328125, + 2.015625, + -1.2265625, + 0.8828125, + -2.359375, + -2.3125, + -0.0947265625, + 5.59375, + 0.244140625, + -2.6875, + 1.3203125, + 1.09375, + -0.9296875, + -1.2578125, + -1.5234375, + 3.890625, + 1.0859375, + 0.6796875, + 3.359375, + -0.859375, + -1.546875, + -3.484375, + -1.546875, + -0.62890625, + 3.078125, + 4.875, + 0.0439453125, + -2.328125, + -1.2265625, + 2.578125, + -0.32421875, + -2.40625, + 0.48046875, + -1.8984375, + 0.77734375, + 0.80859375, + -4.59375, + 2.109375, + 1.6796875, + 1.2578125, + -2.859375, + 1.546875, + 0.359375, + 0.87109375, + -1.515625, + -0.03857421875, + -0.8515625, + -0.640625, + -2.265625, + 2.890625, + -0.185546875, + 0.55859375, + 1.2578125, + -1.5078125, + -3.140625, + 0.03515625, + 1.40625, + 0.458984375, + 1.4453125, + 2.15625, + 0.80078125, + -0.2275390625, + 1.34375, + -0.98046875, + -1.8828125, + -0.53125, + 2.203125, + 1.8671875, + 4.4375, + 1.0390625, + 2.75, + 2.265625, + 0.55859375, + 0.0, + -4.25, + 0.4140625, + -0.2890625, + -1.1796875, + -2.484375, + -1.453125, + 0.83984375, + 1.5625, + 1.203125, + 3.046875, + 1.6875, + -1.203125, + 2.1875, + 0.6953125, + 1.109375, + -1.1875, + -0.041259765625, + 3.796875, + 0.296875, + -0.083984375, + 0.890625, + -1.0703125, + -0.83984375, + -6.15625, + 0.88671875, + 2.078125, + -1.4296875, + 1.5625, + -1.6484375, + -0.1162109375, + -0.08203125, + -2.53125, + 1.1796875, + 4.75, + -1.6484375, + 0.279296875, + -0.7421875, + -4.03125, + 1.484375, + -1.3359375, + -0.71875, + -7.15625, + -0.0294189453125, + 0.490234375, + 4.3125, + 1.1640625, + -1.9375, + -0.8203125, + -1.671875, + 3.953125, + -1.0625, + 3.09375, + 0.14453125, + 1.0625, + -2.34375, + -0.341796875, + -6.0, + -0.875, + 0.81640625, + 0.68359375, + -1.15625, + 0.103515625, + -0.6796875, + 0.181640625, + -0.421875, + 1.328125, + -2.15625, + 2.21875, + -0.33984375, + -0.53125, + -0.08740234375, + -1.328125, + 1.75, + 1.375, + 2.140625, + 4.625, + -0.84375, + 0.71875, + -0.1357421875, + -0.69140625, + -0.58984375, + -0.60546875, + -0.62109375, + 1.125, + 3.328125, + -0.83984375, + 0.96484375, + 2.015625, + -1.9375, + -0.462890625, + -0.2890625, + -0.90625, + -2.78125, + -3.453125, + -3.46875, + 0.0299072265625, + -0.1572265625, + -0.94140625, + 2.359375, + 3.421875, + -0.70703125, + 1.21875, + -0.75, + -0.4140625, + -1.390625, + -2.125, + 0.59765625, + -1.109375, + 0.81640625, + 2.96875, + 1.0078125, + -1.6875, + -0.94140625, + 1.0546875, + -2.40625, + -0.267578125, + 3.5625, + -4.3125, + 0.376953125, + 0.875, + -1.6328125, + -0.392578125, + 1.7578125, + -3.046875, + 0.80078125, + 3.109375, + -0.48046875, + 2.1875, + 0.119140625, + 2.28125, + 1.8125, + -1.0703125, + -3.1875, + 2.234375, + -0.451171875, + 1.0234375, + 0.97265625, + -0.84375, + -3.890625, + 2.84375, + 0.65625, + 5.03125, + 0.11474609375, + 1.234375, + 1.1953125, + 0.04345703125, + 2.796875, + 1.984375, + 0.046875, + -1.3125, + -0.7265625, + -1.09375, + -6.8125, + -0.44140625, + -0.02734375, + 1.4765625, + 1.0859375, + 3.0625, + -1.0703125, + 0.7890625, + -0.37109375, + 2.34375, + 4.28125, + 0.0242919921875, + 1.0, + -0.1884765625, + -1.671875, + 0.1396484375, + -0.1591796875, + -1.0859375, + 0.5546875, + 0.515625, + -0.2353515625, + -1.859375, + -0.953125, + -0.59375, + -0.25, + -1.109375, + 1.8046875, + 0.65625, + 0.74609375, + 1.203125, + 0.470703125, + -1.09375, + 2.84375, + -1.2109375, + 0.337890625, + 1.78125, + 1.859375, + -0.58203125, + -0.953125, + 1.015625, + -2.328125, + 0.2080078125, + 0.2158203125, + -1.3828125, + 3.171875, + 0.71484375, + -1.1953125, + 1.3125, + 0.859375, + 1.96875, + 0.251953125, + 1.1015625, + 3.375, + 0.80859375, + 1.75, + 1.7578125, + -0.7578125, + -1.5625, + 0.82421875, + 0.322265625, + 0.97265625, + 0.84765625, + -3.015625, + 3.453125, + -1.140625, + -2.53125, + 3.1875, + 3.515625, + 3.046875, + 0.07568359375, + -1.453125, + 3.53125, + 0.42578125, + -0.6328125, + -0.369140625, + 0.412109375, + -0.45703125, + -2.09375, + -2.25, + -0.8203125, + -0.26171875, + -0.083984375, + -2.5625, + 4.3125, + 6.34375, + -3.46875, + 2.09375, + -1.6328125, + -1.859375, + -0.126953125, + 1.078125, + 3.15625, + 1.03125, + -9.8125, + 1.0625, + 1.453125, + 1.2265625, + 2.078125, + -0.69140625, + -1.0, + -0.0230712890625, + 0.44140625, + -0.296875, + 5.5, + -0.55078125, + -1.1796875, + -0.8671875, + 1.125, + -2.3125, + -0.6015625, + 2.546875, + 2.40625, + 7.90625, + -0.6171875, + -2.15625, + 0.91015625, + -2.265625, + 0.478515625, + 5.0625, + -0.671875, + 0.1943359375, + 0.03955078125, + 3.25, + 1.9375, + -5.28125, + 2.765625, + 0.4609375, + -0.373046875, + -0.79296875, + 0.0267333984375, + -2.03125, + -0.1279296875, + -2.5625, + 0.6328125, + -3.640625, + -3.421875, + 3.609375, + -1.2578125, + 1.015625, + -0.6171875, + -2.71875, + -0.6640625, + 1.359375, + -2.890625, + 0.5078125, + 2.578125, + 1.9140625, + 0.3828125, + -0.201171875, + -3.390625, + 4.34375, + -0.5546875, + -1.0078125, + -1.8359375, + -1.21875, + 0.4296875, + -2.203125, + -3.34375, + 3.71875, + 9.25, + -2.203125, + 1.8359375, + 0.7265625, + 1.890625, + 1.9296875, + -0.7421875, + -2.5, + -2.6875, + -1.6953125, + -3.078125, + 4.3125, + -1.578125, + -0.84765625, + -0.15625, + 2.765625, + 0.50390625, + 0.62890625, + -1.7421875, + -2.53125, + -2.0, + -2.390625, + -1.2734375, + 1.421875, + -3.9375, + 3.09375, + -0.55859375, + -0.060546875, + 6.59375, + 4.1875, + 0.578125, + 0.267578125, + 0.75390625, + 0.3125, + 0.58984375, + 2.890625, + 3.703125, + -0.423828125, + -2.328125, + -0.13671875, + 1.2734375, + 3.203125, + 1.71875, + 2.796875, + 2.8125, + -2.515625, + 1.2734375, + -0.3359375, + -3.78125, + -0.98828125, + -1.40625, + -0.345703125, + -4.53125, + -1.0703125, + 0.490234375, + -4.4375, + -2.75, + 0.016357421875, + 1.65625, + 0.6640625, + -2.296875, + 2.15625, + -1.65625, + 1.875, + -1.8046875, + 3.46875, + 1.9375, + -0.158203125, + 1.0546875, + 1.5859375, + 0.22265625, + -0.87109375, + 1.203125, + 1.75, + 0.0296630859375, + 0.0166015625, + 1.3984375, + -0.9296875, + -1.0, + -3.78125, + -2.515625, + 0.8515625, + -2.640625, + 0.52734375, + 0.11962890625, + -1.171875, + 0.40625, + 0.392578125, + -0.80859375, + -0.47265625, + 0.1376953125, + -1.28125, + -0.6796875, + 0.232421875, + -1.3671875, + -3.0625, + 0.0172119140625, + -1.0390625, + 1.5390625, + -0.7421875, + 0.828125, + -0.310546875, + 0.640625, + 3.25, + -1.5546875, + -0.068359375, + 0.91796875, + -1.6796875, + -1.59375, + -1.2265625, + -3.625, + 1.125, + -4.3125, + -0.1640625, + 0.984375, + -1.5078125, + 0.216796875, + -0.65625, + 0.33203125, + -3.484375, + -0.34375, + 1.453125, + -3.8125, + 1.0, + -0.447265625, + -3.03125, + 2.953125, + -0.55859375, + 1.8359375, + 3.9375, + -8.875, + 2.015625, + 0.69140625, + -0.08056640625, + 3.09375, + 5.875, + -3.25, + -0.10302734375, + -0.0308837890625, + 1.171875, + 0.59765625, + -1.65625, + 2.328125, + 4.34375, + 1.1953125, + 5.0, + 2.03125, + -1.921875, + -0.94140625, + 2.671875, + -1.59375, + 2.359375, + -0.71875, + 1.3125, + -4.1875, + 0.51171875, + 1.3359375, + 0.8359375, + -3.375, + 1.921875, + -0.7109375, + 2.21875, + -0.6796875, + -1.140625, + -1.3984375, + 1.4453125, + 2.0625, + 0.396484375, + 0.185546875, + -0.625, + 0.474609375, + -0.126953125, + 0.8046875, + -0.10009765625, + -0.0208740234375, + -1.59375, + -1.9609375, + 1.859375, + -1.6796875, + 1.1171875, + -2.390625, + 1.84375, + -0.408203125, + -3.296875, + 1.3203125, + 1.21875, + -2.0625, + 1.484375, + -0.91796875, + -1.1015625, + -0.84375, + 1.25, + -0.9296875, + 0.6796875, + -0.08203125, + -1.5234375, + -0.443359375, + 3.78125, + 1.4140625, + 3.984375, + -1.8984375, + -1.1015625, + -1.8984375, + 1.0078125, + 1.34375, + -1.796875, + -0.1552734375, + 0.0206298828125, + -0.703125, + -1.765625, + -2.84375, + -1.3671875, + -3.5625, + 0.984375, + -1.21875, + 0.201171875, + -4.90625, + -0.90234375, + -1.046875, + -2.578125, + 0.1142578125, + -6.4375, + 3.234375, + 1.5, + -1.796875, + -1.609375, + -0.06298828125, + -1.171875, + -1.921875, + -3.40625, + 0.06201171875, + 0.4296875, + 3.78125, + -3.03125, + -0.8671875, + 1.6953125, + -0.9296875, + 1.0625, + -1.328125, + 0.40625, + -1.046875, + 1.2890625, + 0.169921875, + -2.140625, + 1.0390625, + 0.484375, + 0.453125, + -1.953125, + 2.671875, + -3.734375, + -3.171875, + -4.28125, + -2.53125, + -2.765625, + -1.703125, + -1.71875, + -4.625, + 2.375, + -1.015625, + 1.0546875, + -0.392578125, + 0.921875, + -2.484375, + 3.09375, + 0.359375, + -0.018798828125, + 1.4765625, + 0.37109375, + 1.9453125, + -0.07666015625, + -0.55078125, + 3.96875, + -3.265625, + -1.34375, + -0.703125, + -0.59375, + 0.49609375, + 0.064453125, + -1.46875, + 2.859375, + 3.0, + -0.0341796875, + 0.7734375, + -3.71875, + 0.205078125, + 2.625, + -1.34375, + 1.0546875, + -1.1875, + -0.462890625, + 6.15625, + -0.2333984375, + -0.69921875, + -0.859375, + -2.109375, + 1.1328125, + -1.046875, + -0.076171875, + 1.3984375, + 0.9140625, + 2.96875, + 2.0, + 1.671875, + -1.2265625, + -0.55859375, + 0.5078125, + 0.09619140625, + 2.5625, + -3.5, + 0.2236328125, + -2.046875, + -1.75, + -0.76171875, + 2.78125, + 0.3984375, + 5.78125, + 1.1875, + -1.8046875, + 3.703125, + -0.69140625, + -0.064453125, + -0.82421875, + 1.0, + -0.37109375, + -0.62109375, + 0.33203125, + -3.140625, + 0.8203125, + 1.984375, + 2.84375, + -3.78125, + 0.341796875, + -3.6875, + 2.421875, + 1.65625, + -1.9765625, + 2.15625, + 3.96875, + -2.390625, + -2.828125, + -3.46875, + -1.4296875, + -1.5390625, + 0.4765625, + 1.90625, + 0.7890625, + -2.171875, + -2.578125, + 2.109375, + 2.109375, + -0.019775390625, + -1.9765625, + 1.546875, + 2.546875, + 0.6484375, + -2.125, + 2.40625, + 1.3984375, + -2.96875, + 2.609375, + 0.408203125, + -2.96875, + 0.6875, + -1.0546875, + 2.25, + -0.78125, + 1.1875, + 0.1455078125, + -0.2158203125, + -2.078125, + 1.4296875, + -0.98828125, + 0.52734375, + -0.5, + -0.859375, + -2.5625, + -0.640625, + 1.5859375, + 1.2421875, + -0.91015625, + -0.435546875, + -0.6015625, + 0.6953125, + -0.2060546875, + 1.640625, + 2.203125, + -0.462890625, + -1.6640625, + -2.421875, + 2.171875, + 1.5234375, + -0.7109375, + -1.703125, + 0.091796875, + 1.2734375, + 0.10888671875, + 1.75, + 1.234375, + 2.359375, + -2.109375, + -1.2890625, + 3.4375, + 1.2421875, + -3.375, + -8.375, + -4.09375, + 1.1640625, + 1.8984375, + -0.6796875, + -2.171875, + 0.12060546875, + -0.4453125, + -1.7265625, + -0.2119140625, + -0.236328125, + -2.140625, + 2.5625, + -1.0078125, + -3.0, + 1.2578125, + -0.515625, + 0.83203125, + -0.50390625, + 2.46875, + 3.4375, + 0.1728515625, + 0.1328125, + -4.1875, + -2.828125, + -0.53125, + -2.546875, + -8.4375, + 1.578125, + -1.484375, + 0.91015625, + 0.3515625, + 0.61328125, + -2.78125, + 0.58984375, + -3.234375, + -0.78515625, + 1.8984375, + -1.921875, + 2.421875, + 0.76953125, + 0.85546875, + 0.057861328125, + -0.64453125, + -0.6796875, + 2.59375, + 0.9765625, + 1.4765625, + -0.8671875, + -0.8125, + -3.796875, + -0.06640625, + 1.3125, + -0.07763671875, + -0.328125, + -0.1376953125, + 2.421875, + -0.06396484375, + -0.9765625, + 2.703125, + 1.640625, + -2.546875, + 0.283203125, + 0.408203125, + 0.400390625, + -0.96875, + 0.390625, + -1.4609375, + 0.94921875, + -0.9921875, + -0.6328125, + -1.25, + -0.94140625, + 2.796875, + -1.3515625, + -0.6640625, + -4.34375, + -0.765625, + 2.359375, + 3.09375, + 0.1806640625, + 2.015625, + 3.0, + 1.296875, + 0.66015625, + 1.1875, + 0.76171875, + -1.2890625, + -2.3125, + 2.390625, + 1.828125, + 0.0478515625, + -1.59375, + 2.734375, + 2.984375, + 1.21875, + 4.53125, + 1.6484375, + -0.8671875, + -3.125, + 3.015625, + -1.9921875, + -2.625, + 3.734375, + 2.109375, + -0.43359375, + 2.453125, + 2.921875, + -1.1484375, + 0.314453125, + -0.6328125, + 0.10205078125, + -1.921875, + -2.421875, + 1.28125, + 0.5390625, + 0.171875, + 1.265625, + 0.7421875, + 2.203125, + -0.390625, + 0.66015625, + -1.5390625, + -0.5546875, + 2.71875, + 3.140625, + 0.91015625, + 0.953125, + -1.40625, + 1.5, + 0.96484375, + -0.51953125, + -0.25390625, + 1.375, + 1.6953125, + 2.8125, + -0.66796875, + -0.279296875, + -1.046875, + 0.07958984375, + 2.53125, + 2.03125, + 1.9609375, + 0.578125, + -0.5234375, + 0.080078125, + 0.02294921875, + 1.1796875, + 1.3125, + -2.09375, + -0.76171875, + -0.455078125, + 1.484375, + 2.1875, + 1.1484375, + 1.9375, + -1.0, + -7.59375, + -1.6796875, + -1.921875, + 0.78515625, + -0.87109375, + -1.046875, + -0.921875, + -1.1328125, + 1.09375, + -2.1875, + -0.462890625, + 2.046875, + -0.2021484375, + -1.1875, + 0.408203125, + -2.25, + 0.578125, + 0.89453125, + 1.84375, + 1.640625, + -1.25, + -1.46875, + -0.91015625, + 0.5625, + -1.2421875, + 3.671875, + -1.3515625, + -2.328125, + 0.55078125, + 1.265625, + -1.2734375, + -1.1484375, + -2.171875, + -0.87109375, + 3.296875, + 1.7578125, + -0.2255859375, + -0.71484375, + -0.404296875, + 0.2451171875, + -0.8515625, + 0.341796875, + -1.28125, + -3.140625, + -1.21875, + -0.48046875, + -5.53125, + -1.28125, + -2.65625, + -1.6953125, + -0.6015625, + 2.1875, + -1.828125, + 0.828125, + 1.7734375, + 0.2080078125, + 1.8359375, + 1.7265625, + 0.87109375, + -2.015625, + 0.1484375, + 0.494140625, + 0.265625, + -1.078125, + -1.078125, + 0.53515625, + 0.275390625, + -1.59375, + -2.328125, + -1.2578125, + -1.6484375, + -3.53125, + 2.046875, + 1.5546875, + -2.171875, + 2.84375, + 0.1689453125, + -1.46875, + 1.1328125, + -0.083984375, + -1.5546875, + 1.96875, + -3.5, + -1.6640625, + -0.59375, + -0.55078125, + 1.171875, + -0.19921875, + 1.40625, + -1.6640625, + -1.1484375, + 0.17578125, + -0.2109375, + 1.171875, + 0.73046875, + 1.9296875, + 1.203125, + 0.40625, + -1.5859375, + -2.640625, + 0.0478515625, + -0.55078125, + -0.283203125, + -0.427734375, + 1.1953125, + -0.2255859375, + 0.111328125, + -1.6875, + -1.0546875, + 0.16015625, + 1.0546875, + 3.0, + 1.984375, + -2.578125, + -0.2109375, + 2.125, + -0.474609375, + 2.09375, + -1.53125, + -3.453125, + -0.68359375, + -1.4921875, + -2.625, + 1.890625, + -0.86328125, + 0.251953125, + 1.21875, + -0.70703125, + 0.2578125, + -0.435546875, + 0.8515625, + 0.265625, + 1.3203125, + 1.25, + -2.84375, + -0.66015625, + -0.146484375, + 0.470703125, + 0.55859375, + 0.458984375, + -1.2578125, + -1.453125, + 0.734375, + 0.9765625, + 0.83984375, + 1.515625, + 0.0106201171875, + -0.58984375, + -1.90625, + 0.3671875, + -0.921875, + -4.34375, + -1.9140625, + -1.1953125, + -2.171875, + 1.265625, + 0.77734375, + -0.462890625, + 0.0869140625, + 3.203125, + -5.78125, + -2.71875, + 0.1572265625, + 0.24609375, + 0.72265625, + 0.8046875, + -1.21875, + -0.162109375, + 0.166015625, + 1.2109375, + -3.8125, + 1.671875, + -1.2421875, + -4.4375, + 2.890625, + 0.359375, + 0.474609375, + 0.2216796875, + -2.296875, + -1.03125, + 2.3125, + 3.640625, + -0.9140625, + -0.220703125, + 2.234375, + 1.0625, + 1.1328125, + 0.5625, + -1.703125, + 2.421875, + -2.234375, + -2.203125, + -3.4375, + -1.984375, + 1.6015625, + 3.671875, + -0.310546875, + 2.703125, + -0.1337890625, + 0.60546875, + -0.27734375, + 0.359375, + -0.7890625, + 2.375, + -1.0703125, + -0.55859375, + -1.1484375, + -2.390625, + -0.302734375, + -2.328125, + 0.37890625, + 0.97265625, + -2.5625, + 1.2734375, + -0.1904296875, + -2.46875, + -2.796875, + 0.09326171875, + -2.25, + -2.109375, + 1.3046875, + -1.2109375, + -0.1796875, + 1.3515625, + 1.109375, + 1.109375, + 0.52734375, + -1.2578125, + -1.390625, + -2.0625, + 1.90625, + -0.248046875, + -1.890625, + 2.28125, + 3.453125, + -4.34375, + -0.33203125, + -1.21875, + -0.7265625, + -0.392578125, + 0.328125, + -2.171875, + 0.3671875, + -1.953125, + 1.03125, + 0.79296875, + -2.3125, + 2.6875, + -1.1171875, + -2.03125, + -1.375, + -1.359375, + -2.65625, + -0.0908203125, + 0.267578125, + -0.11669921875, + -0.86328125, + -2.015625, + 1.0859375, + 2.984375, + 1.1640625, + -0.2392578125, + 1.2890625, + 0.2451171875, + 1.1640625, + -1.9765625, + 1.4453125, + 0.30859375, + -0.95703125, + 1.015625, + -1.3671875, + -0.0966796875, + -1.3046875, + 1.671875, + 2.09375, + 2.171875, + 1.4765625, + 0.08056640625, + -5.4375, + 0.0162353515625, + -0.384765625, + 1.828125, + 1.1875, + -1.46875, + 1.0546875, + 0.400390625, + -2.9375, + 1.5859375, + 0.984375, + 0.9140625, + -0.1552734375, + -0.0380859375, + -1.84375, + -2.15625, + -1.6796875, + -1.1484375, + 1.2421875, + 1.9765625, + -1.921875, + 1.4296875, + 0.6875, + 1.5078125, + -2.34375, + 1.59375, + -3.421875, + 0.33203125, + -0.28515625, + 1.046875, + -1.1875, + -2.5, + -0.2890625, + 0.08642578125, + 0.8203125, + -1.5703125, + 1.3125, + 3.359375, + 1.96875, + -0.5234375, + 1.390625, + 1.359375, + 1.0625, + 13.625, + -0.404296875, + 2.203125, + -0.369140625, + -2.765625, + -1.25, + -2.5, + 0.7578125, + 2.09375, + -0.8203125, + -1.8671875, + -5.40625, + 1.203125, + -2.25, + -0.625, + -1.078125, + 1.359375, + -0.142578125, + -1.3515625, + -0.91796875, + -0.01385498046875, + -1.3828125, + 1.34375, + -0.59765625, + -4.6875, + 0.87890625, + 1.6171875, + 0.1806640625, + 0.57421875, + 3.25, + 0.58203125, + -0.67578125, + 0.6953125, + 0.7578125, + 2.640625, + 0.59765625, + 2.265625, + -0.82421875, + 1.6328125, + 2.203125, + 1.03125, + 2.875, + -0.8203125, + -1.6484375, + 0.337890625, + -0.0966796875, + -0.00885009765625, + 0.76171875, + 2.34375, + -3.5625, + -2.09375, + -6.09375, + 2.484375, + -3.453125, + -2.3125, + 0.376953125, + -0.546875, + -0.640625, + 1.015625, + 1.59375, + 0.3203125, + 0.76953125, + 0.310546875, + -5.0625, + -0.39453125, + -1.9453125, + -0.322265625, + -3.0625, + 1.3828125, + 1.265625, + -0.796875, + -0.66015625, + 1.2265625, + 2.234375, + -1.7734375, + 1.65625, + 0.41015625, + 0.10009765625, + 1.5546875, + -2.234375, + 1.84375, + 2.5, + 0.95703125, + 1.5, + 1.5078125, + -2.484375, + 0.0167236328125, + -3.921875, + -0.6484375, + -1.453125, + -2.203125, + 0.703125, + 0.3046875, + 0.85546875, + -0.6171875, + 1.828125, + 0.58203125, + 1.546875, + -0.080078125, + -0.8984375, + -2.71875, + 0.2890625, + -2.234375, + 0.0250244140625, + 0.72265625, + 0.07763671875, + 0.67578125, + -2.203125, + 0.97265625, + -1.0625, + -1.296875, + -1.109375, + 0.875, + 0.6875, + 3.109375, + 0.337890625, + 5.15625, + 3.171875, + -1.1171875, + -1.28125, + -1.828125, + -0.79296875, + -0.5390625, + 0.44921875, + 0.7734375, + 0.13671875, + -1.3984375, + -0.58203125, + 0.54296875, + -2.15625, + -1.609375, + -1.484375, + 4.125, + 3.546875, + 1.0859375, + -0.478515625, + -4.21875, + -0.9296875, + -5.1875, + -3.53125, + 0.515625, + -1.671875, + 0.0, + 2.125, + -1.296875, + -0.69140625, + 2.5, + 0.93359375, + -1.9453125, + 2.515625, + -0.361328125, + 2.03125, + -0.306640625, + -0.00323486328125, + 1.921875, + -1.0703125, + -0.625, + 0.6171875, + -0.703125, + -1.4609375, + -3.734375, + 0.018798828125, + 1.0703125, + -1.1484375, + 0.267578125, + -0.4375, + 2.3125, + -0.57421875, + 0.5703125, + -1.5078125, + 2.953125, + 0.8125, + -6.84375, + -1.5390625, + 0.8203125 + ], + "index": 1, + "object": "embedding", + "raw_output": null + }, + { + "embedding": [ + 3.015625, + 1.546875, + -1.3359375, + -3.109375, + 2.671875, + -1.140625, + -2.03125, + 2.78125, + -3.375, + 2.375, + -3.5625, + -0.921875, + 6.9375, + -1.078125, + 4.03125, + -0.08056640625, + 2.359375, + 2.421875, + 2.203125, + 2.65625, + -0.173828125, + 5.03125, + 2.140625, + -2.671875, + 4.0, + 3.125, + -0.181640625, + -1.8671875, + -1.6640625, + 3.5, + -2.109375, + 2.9375, + 1.625, + 7.09375, + -4.28125, + 2.484375, + -2.515625, + -4.8125, + -0.01385498046875, + 0.07861328125, + -0.1533203125, + -1.4296875, + 0.1591796875, + 0.73828125, + -1.71875, + 0.033935546875, + -1.765625, + -2.671875, + 1.6171875, + 1.03125, + 1.8671875, + -1.9765625, + -0.1552734375, + -0.107421875, + -0.1259765625, + 1.296875, + -2.25, + -1.2421875, + -1.625, + 0.95703125, + -6.875, + 0.54296875, + 1.7265625, + -1.578125, + 1.8671875, + 2.609375, + 4.15625, + -0.86328125, + 3.375, + -1.140625, + -1.4921875, + 0.8984375, + 1.6484375, + -0.279296875, + 0.79296875, + 0.9765625, + -3.6875, + -1.8515625, + 1.96875, + 4.125, + -0.3984375, + -2.765625, + -0.197265625, + -2.875, + -0.9453125, + -1.953125, + -0.63671875, + -2.046875, + 0.396484375, + -1.1953125, + 1.5859375, + -1.1796875, + 0.470703125, + 1.625, + 0.1767578125, + 2.3125, + -3.046875, + -0.515625, + -2.34375, + 1.546875, + 1.53125, + 2.65625, + 2.625, + -1.3828125, + 0.2041015625, + -0.251953125, + -1.9375, + -1.359375, + 0.0250244140625, + -1.4296875, + -0.3046875, + 3.15625, + 3.625, + 0.92578125, + -1.875, + -1.0234375, + -0.404296875, + 0.478515625, + 2.171875, + 3.046875, + 2.140625, + -2.25, + -1.84375, + -0.181640625, + 3.96875, + -3.3125, + 0.43359375, + 1.109375, + 1.484375, + -2.453125, + 1.53125, + -3.59375, + 1.6015625, + 0.06640625, + -1.65625, + -0.875, + -0.404296875, + 1.1015625, + -2.171875, + 0.2734375, + -1.3515625, + 1.125, + 2.671875, + -1.84375, + 1.109375, + 3.796875, + -2.859375, + 1.359375, + 1.65625, + 3.8125, + 1.109375, + -1.171875, + -2.15625, + -1.921875, + -1.3125, + -2.15625, + -2.765625, + 2.421875, + 5.71875, + -0.16796875, + -1.8125, + 0.2412109375, + 2.96875, + 0.205078125, + -0.9140625, + -1.9765625, + 1.3203125, + -0.81640625, + 1.8125, + 0.73828125, + 1.0078125, + 0.5703125, + -3.234375, + 1.6328125, + 0.96484375, + 0.77734375, + -1.875, + -2.078125, + 0.98828125, + 3.546875, + -1.4140625, + 3.109375, + -0.396484375, + 3.5, + 1.71875, + 0.48046875, + -0.859375, + -2.515625, + 0.024658203125, + 0.439453125, + 2.234375, + -1.3046875, + -2.625, + 1.4296875, + -2.859375, + 0.0244140625, + -0.431640625, + 0.96875, + -0.25390625, + -1.890625, + 8.3125, + -3.421875, + 3.6875, + 1.3984375, + -1.953125, + 0.37109375, + -0.6875, + 0.9609375, + 0.73046875, + -4.46875, + 0.59765625, + -2.125, + 1.59375, + 3.5625, + 0.80078125, + -2.59375, + 4.21875, + -0.248046875, + -1.7265625, + 0.65625, + 2.125, + 1.734375, + 1.015625, + 1.3046875, + -1.78125, + -4.125, + 0.1376953125, + -1.9609375, + 0.69921875, + -4.0, + 2.453125, + -3.296875, + 0.06591796875, + -1.46875, + 1.6796875, + -1.671875, + -0.51953125, + -0.21484375, + -1.734375, + 1.390625, + -0.546875, + -1.1171875, + -1.15625, + -0.8359375, + -0.6171875, + 0.76171875, + 1.1640625, + -2.265625, + 2.90625, + -3.328125, + -1.3828125, + -2.765625, + 1.078125, + -0.052490234375, + -0.74609375, + -1.1953125, + -0.380859375, + -1.3671875, + -0.875, + 2.328125, + 1.796875, + -3.71875, + 2.46875, + 3.546875, + 0.08544921875, + -0.1484375, + -2.625, + -3.265625, + -1.2734375, + -0.83203125, + 0.1025390625, + -3.09375, + -0.88671875, + 0.56640625, + -0.69140625, + 0.5703125, + -0.2734375, + -2.140625, + -1.234375, + 0.265625, + -1.2578125, + -1.7578125, + 2.75, + -1.1328125, + 2.296875, + -0.1279296875, + -1.359375, + 2.09375, + -2.21875, + 1.546875, + 1.5, + 2.59375, + 0.0849609375, + 2.6875, + -2.515625, + 3.0, + -2.4375, + -2.34375, + -0.7265625, + -0.032470703125, + -1.453125, + 1.7421875, + -1.171875, + -1.2890625, + -1.203125, + -1.0546875, + -2.828125, + 3.828125, + 0.38671875, + -1.3828125, + -5.21875, + -1.1640625, + -1.125, + -0.73828125, + 0.86328125, + 0.416015625, + 1.609375, + -1.8125, + -2.453125, + 3.21875, + -3.859375, + -0.96484375, + -3.25, + 2.1875, + 0.859375, + 1.0546875, + 0.7421875, + -0.58203125, + -3.5, + -0.55859375, + -1.8515625, + -3.59375, + -2.421875, + 2.59375, + -0.5546875, + -0.80078125, + 1.84375, + -0.58984375, + 1.8046875, + 0.0986328125, + -3.015625, + -1.984375, + -0.796875, + -0.55078125, + 1.3046875, + -0.6796875, + 3.234375, + -2.0, + -1.7578125, + -0.98046875, + -0.59375, + 0.69921875, + 1.1640625, + 2.46875, + 0.66015625, + -0.76953125, + -1.234375, + 1.78125, + 0.671875, + 1.9375, + -0.330078125, + 1.328125, + 4.625, + -0.6015625, + 0.017333984375, + 3.28125, + 2.71875, + 0.34375, + -3.71875, + 0.08642578125, + -2.21875, + 0.447265625, + -1.8203125, + 1.2265625, + -1.671875, + -1.125, + -3.09375, + -2.359375, + -0.044921875, + -0.8125, + -1.2109375, + -7.375, + 0.287109375, + 0.50390625, + -2.4375, + 3.71875, + -2.375, + 0.74609375, + 1.9453125, + 0.30859375, + -2.5, + -1.0, + 1.265625, + 0.388671875, + -0.1787109375, + -0.31640625, + 1.8671875, + -6.03125, + -2.828125, + 2.546875, + 1.3515625, + -0.423828125, + 0.66796875, + 2.875, + -2.421875, + 0.7421875, + -1.046875, + -0.96875, + -0.734375, + 1.4921875, + -1.6953125, + -0.12451171875, + 3.25, + -1.125, + 3.046875, + -0.83203125, + 1.921875, + 3.6875, + -0.74609375, + 0.032470703125, + -1.0703125, + 5.0625, + -0.380859375, + -2.046875, + -3.765625, + 4.34375, + 1.7890625, + 3.328125, + 5.59375, + -1.0, + -0.34765625, + -1.6328125, + -2.3125, + -0.9375, + 0.34375, + 1.265625, + 2.15625, + 0.058837890625, + 0.2060546875, + -1.59375, + 2.15625, + 2.03125, + 1.9296875, + 3.09375, + 0.01251220703125, + 0.984375, + -2.171875, + 1.1640625, + 0.392578125, + -0.80078125, + -3.125, + 2.0625, + -2.75, + 0.7578125, + -1.390625, + -2.03125, + -3.046875, + -2.4375, + -0.921875, + 1.609375, + -1.1796875, + -1.3203125, + 1.0078125, + 1.171875, + 2.046875, + -0.625, + 3.140625, + -1.8359375, + -4.03125, + -0.05859375, + -0.6015625, + 2.078125, + -3.328125, + -3.359375, + -2.078125, + 3.9375, + 0.64453125, + 0.2392578125, + -1.3671875, + -2.375, + -1.6796875, + -4.65625, + -1.578125, + -6.59375, + 4.09375, + 4.84375, + 1.3359375, + -3.359375, + 0.318359375, + -0.9609375, + -3.328125, + 0.1845703125, + 2.609375, + 0.41796875, + 2.171875, + 0.259765625, + 1.7421875, + -0.470703125, + 3.109375, + -0.0084228515625, + 0.53125, + -3.0, + -2.515625, + -0.58984375, + -1.390625, + 1.4453125, + 4.28125, + 0.859375, + -1.5859375, + -0.421875, + 1.3984375, + -4.84375, + -2.34375, + 2.015625, + -0.21484375, + -1.7109375, + 1.8125, + -2.796875, + 0.291015625, + 2.9375, + -0.291015625, + -0.134765625, + -4.21875, + -1.03125, + 1.4140625, + 1.3515625, + -0.43359375, + -0.255859375, + 2.828125, + -2.90625, + -0.43359375, + 0.0020599365234375, + 2.96875, + -2.390625, + -1.03125, + -1.0859375, + 0.609375, + -0.287109375, + 2.59375, + 1.40625, + -1.3203125, + 2.1875, + -1.1015625, + -0.1630859375, + 0.1982421875, + 4.03125, + -0.1806640625, + -1.421875, + 0.96484375, + 3.75, + 2.671875, + 1.6796875, + 5.125, + -1.015625, + 1.3828125, + 2.5, + -3.09375, + -0.71484375, + -1.140625, + -0.23046875, + 0.6875, + -0.007659912109375, + -0.73828125, + 0.7421875, + -3.375, + -4.84375, + -2.46875, + 1.2734375, + -1.4140625, + 1.09375, + 2.046875, + 1.484375, + 0.490234375, + 0.88671875, + 1.4375, + 1.5859375, + -1.125, + 5.59375, + 0.388671875, + -3.28125, + 1.375, + 0.71484375, + -0.984375, + 0.671875, + 2.578125, + -2.421875, + 1.640625, + -2.203125, + 0.466796875, + -1.765625, + -1.1015625, + 1.7109375, + 2.875, + -3.703125, + -1.7734375, + 0.0072021484375, + -2.34375, + -6.0, + -0.52734375, + 1.609375, + -1.7421875, + -3.0, + 2.25, + 1.109375, + 1.8203125, + 3.734375, + 0.76953125, + -2.421875, + 4.0625, + -4.375, + -0.83984375, + 3.125, + -1.90625, + -0.058837890625, + -2.640625, + 2.4375, + 0.06689453125, + -2.1875, + -0.359375, + 4.25, + -4.1875, + -3.5, + 0.263671875, + -0.1845703125, + -1.453125, + 2.90625, + -0.5390625, + 1.859375, + -1.15625, + -0.1826171875, + -1.6796875, + 0.51953125, + 4.125, + -3.109375, + -3.875, + 2.078125, + 2.1875, + 1.0703125, + -3.375, + 3.28125, + 2.65625, + -0.44921875, + 0.91796875, + 2.515625, + 0.302734375, + 2.5625, + 2.8125, + 2.1875, + -0.13671875, + 3.5, + 0.01251220703125, + -0.9921875, + 2.25, + 1.0234375, + 1.1953125, + -4.1875, + 1.265625, + -0.89453125, + -0.388671875, + -0.7734375, + -4.125, + -0.0225830078125, + -0.05419921875, + -3.859375, + -0.447265625, + 1.484375, + 0.244140625, + 2.140625, + 1.90625, + -6.1875, + -1.6328125, + 2.1875, + -0.83984375, + 2.15625, + 3.25, + -1.9375, + 3.59375, + 1.6484375, + 1.4609375, + -3.0625, + -0.29296875, + -1.984375, + -2.328125, + -0.73046875, + 0.9921875, + -3.34375, + -1.5234375, + 4.0, + 2.125, + 1.3984375, + 5.0625, + -2.4375, + -0.43359375, + -2.859375, + 0.6796875, + 1.1328125, + 0.6953125, + -2.03125, + 0.3671875, + 0.51171875, + 1.1875, + 1.359375, + 1.015625, + -2.046875, + 1.125, + -3.984375, + -1.8046875, + 2.75, + -5.03125, + -2.671875, + -2.4375, + 0.58203125, + -1.3515625, + 0.0118408203125, + -0.6953125, + -2.6875, + -1.53125, + 2.625, + -1.8203125, + -2.84375, + 0.7890625, + 1.15625, + -1.421875, + 0.27734375, + 0.228515625, + -5.15625, + 4.875, + 3.53125, + 2.671875, + -3.6875, + -3.703125, + 2.515625, + -1.9609375, + 1.4765625, + -3.390625, + 1.453125, + 3.328125, + -0.7421875, + -0.91015625, + -1.9921875, + -1.9765625, + 0.546875, + -2.421875, + 1.1015625, + -1.5625, + -2.28125, + -2.265625, + 0.515625, + 2.25, + -0.09326171875, + 1.25, + 0.5703125, + 0.357421875, + -0.6796875, + 2.3125, + 2.734375, + -1.5859375, + 1.25, + 3.34375, + 0.85546875, + -3.15625, + 0.515625, + 0.33984375, + 2.046875, + 1.5078125, + -0.609375, + 0.1875, + 1.703125, + 2.109375, + -2.015625, + 0.52734375, + -0.177734375, + 1.609375, + -0.515625, + -1.296875, + -1.40625, + -1.765625, + 1.921875, + -0.008056640625, + 0.53515625, + 1.4140625, + -1.1015625, + 2.78125, + 0.7265625, + -1.6328125, + 2.265625, + -1.2265625, + 2.53125, + 2.265625, + 3.21875, + -3.0, + 1.625, + 1.921875, + 1.2734375, + 3.25, + 0.09033203125, + 2.109375, + 0.9609375, + -0.7109375, + 3.65625, + 0.55859375, + 0.7421875, + -2.609375, + 1.3046875, + 0.6015625, + 0.734375, + -2.5, + -1.59375, + -1.3515625, + 5.0625, + -0.7265625, + -0.96484375, + -1.015625, + 0.6640625, + 3.453125, + 0.3203125, + -1.4609375, + -3.453125, + -2.109375, + 0.18359375, + -1.3984375, + 0.054443359375, + 3.140625, + 2.078125, + -0.69140625, + -0.2578125, + -1.1015625, + 4.03125, + 0.77734375, + 0.68359375, + -0.21875, + -0.37890625, + -2.875, + 1.109375, + -1.1953125, + -0.267578125, + 2.15625, + -2.328125, + 0.51171875, + 0.8359375, + -1.7890625, + -0.9609375, + -1.734375, + -1.34375, + 0.8046875, + 4.4375, + -0.83203125, + 0.388671875, + -0.2578125, + 0.287109375, + 2.640625, + -3.25, + -0.041748046875, + -1.4765625, + -0.87890625, + 1.2109375, + 0.51953125, + 0.84375, + 0.80078125, + 3.578125, + 1.40625, + 1.265625, + 1.328125, + -1.890625, + -0.6875, + -0.0810546875, + -0.388671875, + -0.337890625, + -1.2109375, + -4.1875, + -0.890625, + -0.62890625, + 0.306640625, + -1.7578125, + 0.79296875, + -1.671875, + -4.625, + 1.5859375, + 2.140625, + -3.40625, + -2.359375, + 2.015625, + -0.255859375, + -2.328125, + -1.5859375, + 4.25, + -2.71875, + 0.016845703125, + 1.5078125, + 0.2041015625, + 2.671875, + -0.61328125, + -2.15625, + -1.1328125, + -0.9609375, + 1.9921875, + -1.328125, + 0.439453125, + 2.765625, + 1.84375, + -0.0155029296875, + 2.0625, + 0.31640625, + -0.3828125, + 1.3203125, + 4.3125, + -1.28125, + -2.765625, + -5.375, + 0.3046875, + 3.15625, + -1.4296875, + -2.921875, + -1.3125, + -2.265625, + 2.1875, + 4.1875, + 1.265625, + 2.890625, + -1.9453125, + 0.091796875, + 2.78125, + 3.265625, + 1.8125, + 0.58984375, + 0.5390625, + 0.52734375, + 0.83203125, + -1.34375, + -0.953125, + -6.25, + -0.9765625, + 1.5078125, + 1.890625, + -2.296875, + -1.609375, + 2.40625, + -2.875, + 3.375, + -1.3984375, + -2.296875, + -2.171875, + 4.21875, + 0.4921875, + -3.21875, + -1.3828125, + -0.8984375, + -1.8125, + -0.203125, + 0.384765625, + -0.236328125, + -4.0625, + -1.9765625, + 2.375, + 2.671875, + -1.5390625, + 0.6171875, + -0.80078125, + -1.8125, + -0.443359375, + -2.765625, + 1.2421875, + 0.08740234375, + -2.671875, + -0.11181640625, + -3.0, + 1.453125, + 2.046875, + -2.765625, + -1.7578125, + -2.0625, + 0.384765625, + -1.8671875, + 1.203125, + -1.9921875, + 0.578125, + 5.0, + 0.26171875, + 0.8359375, + -3.078125, + -0.75390625, + 0.462890625, + 0.0081787109375, + 1.65625, + 1.6640625, + 4.8125, + -1.3203125, + -2.15625, + -3.59375, + 7.1875, + 1.203125, + -2.171875, + -0.00051116943359375, + 3.0, + 2.65625, + -0.87109375, + 0.53125, + -1.109375, + 3.53125, + 1.34375, + 1.59375, + 3.734375, + -2.9375, + -2.578125, + 1.234375, + -2.328125, + 0.00823974609375, + -2.296875, + 1.8046875, + -2.15625, + -0.93359375, + 3.3125, + 0.3359375, + 1.375, + -1.5234375, + -2.15625, + -2.890625, + 2.59375, + -2.109375, + 0.6640625, + 0.12060546875, + -1.15625, + 0.41015625, + 1.34375, + 0.0284423828125, + 0.71484375, + -1.1875, + -0.208984375, + -0.0093994140625, + 0.265625, + 0.40234375, + 2.96875, + -3.5625, + -1.4921875, + 1.0234375, + 3.734375, + -0.26953125, + -2.703125, + -0.490234375, + -1.2578125, + -1.8359375, + 1.171875, + 1.984375, + 0.1474609375, + -1.3046875, + 1.5625, + -0.08837890625, + 0.1806640625, + -1.53125, + 0.62109375, + 0.98828125, + 0.515625, + -2.09375, + 0.31640625, + -0.53515625, + 0.19140625, + -4.0, + 2.640625, + -0.150390625, + -1.46875, + 0.462890625, + -0.1552734375, + 0.796875, + -2.03125, + -3.0, + -2.296875, + 1.109375, + -11.6875, + -0.56640625, + 2.078125, + 0.78515625, + -1.1484375, + -2.171875, + -4.0625, + -4.09375, + -0.51171875, + -2.421875, + 1.3515625, + -3.453125, + 0.80078125, + 0.921875, + -2.390625, + -3.6875, + 0.474609375, + 0.6953125, + 3.828125, + 0.76953125, + 0.84375, + 0.1142578125, + 3.484375, + -0.240234375, + -2.9375, + 0.462890625, + 2.5625, + -0.06396484375, + 1.6875, + -1.4375, + 0.224609375, + 4.40625, + 0.6953125, + 0.91796875, + -0.796875, + 1.5546875, + -4.46875, + -0.20703125, + 1.9765625, + 0.828125, + -0.703125, + 1.71875, + -1.953125, + 2.515625, + 2.25, + 2.21875, + -2.28125, + 2.984375, + 2.359375, + 4.53125, + 1.1875, + 0.68359375, + -0.58203125, + -2.734375, + 0.330078125, + -2.203125, + -3.0625, + 0.5390625, + -1.25, + -0.1318359375, + -1.5078125, + -1.765625, + -2.46875, + 1.6796875, + 0.43359375, + -3.828125, + 5.1875, + 5.78125, + -0.7265625, + 2.859375, + 3.59375, + 0.140625, + 0.71875, + 0.99609375, + -0.275390625, + 0.56640625, + 1.71875, + -8.5625, + 2.09375, + -3.28125, + -1.765625, + 0.65625, + -1.46875, + -0.84765625, + 0.7109375, + 2.25, + -0.60546875, + -0.2060546875, + -0.0279541015625, + 0.330078125, + -2.359375, + -0.08349609375, + -2.03125, + -0.328125, + 2.09375, + 1.484375, + 1.078125, + 1.0859375, + 2.234375, + -2.296875, + 0.75, + -0.734375, + 0.1982421875, + 0.55078125, + -1.59375, + -2.34375, + 1.6484375, + -0.734375, + 1.1328125, + -1.0703125, + -2.34375, + -1.703125, + 2.53125, + 0.39453125, + 1.8515625, + -1.3125, + 1.25, + -2.0625, + -2.984375, + -1.109375, + -0.13671875, + 0.6015625, + -1.7734375, + -1.3359375, + 0.875, + 2.140625, + 0.984375, + 2.703125, + 1.828125, + 3.234375, + -3.171875, + -0.44921875, + 0.3515625, + 1.6796875, + -0.126953125, + 0.75, + -0.625, + -0.50390625, + -0.953125, + -0.06982421875, + -0.7890625, + 0.75390625, + -2.390625, + -2.5, + -0.058349609375, + -1.171875, + -2.09375, + -5.25, + -3.3125, + -0.275390625, + -2.515625, + -1.3203125, + 1.8046875, + 0.1611328125, + -0.80078125, + 0.7578125, + -0.32421875, + -0.5546875, + -3.65625, + 0.3828125, + 5.5, + -1.28125, + 0.890625, + 0.439453125, + -3.109375, + 0.37109375, + 0.0291748046875, + 2.0625, + 1.15625, + 0.1025390625, + 2.296875, + -1.34375, + -2.96875, + -0.7890625, + -2.359375, + -0.66796875, + 2.03125, + -2.453125, + -0.55078125, + -0.00860595703125, + -1.8046875, + -0.796875, + -4.90625, + -5.1875, + 1.1875, + -1.203125, + -0.049560546875, + -3.453125, + -0.2353515625, + -1.796875, + 2.6875, + 3.75, + -1.5546875, + 0.6328125, + -1.6015625, + 1.75, + 1.7109375, + -1.671875, + 2.84375, + -2.6875, + -1.0546875, + -0.458984375, + -1.875, + 2.046875, + 1.671875, + -1.9296875, + -2.84375, + 0.890625, + 2.140625, + 2.5, + 1.90625, + -2.203125, + -1.8515625, + -0.0079345703125, + -1.7734375, + -0.64453125, + 2.59375, + -0.1025390625, + 0.392578125, + 3.90625, + -1.6875, + 1.234375, + -1.203125, + -0.024658203125, + -0.7734375, + 1.4609375, + -1.46875, + 3.515625, + -0.796875, + 0.6875, + 0.7578125, + -0.2421875, + -0.65234375, + 0.609375, + 0.09521484375, + -1.96875, + 1.6484375, + -1.8828125, + 2.796875, + 0.875, + 1.15625, + -0.984375, + -0.1611328125, + -3.078125, + 3.59375, + 1.546875, + -0.28125, + -2.6875, + -0.92578125, + 1.3984375, + 0.035400390625, + 0.333984375, + 2.703125, + 0.62890625, + -0.34765625, + 1.0, + 1.203125, + -1.921875, + 0.400390625, + 0.64453125, + 2.046875, + 1.2734375, + -0.7578125, + -0.462890625, + 4.9375, + -4.84375, + 3.1875, + -3.09375, + -1.7890625, + 0.07568359375, + 2.03125, + -1.6328125, + 3.421875, + 1.1640625, + 1.265625, + -0.1357421875, + 2.40625, + -1.1875, + 2.84375, + 3.1875, + 2.171875, + -3.46875, + 2.984375, + -2.796875, + 1.234375, + -2.21875, + -8.5, + 0.74609375, + 2.3125, + 3.921875, + 0.62890625, + -1.1484375, + -1.1953125, + 3.03125, + 0.2080078125, + 1.375, + 1.4453125, + 1.75, + 0.25390625, + -2.015625, + 3.640625, + -2.375, + 3.515625, + 1.0078125, + -1.1875, + 4.6875, + -2.109375, + 1.0234375, + 0.310546875, + 0.0810546875, + 2.609375, + 1.0703125, + 1.8828125, + 0.3125, + 1.125, + 1.15625, + -2.265625, + 0.1845703125, + -0.65234375, + -1.71875, + 2.109375, + -3.0, + 1.0390625, + 4.96875, + -0.376953125, + -0.443359375, + 1.6953125, + 0.259765625, + -0.359375, + 2.515625, + -1.3125, + 2.03125, + -1.6875, + 1.3984375, + 0.0084228515625, + 1.9375, + 0.21484375, + 0.375, + 0.27734375, + 3.84375, + 0.375, + 2.0625, + -2.546875, + 0.8828125, + 0.7421875, + 0.255859375, + 1.65625, + 1.8359375, + -1.1640625, + -0.462890625, + -2.859375, + 2.46875, + 0.56640625, + 0.734375, + 0.5703125, + 0.859375, + 0.494140625, + 1.0390625, + -3.28125, + 1.4765625, + -3.5625, + -0.416015625, + 1.2109375, + 0.90625, + -1.21875, + 1.0078125, + 0.291015625, + -0.67578125, + -0.14453125, + -0.8828125, + -0.48828125, + -0.95703125, + -1.9765625, + -0.6171875, + -1.2578125, + 7.0, + 11.8125, + 1.2890625, + -4.125, + -0.6875, + 0.7578125, + 0.57421875, + -3.0, + -3.390625, + -0.2158203125, + -1.65625, + -2.203125, + -2.328125, + 2.984375, + -0.671875, + -1.1953125, + 1.0859375, + -1.0546875, + -0.373046875, + -2.703125, + -0.52734375, + -1.375, + 1.1015625, + 0.72265625, + 0.016845703125, + -0.8515625, + -3.203125, + -0.236328125, + 3.53125, + -1.3828125, + 0.2373046875, + -2.96875, + 0.9296875, + -1.2421875, + 1.28125, + -0.51171875, + -1.484375, + -1.546875, + -1.2109375, + 5.75, + 3.4375, + 0.87890625, + -2.0625, + 0.83203125, + 3.546875, + -2.4375, + 2.25, + 0.546875, + -0.94921875, + 0.90625, + -0.2373046875, + 0.9453125, + 0.00909423828125, + -2.578125, + -1.7890625, + 1.8671875, + -1.2265625, + 0.59375, + 0.9765625, + 1.7109375, + 1.0703125, + 2.84375, + -1.0703125, + 0.2431640625, + 0.875, + -0.91796875, + 1.484375, + 1.8046875, + 3.140625, + 4.125, + 0.8359375, + 0.1357421875, + -0.173828125, + 0.30078125, + 2.625, + 1.7734375, + -0.04443359375, + 0.75390625, + 0.63671875, + -2.484375, + 0.5859375, + -2.421875, + 2.15625, + 2.4375, + -0.00836181640625, + 2.75, + -0.6953125, + 0.8203125, + -2.046875, + -2.640625, + 0.578125, + 2.390625, + 1.625, + 1.390625, + 1.484375, + -3.90625, + 0.0274658203125, + -1.625, + 0.5390625, + 2.046875, + -1.2890625, + -3.671875, + 1.140625, + 2.078125, + 1.5078125, + -0.08251953125, + -2.25, + -0.52734375, + 1.484375, + 1.2421875, + 0.73828125, + -0.44140625, + -1.171875, + 3.5625, + 1.359375, + -0.625, + -1.828125, + -1.5703125, + 4.40625, + -0.0118408203125, + -0.07470703125, + 1.15625, + 1.3515625, + -2.1875, + 0.90234375, + 2.734375, + 0.01251220703125, + -1.5703125, + -3.84375, + 0.0296630859375, + -0.71484375, + 0.55859375, + 1.453125, + 3.34375, + -2.5, + -1.4453125, + -0.06103515625, + 1.609375, + -1.90625, + -0.345703125, + 0.2353515625, + -0.5703125, + 1.4375, + 1.0625, + -2.9375, + -1.984375, + 0.96875, + 2.296875, + 0.8671875, + 0.2734375, + 1.2890625, + -4.96875, + 2.421875, + 3.625, + -1.5078125, + -0.0250244140625, + -3.21875, + 0.88671875, + 1.1640625, + 1.7265625, + 0.94921875, + 0.78515625, + 0.5234375, + -3.890625, + 3.6875, + -0.60546875, + 2.890625, + -1.2265625, + 1.921875, + -1.53125, + -2.640625, + 1.6328125, + -0.73046875, + 3.46875, + -0.3046875, + -0.7734375, + -0.423828125, + 0.859375, + -1.5390625, + -2.640625, + -1.640625, + 0.75390625, + 0.142578125, + 1.6796875, + 1.9296875, + -0.39453125, + 0.79296875, + -2.78125, + 1.5703125, + -0.36328125, + -3.046875, + -1.0859375, + 1.609375, + 4.40625, + 0.81640625, + 0.78125, + 4.84375, + 3.0625, + 0.96875, + -0.4375, + 4.125, + 0.61328125, + -0.8125, + -6.71875, + 1.828125, + -1.1328125, + 0.2158203125, + 2.78125, + 0.58203125, + 2.75, + -0.1416015625, + -1.4921875, + -0.1201171875, + 4.28125, + 1.4921875, + 2.59375, + -2.125, + 0.734375, + -0.49609375, + 0.82421875, + 2.140625, + -1.171875, + -0.91015625, + -0.33984375, + -2.4375, + -0.984375, + 0.08837890625, + 0.7578125, + -1.78125, + -2.375, + -1.4765625, + 2.671875, + 1.4609375, + 0.91796875, + 0.255859375, + -1.7109375, + -0.8984375, + 0.92578125, + -2.15625, + 0.9609375, + -0.94921875, + -0.30078125, + -2.203125, + 2.0, + -2.78125, + 1.8515625, + -1.90625, + 1.359375, + 2.71875, + 2.640625, + -3.9375, + 1.0703125, + -3.0, + 0.314453125, + -0.23828125, + -0.0869140625, + -2.796875, + 0.408203125, + -3.921875, + -1.9375, + -4.84375, + -0.1162109375, + -1.796875, + 2.203125, + 2.4375, + 2.15625, + -0.89453125, + -1.5390625, + 2.1875, + 3.21875, + -0.3515625, + -0.6015625, + 1.984375, + 1.1171875, + -2.4375, + 3.8125, + 2.265625, + -1.34375, + 3.140625, + -0.1171875, + 0.78515625, + 0.76171875, + -1.203125, + 5.375, + 2.125, + 1.390625, + -0.357421875, + -0.8671875, + 1.1484375, + -3.546875, + -0.224609375, + -0.396484375, + -1.4375, + 2.109375, + -2.03125, + -1.578125, + -2.9375, + -0.8515625, + -1.8515625, + 1.5078125, + 1.28125, + -0.380859375, + 1.109375, + 1.640625, + 0.29296875, + 1.0078125, + -1.0078125, + 1.6171875, + 3.921875, + -3.109375, + -0.34765625, + -1.609375, + 0.84765625, + 1.1796875, + -2.171875, + 0.06982421875, + -1.1171875, + -1.046875, + -6.5, + 0.453125, + 0.00811767578125, + 1.078125, + -2.328125, + 4.1875, + -0.6640625, + 7.125, + 1.40625, + 1.765625, + 4.21875, + -1.1640625, + 1.8828125, + 0.123046875, + -5.0625, + -0.8203125, + 0.0030975341796875, + 1.8984375, + 1.1171875, + 0.1123046875, + -3.625, + -2.34375, + 2.625, + -2.28125, + -0.20703125, + 0.376953125, + 0.2421875, + 5.15625, + -5.125, + -1.3046875, + 0.98828125, + -0.703125, + 0.423828125, + 0.86328125, + -6.34375, + -2.28125, + 3.453125, + 1.9296875, + -1.6953125, + -3.328125, + -1.4921875, + 1.1875, + -4.46875, + -0.90234375, + 0.82421875, + 0.62890625, + -0.197265625, + -2.203125, + -0.76953125, + -0.1806640625, + 1.1484375, + -1.5, + -1.7890625, + -1.5546875, + -1.5078125, + 2.0625, + 0.8203125, + 1.4765625, + -3.609375, + -1.0078125, + -1.84375, + -1.5703125, + -0.8515625, + 0.10986328125, + -0.18359375, + 2.453125, + 1.7109375, + -3.484375, + -1.171875, + -0.6796875, + 0.11767578125, + -1.7421875, + 1.5, + 1.9921875, + -0.37890625, + 0.76953125, + -1.0234375, + 0.1298828125, + -8.440017700195312e-05, + -1.5234375, + 4.75, + -0.65234375, + -0.56640625, + 3.515625, + -2.515625, + -2.40625, + -0.1767578125, + -1.734375, + 0.86328125, + 1.296875, + -0.037109375, + -1.0390625, + 2.4375, + -1.0234375, + 0.984375, + 0.3984375, + 0.8359375, + 1.1796875, + -1.5859375, + -5.15625, + -0.00634765625, + 0.54296875, + -0.458984375, + -0.78515625, + 0.443359375, + -1.421875, + 0.0947265625, + 0.021728515625, + 0.6015625, + 2.0, + 0.193359375, + -1.140625, + 0.9453125, + 3.078125, + 3.34375, + 2.078125, + -1.4140625, + -5.3125, + -1.3671875, + -2.828125, + 0.8359375, + 0.7890625, + -2.75, + 2.0, + 0.1748046875, + 0.5234375, + 0.162109375, + -1.5546875, + 2.390625, + 15.5625, + -3.0, + 0.6953125, + 1.6640625, + -0.298828125, + 1.3828125, + 0.578125, + -2.078125, + -3.515625, + 1.578125, + 2.515625, + -0.640625, + 1.515625, + 2.0625, + -2.125, + -2.015625, + 0.4453125, + 2.96875, + 0.0498046875, + -0.93359375, + 0.66796875, + 2.09375, + -0.11376953125, + -0.76953125, + -0.054443359375, + -0.88671875, + -2.4375, + -2.90625, + 2.65625, + 0.384765625, + 2.046875, + -3.671875, + -2.78125, + 0.447265625, + 1.078125, + 5.09375, + -0.6796875, + 4.78125, + 0.89453125, + 2.5625, + -0.7421875, + 1.453125, + 1.6171875, + -0.369140625, + -5.65625, + 1.3046875, + 1.0078125, + -0.0908203125, + 0.140625, + -1.4140625, + 1.3515625, + -0.88671875, + 0.369140625, + 3.171875, + -3.21875, + -2.125, + 1.265625, + 4.40625, + 0.0458984375, + 0.23046875, + -0.232421875, + 1.40625, + 0.27734375, + 0.55078125, + 1.6015625, + 3.28125, + -1.171875, + -0.7421875, + 1.4296875, + 1.6328125, + -0.068359375, + 0.392578125, + -0.2197265625, + -0.82421875, + 1.25, + -2.0625, + -0.326171875, + 1.2890625, + 0.74609375, + -3.328125, + 0.62109375, + 1.171875, + 0.474609375, + -1.8046875, + 0.73046875, + 0.08154296875, + 2.828125, + 0.404296875, + 0.296875, + 2.703125, + 1.546875, + 2.640625, + -0.0849609375, + 0.70703125, + 2.03125, + -1.7421875, + -0.0205078125, + -1.640625, + -0.1884765625, + -1.0546875, + -5.09375, + 1.2578125, + -0.80078125, + 2.09375, + 0.07373046875, + 2.1875, + -1.2109375, + -4.75, + 2.546875, + -0.01611328125, + 0.91015625, + -0.1748046875, + -1.828125, + 0.51171875, + 1.2421875, + 0.54296875, + -1.9375, + -0.0693359375, + 3.796875, + -0.1787109375, + -0.546875, + 5.40625, + 0.53125, + 1.9609375, + -0.765625, + -0.28515625, + -0.75390625, + -1.5078125, + 0.83984375, + -0.06982421875, + 0.93359375, + -1.6484375, + 0.58203125, + -2.265625, + -0.28515625, + 0.263671875, + 2.1875, + 3.546875, + 4.28125, + 0.423828125, + 1.25, + 1.3046875, + -2.5, + 1.5078125, + 0.1708984375, + -0.376953125, + -2.15625, + 0.69140625, + -0.6328125, + -1.8828125, + -0.19140625, + 1.3046875, + 2.3125, + 1.9921875, + -1.6875, + 1.0703125, + -2.375, + -1.3203125, + 0.82421875, + 1.5390625, + 0.62109375, + -0.302734375, + 0.177734375, + 0.953125, + 0.38671875, + -0.35546875, + -1.1171875, + -1.1328125, + 0.482421875, + 2.8125, + -2.375, + 1.3671875, + -1.7421875, + 2.046875, + 0.224609375, + 0.55078125, + -1.53125, + 0.466796875, + 0.4140625, + -1.90625, + 2.578125, + 1.734375, + 1.6875, + 3.234375, + 0.78125, + 1.6875, + 0.6875, + -1.046875, + 2.703125, + 1.4296875, + -0.40625, + -0.369140625, + -2.75, + 1.421875, + -0.62890625, + -3.171875, + 0.3671875, + 0.0751953125, + 0.94140625, + 1.0234375, + -1.7265625, + 0.267578125, + 0.369140625, + 1.125, + 1.3671875, + -1.0390625, + 0.07861328125, + 4.03125, + -4.53125, + 3.328125, + 0.051513671875, + -2.9375, + 2.140625, + 2.1875, + 2.140625, + -0.89453125, + 3.4375, + -0.11669921875, + -0.6484375, + 0.19140625, + 6.71875, + 0.376953125, + -1.7578125, + 2.109375, + -0.271484375, + -1.1328125, + 1.7265625, + -1.5234375, + -4.09375, + -3.046875, + 2.21875, + 1.4296875, + 0.6796875, + -0.63671875, + -2.59375, + -4.75, + 1.3046875, + 3.53125, + -1.2421875, + 0.376953125, + -2.453125, + 2.125, + 1.328125, + -1.546875, + 0.28125, + 0.333984375, + -0.00860595703125, + -0.21875, + -0.142578125, + -3.09375, + -2.765625, + -0.23828125, + 0.98828125, + -1.046875, + -2.5625, + -0.1298828125, + -2.109375, + -1.1640625, + -0.50390625, + 0.90625, + 1.578125, + -0.84765625, + 3.65625, + -1.703125, + 0.44140625, + 1.2734375, + 2.484375, + 1.7578125, + -3.03125, + 6.375, + -1.5546875, + 1.9453125, + -1.03125, + 2.21875, + -0.466796875, + 4.46875, + -0.26953125, + -0.0654296875, + 0.39453125, + 5.28125, + 0.71484375, + 2.6875, + -2.125, + -0.8125, + 2.421875, + -1.609375, + 0.45703125, + -0.015869140625, + 1.171875, + 0.08740234375, + -0.3046875, + -1.359375, + 1.1015625, + -0.54296875, + 3.1875, + -1.8515625, + 1.3671875, + -2.578125, + -1.125, + -0.7890625, + 0.6796875, + 1.0859375, + -1.546875, + -2.671875, + -1.734375, + -2.0625, + 1.84375, + -0.03466796875, + 0.79296875, + -2.546875, + -3.328125, + -0.345703125, + 0.4140625, + -12.6875, + 0.166015625, + 1.21875, + -2.125, + 4.15625, + -0.734375, + -0.6015625, + 1.1640625, + 0.703125, + 3.0, + -0.1455078125, + -0.44921875, + 2.109375, + -0.1357421875, + 3.34375, + -1.2421875, + -1.890625, + 0.0947265625, + 0.484375, + 2.59375, + -2.296875, + 0.9296875, + -0.515625, + -0.51171875, + -1.6171875, + -1.953125, + 0.357421875, + 0.09521484375, + -3.34375, + -0.0654296875, + -2.09375, + -1.3125, + 0.1953125, + 1.203125, + -0.6953125, + -0.984375, + -0.0625, + -2.0625, + -2.96875, + 0.59375, + -1.953125, + 1.5, + -0.040283203125, + 0.70703125, + 1.265625, + -0.8984375, + -2.0625, + -0.57421875, + 0.080078125, + 0.138671875, + -0.83984375, + 0.75, + 2.921875, + -3.296875, + -1.4609375, + 1.734375, + 2.1875, + 2.984375, + -2.15625, + 1.2734375, + 3.40625, + 3.0625, + -1.21875, + -0.345703125, + -0.34375, + -2.09375, + -0.5390625, + 4.34375, + 2.015625, + 2.328125, + -4.4375, + -4.25, + 3.15625, + -5.4375, + 0.000926971435546875, + 0.7578125, + -1.828125, + -5.9375, + -2.03125, + -1.5234375, + 1.9375, + 1.46875, + -9.6875, + 0.291015625, + -1.921875, + -0.96484375, + -1.203125, + 4.65625, + -1.3984375, + -0.271484375, + -1.5078125, + 2.421875, + 0.921875, + -0.412109375, + -0.72265625, + -1.8359375, + 1.390625, + 2.203125, + 0.6328125, + -0.66015625, + -0.490234375, + 0.058349609375, + -1.625, + 1.1640625, + -0.640625, + -1.09375, + -1.1875, + -0.640625, + -2.96875, + 3.140625, + 0.91796875, + -1.0625, + 1.1640625, + 2.765625, + -1.5546875, + -0.703125, + 0.84375, + 0.390625, + 4.125, + 3.015625, + 0.53125, + -1.1640625, + 0.166015625, + -0.83984375, + -0.2021484375, + 0.8828125, + 0.498046875, + -0.00567626953125, + -1.96875, + -1.3984375, + -2.359375, + 0.3671875, + 0.46875, + 3.109375, + 1.9921875, + -1.234375, + 3.0625, + -1.015625, + 2.0, + -0.396484375, + 1.484375, + -0.1259765625, + -1.203125, + -0.5625, + -0.75, + 0.466796875, + -1.84375, + 1.9296875, + 2.640625, + -2.9375, + -0.8828125, + 0.09423828125, + 0.185546875, + -1.6015625, + 1.796875, + 0.35546875, + -2.375, + -0.93359375, + 1.421875, + 0.11767578125, + -0.1328125, + 1.09375, + -1.984375, + 0.63671875, + 0.74609375, + -0.1416015625, + 8.1875, + 2.5, + 1.09375, + -1.1953125, + 0.181640625, + 1.0625, + -1.203125, + -3.25, + 0.671875, + 0.06640625, + -0.875, + 0.5625, + 2.125, + -0.058837890625, + 2.15625, + -2.640625, + -1.4375, + -1.0546875, + 1.9765625, + 2.796875, + 0.1591796875, + -2.078125, + 0.7578125, + 1.2109375, + -0.828125, + -1.0390625, + -0.056640625, + 2.4375, + 2.765625, + -2.921875, + -1.046875, + 0.9453125, + 2.109375, + -1.2578125, + -2.265625, + 0.369140625, + -0.828125, + -0.3515625, + -2.125, + -0.275390625, + -1.0078125, + 0.8203125, + -0.8828125, + -0.7734375, + 0.5703125, + 1.0078125, + 3.46875, + 3.203125, + -0.30859375, + -0.01239013671875, + 1.8203125, + -1.875, + 0.06591796875, + 1.5703125, + 0.296875, + 0.81640625, + 1.3046875, + 0.72265625, + -2.765625, + 1.9140625, + 0.58203125, + -0.5078125, + -0.16796875, + 1.953125, + 0.34375, + 1.5, + 1.6875, + -1.4296875, + 0.80859375, + 0.2109375, + 1.453125, + 1.734375, + -1.1640625, + 1.6875, + 0.78125, + -3.0625, + 2.484375, + -0.11083984375, + -3.71875, + 0.859375, + -0.220703125, + -2.1875, + 0.2041015625, + -2.53125, + 1.0625, + 0.0341796875, + -0.5546875, + 3.421875, + 1.1640625, + -3.453125, + 0.443359375, + 2.96875, + -1.140625, + 0.8515625, + 0.00811767578125, + -0.2392578125, + -0.5859375, + -2.078125, + -5.21875, + 0.0654296875, + 3.921875, + 0.162109375, + 0.0, + 2.171875, + 0.4140625, + 0.8203125, + 3.546875, + -2.1875, + 2.671875, + -0.57421875, + 1.421875, + -0.8828125, + 0.3671875, + 1.734375, + 0.625, + -3.75, + -0.12060546875, + -0.8046875, + 0.59765625, + 2.890625, + -3.296875, + -0.28125, + -5.0625, + 2.015625, + 2.75, + 0.66015625, + -1.3359375, + 1.9375, + 1.1015625, + -3.6875, + 2.015625, + 1.78125, + -2.609375, + -0.84375, + -0.90234375, + -2.53125, + 1.5, + -1.9609375, + -0.294921875, + -1.90625, + 1.2421875, + -2.765625, + -1.765625, + -1.0859375, + 0.7734375, + -3.15625, + -3.28125, + -1.015625, + 0.29296875, + -0.40234375, + -0.3671875, + 0.5078125, + -1.1953125, + -0.9453125, + 1.2421875, + -1.5234375, + -0.8125, + -6.625, + -2.640625, + 1.4140625, + -1.25, + 2.046875, + -2.328125, + 1.9140625, + -2.125, + 1.484375, + 0.52734375, + -0.83203125, + -2.609375, + -3.5625, + -2.09375, + -3.65625, + -0.80078125, + -1.953125, + -1.2265625, + -2.75, + 2.640625, + 0.373046875, + -0.26953125, + 2.75, + -2.71875, + -4.1875, + 1.6640625, + -2.578125, + 0.13671875, + -0.84375, + 0.609375, + -0.59375, + 1.921875, + 2.15625, + -0.224609375, + 0.12060546875, + -2.078125, + 0.93359375, + 2.125, + 1.203125, + 0.232421875, + -2.625, + 4.15625, + 1.3515625, + 1.1015625, + 3.890625, + 3.46875, + 2.109375, + 4.03125, + 2.421875, + -0.1708984375, + -3.078125, + 6.78125, + -1.328125, + -0.4296875, + -5.15625, + -0.5234375, + 0.010498046875, + -1.9375, + 6.53125, + -0.08203125, + -1.1640625, + 0.306640625, + 0.17578125, + 1.796875, + -1.703125, + 2.765625, + -1.09375, + -0.6484375, + -3.203125, + 2.328125, + -0.66796875, + 1.015625, + -0.55859375, + 1.421875, + 3.21875, + -1.921875, + -1.015625, + 3.0625, + -1.7890625, + -0.66796875, + 1.7421875, + -0.62109375, + -0.478515625, + -3.953125, + -3.53125, + 0.6484375, + 0.380859375, + 3.5, + -6.28125, + 0.28515625, + 3.203125, + 3.34375, + -1.359375, + -0.74609375, + -0.67578125, + 3.59375, + -1.9921875, + 1.859375, + 0.625, + -0.22265625, + -1.40625, + 0.0225830078125, + -0.08251953125, + 0.8515625, + 0.271484375, + 1.546875, + 1.625, + -1.8515625, + 1.6640625, + 1.125, + -0.64453125, + 0.41015625, + 5.375, + -0.462890625, + -1.0546875, + -2.34375, + 1.1953125, + 1.0546875, + -1.0, + 4.0, + 1.625, + 2.40625, + -1.421875, + -2.375, + 1.3671875, + -0.6328125, + 1.84375, + -6.21875, + -1.0390625, + 2.59375, + 1.0234375, + 0.54296875, + 2.71875, + 1.25, + -1.875, + 0.45703125, + 2.9375, + -0.94921875, + -2.03125, + 1.1171875, + -0.443359375, + 0.08251953125, + -1.6015625, + 0.02880859375, + 1.875, + 0.462890625, + 0.212890625, + 1.734375, + 0.30078125, + -0.11572265625, + -0.007720947265625, + 1.8125, + -0.5390625, + 4.3125, + 5.78125, + -2.65625, + -1.0859375, + 1.203125, + -2.609375, + 0.33984375, + 0.8984375, + -1.8984375, + 2.671875, + 1.1015625, + -1.46875, + -2.359375, + 2.09375, + 0.9921875, + 0.74609375, + 2.21875, + 1.9609375, + -0.7109375, + 2.359375, + -1.984375, + 1.234375, + -1.328125, + -0.55078125, + -0.97265625, + 0.154296875, + -1.7265625, + 0.44921875, + 3.703125, + -1.265625, + 0.6640625, + -5.125, + -0.37109375, + 2.578125, + 1.8984375, + 3.953125, + 0.2060546875, + 0.578125, + 1.28125, + -0.9609375, + -2.34375, + -2.34375, + 2.765625, + 2.796875, + 2.203125, + 2.765625, + 3.0, + 0.765625, + -2.546875, + -1.6640625, + -3.5, + 0.498046875, + 1.546875, + -3.96875, + -0.94140625, + -1.140625, + 1.171875, + 0.1669921875, + 1.203125, + 0.9765625, + -0.4765625, + 1.0234375, + 0.19140625, + -1.625, + 1.21875, + -0.09521484375, + -3.890625, + 4.09375, + 1.1640625, + -1.2890625, + -2.078125, + 3.140625, + -0.8046875, + -3.875, + 2.734375, + 1.734375, + -1.1640625, + 1.703125, + 1.3671875, + 1.046875, + 0.427734375, + -2.125, + -0.306640625, + 3.90625, + -1.75, + -1.515625, + 0.333984375, + -1.4375, + -0.36328125, + -1.4140625, + -0.0458984375, + -2.59375, + 0.00823974609375, + -0.81640625, + 1.515625, + 1.0546875, + -1.640625, + 0.349609375, + -3.421875, + 1.734375, + -1.8828125, + 1.421875, + 1.0546875, + 2.4375, + -0.56640625, + 2.59375, + -3.609375, + -1.25, + -2.015625, + -0.134765625, + -1.1875, + -0.54296875, + -0.041748046875, + -0.3046875, + -1.4296875, + 0.306640625, + -2.984375, + 0.5625, + -1.828125, + -2.015625, + 2.140625, + -2.9375, + 2.671875, + 0.03369140625, + 0.5234375, + 2.65625, + -0.48046875, + 1.03125, + -0.341796875, + -0.5859375, + -1.203125, + -0.625, + 1.0078125, + -0.875, + 3.0, + -1.0625, + 0.7421875, + -0.40625, + -0.466796875, + -0.61328125, + -0.04833984375, + 0.0859375, + -0.74609375, + -1.7578125, + 0.640625, + 0.0966796875, + -1.8125, + 3.03125, + 0.89453125, + 0.52734375, + -0.2001953125, + -1.296875, + -1.078125, + 2.171875, + -0.94140625, + -2.375, + 0.2060546875, + 1.5859375, + 0.455078125, + 0.06591796875, + 1.2109375, + 1.5703125, + -1.3359375, + 4.78125, + -1.3046875, + 1.9375, + 0.890625, + -1.0625, + 0.5, + 0.251953125, + -1.6875, + -0.5390625, + 1.1484375, + -1.640625, + 2.0, + -0.5625, + -0.73046875, + -0.0732421875, + 1.4140625, + -0.796875, + -0.140625, + 0.1513671875, + -1.3515625, + 0.392578125, + 4.375, + -0.26171875, + 2.859375, + 0.234375, + -1.1796875, + 2.46875, + 2.546875, + 2.40625, + 1.2421875, + 0.65234375, + -0.625, + -1.3359375, + 0.9921875, + 1.359375, + 3.53125, + -0.380859375, + -2.015625, + -0.421875, + -4.78125, + 1.9921875, + 3.671875, + -1.1796875, + 0.3203125, + 1.8046875, + -0.828125, + 2.390625, + -0.98828125, + 3.9375, + 2.546875, + -0.984375, + 0.40234375, + 0.7109375, + 0.50390625, + 2.0625, + 1.1796875, + -1.28125, + 0.83984375, + -0.83984375, + 0.016357421875, + -0.48828125, + -1.25, + 0.61328125, + -0.48046875, + 1.4609375, + -0.8671875, + 0.953125, + 0.9765625, + 3.78125, + 0.72265625, + -2.1875, + 3.640625, + 0.59765625, + -1.3125, + 1.25, + 0.80859375, + 0.09765625, + -0.9375, + 2.625, + -4.03125, + 0.6953125, + 1.609375, + -1.1015625, + 1.8125, + 0.68359375, + -2.296875, + -1.328125, + -0.07421875, + 0.8984375, + 1.6796875, + 2.375, + 3.296875, + 0.53515625, + -0.9140625, + -2.453125, + -2.828125, + -0.478515625, + -4.15625, + 1.5234375, + 0.373046875, + 0.35546875, + -1.1484375, + -0.77734375, + -2.296875, + 0.0181884765625, + 0.193359375, + 4.4375, + 0.72265625, + 2.0, + -2.796875, + 1.9375, + 1.546875, + -1.8046875, + -0.83984375, + 3.53125, + -0.28125, + 0.1240234375, + -0.0040283203125, + -0.71484375, + 0.61328125, + -3.015625, + -3.15625, + 3.40625, + 2.59375, + -1.53125, + 3.578125, + 0.59375, + -1.3359375, + -3.3125, + -2.5, + 2.140625, + 2.109375, + -8.375, + 0.466796875, + 3.765625, + 4.5625, + 0.85546875, + -0.47265625, + -3.6875, + 0.2421875, + -0.2412109375, + -2.6875, + 1.0703125, + 1.796875, + 0.97265625, + 2.078125, + 3.75, + -3.125, + -2.140625, + 1.84375, + 1.7734375, + 3.640625, + -1.015625, + -2.875, + 1.484375, + -2.96875, + -2.4375, + 0.390625, + -3.953125, + -1.171875, + 0.87109375, + -0.21484375, + -0.53515625, + 6.6875, + 2.0625, + -1.75, + 0.326171875, + -0.455078125, + -0.6796875, + -4.65625, + -1.0390625, + 0.99609375, + 0.87890625, + -0.451171875, + -0.0078125, + 3.921875, + -1.4765625, + -3.90625, + -0.306640625, + -1.3203125, + 0.287109375, + 1.0625, + -0.220703125, + -0.921875, + 1.1015625, + -1.359375, + 0.05126953125, + 2.171875, + 2.484375, + 10.125, + 0.421875, + -1.5078125, + -1.0546875, + -0.197265625, + -1.21875, + 0.8125, + -3.984375, + 1.359375, + 5.78125, + 0.81640625, + 2.09375, + 0.171875, + 3.0, + 0.66796875, + 0.61328125, + -0.05615234375, + -0.8671875, + 1.8125, + -4.65625, + 1.2421875, + -1.140625, + -1.1171875, + -0.70703125, + 1.046875, + 1.5390625, + 0.138671875, + -0.953125, + -0.83984375, + -3.859375, + -1.90625, + -0.6484375, + 0.94140625, + -0.703125, + -0.416015625, + 0.1806640625, + 0.953125, + 10.0625, + 3.0, + -1.1484375, + -4.0625, + 1.828125, + 2.890625, + -0.86328125, + 2.28125, + -1.953125, + 0.390625, + -1.140625, + 1.3125, + 0.4375, + 0.80859375, + 2.09375, + 0.263671875, + -1.3515625, + -1.296875, + 1.515625, + 0.5546875, + -2.953125, + -0.5234375, + -1.3671875, + 0.7890625, + -1.4921875, + -3.984375, + -0.2333984375, + -1.4453125, + 0.1123046875, + 1.15625, + 1.2890625, + -1.9296875, + -2.234375, + 1.9609375, + -0.271484375, + 0.69140625, + -1.375, + -1.3984375, + 4.875, + 1.84375, + 0.9140625, + -0.2412109375, + -0.37890625, + -1.8828125, + -1.8125, + 0.58984375, + 1.4140625, + -0.80078125, + 0.6953125, + 0.494140625, + 1.046875, + -1.6015625, + -3.5, + -1.9296875, + 0.5625, + 0.85546875, + 2.078125, + -0.08203125, + -0.61328125, + 1.96875, + -0.1259765625, + -1.0078125, + 1.2578125, + -1.234375, + -0.9140625, + -0.515625, + -0.9921875, + 0.283203125, + 0.1435546875, + 0.98046875, + -0.470703125, + 0.65234375, + -2.578125, + 0.03662109375, + -1.75, + 2.984375, + 0.56640625, + 1.8828125, + 1.046875, + 0.296875, + 2.0625, + -0.7734375, + -1.140625, + 0.0712890625, + -2.234375, + -3.8125, + 3.046875, + -2.640625, + -0.7578125, + 0.19921875, + 1.3125, + -2.25, + 1.1328125, + -0.0294189453125, + -3.84375, + 1.9375, + -0.61328125, + -1.765625, + 2.109375, + -1.3203125, + -0.058349609375, + 2.265625, + -8.75, + 0.00396728515625, + 1.2890625, + -1.6015625, + 0.15234375, + 1.7421875, + -0.455078125, + -0.1689453125, + 0.14453125, + 0.333984375, + -7.25, + 1.9453125, + 2.65625, + 1.3203125, + 2.640625, + 5.125, + -0.029541015625, + -1.5, + 0.6875, + 1.5859375, + 0.10302734375, + 1.3125, + 0.388671875, + 2.65625, + -5.46875, + 0.1513671875, + -1.625, + 0.65234375, + -5.71875, + 1.6328125, + -1.09375, + 1.4921875, + -2.015625, + -1.09375, + -4.375, + 1.34375, + -1.734375, + 0.62890625, + 0.271484375, + 0.81640625, + 2.484375, + 2.234375, + -0.1064453125, + -1.2265625, + 0.0286865234375, + 0.828125, + -0.421875, + 0.91015625, + -0.0751953125, + 3.328125, + -1.671875, + 1.890625, + -0.91015625, + -2.4375, + 1.8828125, + 1.984375, + -2.75, + 2.109375, + 3.140625, + 0.173828125, + 2.28125, + 1.9140625, + -0.4765625, + 1.8359375, + 3.25, + -0.255859375, + -0.427734375, + 3.046875, + 2.53125, + 1.7265625, + 1.2578125, + -2.703125, + -4.34375, + 2.421875, + -0.416015625, + -0.796875, + 1.46875, + -1.2890625, + -0.62890625, + -4.34375, + -4.53125, + -0.5390625, + -5.46875, + 0.58984375, + -0.091796875, + 0.0164794921875, + 1.5625, + -4.65625, + 0.310546875, + -0.7265625, + -0.57421875, + -4.15625, + 3.0625, + -4.25, + 0.7890625, + -1.578125, + 1.9921875, + -0.1318359375, + -2.484375, + -0.1767578125, + -0.85546875, + 1.5546875, + 1.9140625, + 0.515625, + -0.9375, + 0.8984375, + 0.59765625, + -1.515625, + 3.0625, + 1.5859375, + 1.34375, + 1.0703125, + 0.2392578125, + 1.0859375, + 0.77734375, + -2.15625, + -1.53125, + -1.9375, + 2.328125, + -1.84375, + -1.59375, + -2.15625, + -1.5625, + -3.171875, + 2.578125, + -1.453125, + -0.91796875, + -2.078125, + -1.7109375, + 2.671875, + 1.734375, + -1.515625, + -1.390625, + 0.44921875, + -1.859375, + -1.46875, + 0.294921875, + -2.3125, + -0.109375, + -1.046875, + 0.7265625, + -0.47265625, + -3.875, + -3.578125, + -1.0625, + 0.1064453125, + 2.625, + 1.2265625, + -3.3125, + -0.19921875, + 0.240234375, + 2.234375, + 1.0546875, + 0.3359375, + -0.98046875, + 2.78125, + 1.2265625, + 2.984375, + -0.5390625, + -0.044921875, + 4.21875, + -1.265625, + 0.34765625, + -1.6640625, + 1.7578125, + -0.2060546875, + 0.93359375, + 2.34375, + 3.21875, + -1.3125, + 4.0, + -3.90625, + 0.484375, + 1.3046875, + -2.6875, + -1.71875, + -0.50390625, + 0.5546875, + -2.359375, + 1.125, + -1.6796875, + 1.4296875, + -0.1357421875, + 1.5, + 0.20703125, + 4.21875, + 0.80078125, + 1.09375, + 1.890625, + 2.078125, + -0.51953125, + 0.87109375, + 1.625, + -1.1484375, + -1.125, + -1.484375, + -2.9375, + -2.359375, + 3.109375, + 3.328125, + -3.875, + 1.609375, + -2.140625, + 0.345703125, + 0.058349609375, + -3.875, + -4.9375, + 2.171875, + -0.91015625, + -1.390625, + -0.26171875, + -1.8671875, + -3.109375, + 1.4609375, + 0.064453125, + 1.53125, + -2.0625, + -0.5546875, + -1.0625, + 0.9765625, + -1.546875, + 0.578125, + 0.90625, + 3.796875, + 1.0, + -0.2158203125, + 2.328125, + 1.9296875, + -0.671875, + 2.125, + 0.048828125, + -2.84375, + -0.8046875, + -1.265625, + 2.53125, + -0.859375, + 2.546875, + 1.9765625, + 1.2890625, + -0.1337890625, + 1.25, + -3.5625, + 1.8359375, + 1.2734375, + 0.5625, + -1.296875, + -1.515625, + 2.21875, + 0.0712890625, + -3.875, + 1.1796875, + -0.0390625, + -2.8125, + -2.703125, + 3.84375, + 3.328125, + 0.3359375, + -2.671875, + -3.703125, + -1.015625, + 1.84375, + -1.8359375, + -0.97265625, + 2.15625, + 1.25, + 1.359375, + 0.412109375, + -0.2353515625, + -0.7734375, + -2.578125, + -0.80078125, + 0.828125, + -0.640625, + -0.51953125, + -4.15625, + -4.875, + 0.423828125, + 0.07373046875, + 1.1796875, + 2.578125, + -1.7109375, + 0.0, + -2.296875, + 2.609375, + 0.287109375, + -1.1953125, + 2.09375, + -1.3359375, + -0.15625, + 0.30078125, + 1.5390625, + 2.78125, + -4.09375, + -6.84375, + 2.265625, + -0.37109375, + 1.2265625, + -0.65625, + 0.0673828125, + -0.259765625, + 1.25, + -11.1875, + 0.66796875, + -1.34375, + 0.302734375, + 1.546875, + 0.8125, + -0.2080078125, + 1.8828125, + -1.265625, + -0.408203125, + -2.375, + 1.109375, + 0.93359375, + 0.9921875, + 1.4765625, + -1.1171875, + -0.177734375, + -0.84765625, + 1.265625, + -0.005126953125, + -2.203125, + 2.609375, + -1.9375, + -3.53125, + -0.99609375, + -2.0625, + -1.3046875, + 1.6484375, + -2.25, + 2.078125, + -0.486328125, + -0.451171875, + -1.046875, + 0.91015625, + -1.2890625, + 0.474609375, + -1.0078125, + 0.3671875, + 1.34375, + 0.91796875, + 0.421875, + 1.59375, + -2.046875, + 1.046875, + -1.875, + 0.83203125, + 0.166015625, + 0.146484375, + -2.21875, + -1.9921875, + -3.375, + 1.25, + 1.265625, + 0.1123046875, + 0.458984375, + 0.486328125, + 1.8671875, + 1.6484375, + -0.54296875, + 2.296875, + -1.53125, + 2.765625, + 0.97265625, + 3.640625, + -0.35546875, + 0.466796875, + 1.6171875, + 3.828125, + -0.546875, + -0.83203125, + -0.8984375, + -3.515625, + -0.30078125, + 3.421875, + -0.48046875, + -2.078125, + 0.49609375, + -0.36328125, + -0.2314453125, + 0.67578125, + 1.03125, + -0.44921875, + 0.349609375, + 0.2314453125, + 0.7421875, + -4.1875, + -0.470703125, + 2.015625, + 1.46875, + 1.9296875, + 0.115234375, + 0.039306640625, + 3.734375, + 0.84375, + -0.142578125, + 0.91015625, + -2.234375, + -0.80078125, + 2.65625, + -0.6953125, + 0.734375, + -2.9375, + 1.4921875, + 0.84765625, + -0.043212890625, + -1.5859375, + -4.0, + -1.0390625, + 1.3515625, + -1.8359375, + -1.6015625, + 0.6015625, + 1.859375, + 1.453125, + 0.053466796875, + -0.47265625, + -1.8828125, + 1.7890625, + -1.8046875, + -0.87109375, + -1.53125, + -0.48828125, + 1.203125, + -1.1484375, + -0.359375, + 1.375, + 3.234375, + 0.59765625, + 1.3125, + -1.4453125, + -0.91015625, + -1.7265625, + 1.1328125, + 2.515625, + 0.6953125, + 2.0, + 1.3671875, + -1.328125, + 1.234375, + 1.265625, + 0.013427734375, + 3.625, + -2.875, + 0.89453125, + 1.7578125, + 1.1953125, + 3.25, + 0.9140625, + -0.51171875, + -1.453125, + 0.220703125, + -0.55859375, + -2.90625, + 0.76953125, + -0.4765625, + 2.390625, + -2.640625, + -2.125, + 2.03125, + -2.109375, + 1.1328125, + 1.3984375, + -0.041748046875, + -1.4140625, + -0.50390625, + 0.123046875, + 1.375, + -0.6953125, + 0.671875, + 3.09375, + -4.375, + -0.85546875, + -0.2890625, + -3.078125, + 1.0625, + -2.515625, + -4.375, + -0.8984375, + -0.91015625, + -0.1396484375, + -1.859375, + 0.87109375, + 1.2578125, + 0.2216796875, + -0.859375, + 0.498046875, + 1.8515625, + -0.29296875, + -0.359375, + -0.73046875, + -1.515625, + -0.7421875, + -2.375, + 1.1328125, + -1.8125, + 3.59375, + -1.0859375, + 0.20703125, + -1.890625, + 0.43359375, + -3.328125, + -1.3359375, + -2.78125, + 4.40625, + 1.7890625, + 0.46875, + -1.0546875, + 0.1201171875, + 0.48046875, + -1.578125, + -3.140625, + -1.125, + 0.4375, + -2.375, + 1.1328125, + -2.1875, + 0.8203125, + -1.6796875, + 1.828125, + -2.421875, + -3.09375, + -4.03125, + -0.181640625, + 0.80078125, + 0.451171875, + 1.59375, + 2.0625, + -1.34375, + 0.67578125, + -6.0625, + 2.453125, + -1.875, + -1.53125, + -0.33203125, + 0.0289306640625, + -0.85546875, + 1.2265625, + 1.4140625, + -1.5390625, + 0.1806640625, + -3.5625, + 2.609375, + 2.15625, + 1.46875, + -0.36328125, + 2.109375, + 0.2890625, + 7.78125, + -0.419921875, + -3.171875, + -0.89453125, + -0.123046875, + -1.34375, + 0.890625, + 2.546875, + 0.1962890625, + 0.921875, + -0.8203125, + 1.5234375, + -0.95703125, + 4.15625, + -0.150390625, + 0.404296875, + -3.65625, + -2.203125, + -1.765625, + 0.20703125, + 1.40625, + -0.6875, + 0.57421875, + 0.64453125, + 0.224609375, + -0.98828125, + 1.390625, + 1.2421875, + 0.9453125, + -0.208984375, + -3.15625, + -1.3203125, + 1.3984375, + -1.3828125, + -0.66015625, + -2.5625, + 2.046875, + -1.203125, + 2.5, + 0.98828125, + -1.0546875, + -2.109375, + 2.984375, + -4.75, + 0.51171875, + 0.255859375, + 1.8828125, + 4.625, + 1.6484375, + -0.42578125, + -0.9375, + -1.4765625, + -0.306640625, + -1.78125, + -0.99609375, + -0.78515625, + -0.52734375, + 3.796875, + 0.78515625, + 0.96484375, + -2.9375, + -1.5078125, + -1.515625, + -1.234375, + 2.9375, + 0.953125, + -1.0234375, + 3.46875, + 0.953125, + -0.07568359375, + 1.1953125, + 1.1875, + 5.25, + 1.5703125, + 0.859375, + -2.46875, + -0.146484375, + -1.4453125, + 3.75, + 0.1875, + 2.046875, + -0.287109375, + -1.96875, + 2.484375, + 2.546875, + 0.2060546875, + -1.7890625, + -2.0, + -0.9921875, + 1.125, + 1.578125, + -1.765625, + -0.052978515625, + -1.4375, + 0.7578125, + 0.361328125, + 2.28125, + -0.8125, + 1.5703125, + -2.375, + 1.0390625, + 0.66796875, + -1.6484375, + -1.8671875, + 0.625, + -0.259765625, + -1.28125, + -1.3515625, + -0.326171875, + 0.51953125, + -3.1875, + 0.169921875, + -1.2265625, + 0.6875, + 0.44921875, + -0.56640625, + 1.625, + 1.984375, + 0.032958984375, + -0.57421875, + 0.7578125, + 2.75, + -0.478515625, + -0.443359375, + 1.40625, + -1.2109375, + 0.76953125, + 1.40625, + -1.734375, + -4.71875, + 2.4375, + 1.9296875, + -1.15625, + -1.546875, + 0.423828125, + 1.3359375, + 2.421875, + -0.045654296875, + -0.70703125, + -0.8671875, + -3.96875, + -2.671875, + 3.015625, + -3.015625, + -0.016845703125, + 0.390625, + 2.546875, + -0.287109375, + -0.828125, + -1.5625, + 1.03125, + -2.90625, + 0.236328125, + 0.9140625, + -2.78125, + -0.2490234375, + -5.03125, + 2.65625, + -0.2294921875, + 1.125, + -0.25, + -6.71875, + -0.005340576171875, + 1.90625, + -1.0078125, + -1.8671875, + -0.66015625, + 0.61328125, + 0.392578125, + -2.328125, + 0.400390625, + -5.21875, + 0.625, + -2.28125, + 2.296875, + 1.0, + 1.515625, + -0.04541015625, + -0.90625, + -0.734375, + -0.5234375, + -0.73828125, + 2.703125, + 1.3125, + 1.90625, + 0.6953125, + -1.234375, + -2.828125, + 0.140625, + 1.1171875, + 0.1953125, + -0.97265625, + 1.53125, + -0.29296875, + -0.361328125, + 0.40234375, + -3.328125, + -0.35546875, + 0.609375, + 0.294921875, + 1.3125, + 2.859375, + 2.484375, + 3.0625, + 16.0, + 1.34375, + 1.5859375, + 0.1396484375, + -2.859375, + -1.2265625, + -2.71875, + 1.53125, + -2.59375, + 0.1357421875, + -1.0859375, + -1.9921875, + 1.4921875, + -2.3125, + -1.078125, + -0.482421875, + -1.59375, + 0.921875, + 2.796875, + 0.703125, + -1.7421875, + -0.337890625, + 2.0625, + -1.4140625, + -4.59375, + 0.26953125, + 1.5390625, + 3.40625, + -1.8125, + 1.703125, + 0.14453125, + -1.421875, + -0.90234375, + 0.9921875, + 2.4375, + -2.15625, + 2.671875, + -3.609375, + 2.40625, + 2.328125, + -0.45703125, + 0.74609375, + -3.28125, + 0.5234375, + 1.359375, + 0.2373046875, + -0.63671875, + 1.046875, + -1.890625, + -0.875, + -4.78125, + 0.390625, + -0.60546875, + 1.265625, + 0.22265625, + -0.023681640625, + -3.046875, + -0.07080078125, + 0.76171875, + 0.06298828125, + -0.87890625, + -0.76171875, + -0.3203125, + -3.796875, + -1.5390625, + -0.875, + 2.21875, + 1.8359375, + 0.63671875, + 1.609375, + -0.72265625, + -2.109375, + -2.03125, + 1.5078125, + -0.76171875, + 1.234375, + 1.8046875, + 0.625, + 1.546875, + 1.9453125, + 2.203125, + 1.5859375, + -0.87109375, + 2.796875, + -0.263671875, + 0.30859375, + -0.81640625, + -3.5625, + -0.255859375, + -0.5859375, + 0.103515625, + -0.06298828125, + -0.7421875, + 1.109375, + 0.40625, + 3.46875, + 1.015625, + -0.9453125, + 0.00823974609375, + 1.0546875, + -0.34765625, + 0.115234375, + -1.578125, + 0.95703125, + -0.4296875, + 4.9375, + -0.57421875, + -0.61328125, + 0.412109375, + 2.34375, + 0.447265625, + -0.0341796875, + 1.2265625, + 1.9609375, + 1.2421875, + 0.80859375, + 6.53125, + 1.0234375, + 0.08203125, + 0.78125, + -0.7890625, + -0.8984375, + -1.90625, + -0.6015625, + 0.4453125, + -1.765625, + 0.373046875, + -0.56640625, + -0.466796875, + -2.0, + 0.0, + -3.484375, + 2.046875, + 2.171875, + 0.24609375, + -0.1318359375, + -0.83203125, + -1.2890625, + 1.578125, + -1.203125, + 0.2021484375, + -2.28125, + -2.25, + 2.375, + -2.15625, + 0.890625, + 1.8203125, + 1.3984375, + 0.53125, + 1.25, + -1.5703125, + 0.890625, + -1.953125, + -0.255859375, + 0.74609375, + 1.5546875, + 1.046875, + -1.2265625, + 0.130859375, + -2.453125, + -12.5, + 1.0625, + 1.7421875, + -1.15625, + -2.40625, + -0.99609375, + 1.4140625, + -1.640625, + 1.3671875, + 1.53125, + -1.265625, + 1.109375, + -1.4765625, + -0.1669921875, + 1.1875 + ], + "index": 2, + "object": "embedding", + "raw_output": null + } + ], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 20, + "total_tokens": 20, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/ca332c91adee.json b/tests/integration/recordings/responses/ca332c91adee.json new file mode 100644 index 000000000..1c884e246 --- /dev/null +++ b/tests/integration/recordings/responses/ca332c91adee.json @@ -0,0 +1,4135 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": "Hello, world!", + "encoding_format": "float" + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [ + { + "embedding": [ + 2.640625, + 0.67578125, + -1.4375, + -4.0, + 0.85546875, + -2.984375, + -5.03125, + 1.90625, + -3.34375, + 1.859375, + -1.6875, + -0.69140625, + 6.34375, + 0.58984375, + 3.3125, + 1.890625, + 1.765625, + -2.265625, + 1.1640625, + 3.40625, + -4.5, + 3.890625, + 2.375, + 0.439453125, + 3.328125, + 2.640625, + -5.5, + -3.96875, + -0.09765625, + 4.28125, + -2.671875, + 1.9453125, + 0.73046875, + 6.0, + -2.578125, + -0.1865234375, + -1.171875, + 0.40234375, + 3.125, + 2.125, + 0.609375, + -0.8515625, + 3.9375, + 0.6484375, + -2.296875, + -0.212890625, + -3.796875, + -0.97265625, + 0.80859375, + 0.48828125, + -1.8515625, + -2.953125, + -1.28125, + -0.353515625, + -0.5703125, + -1.5703125, + -1.9296875, + -2.4375, + -3.765625, + -0.7734375, + -4.28125, + 3.734375, + -0.89453125, + -0.77734375, + 0.08349609375, + 1.375, + 1.984375, + -0.77734375, + 3.1875, + -2.078125, + 3.84375, + 1.8984375, + 3.09375, + 0.90625, + -1.4609375, + 3.328125, + -3.46875, + -5.375, + 2.53125, + 3.75, + -1.265625, + -0.2734375, + 0.03515625, + -3.421875, + 0.043701171875, + -2.65625, + 0.376953125, + -1.5703125, + 0.40625, + -2.4375, + 3.65625, + 0.03662109375, + 0.63671875, + 0.287109375, + 0.236328125, + 1.6640625, + -3.5625, + 0.4296875, + -2.65625, + 1.484375, + 3.171875, + 3.515625, + 1.3046875, + 1.375, + 2.625, + -3.171875, + -1.34375, + 0.451171875, + -0.87890625, + -1.765625, + 1.15625, + 3.1875, + 3.390625, + 1.0078125, + -1.6640625, + -3.6875, + -1.5546875, + 0.3203125, + -2.28125, + 1.6484375, + -1.109375, + -1.2265625, + -1.484375, + -2.09375, + 3.375, + -1.65625, + 0.6640625, + 2.96875, + 2.078125, + 0.1806640625, + 1.5, + -1.8046875, + 1.234375, + -3.6875, + -0.53125, + 0.51171875, + -1.7421875, + -1.109375, + -3.359375, + -1.6796875, + -1.921875, + 1.9140625, + 1.9375, + -1.6953125, + -0.166015625, + 2.59375, + -2.953125, + 0.8828125, + -0.044189453125, + -0.82421875, + -0.75390625, + -0.59375, + -1.1796875, + -1.4375, + -2.890625, + -2.390625, + -1.84375, + 2.15625, + 5.5625, + -0.796875, + 0.296875, + -1.03125, + 2.734375, + -0.6796875, + -0.7734375, + -1.328125, + 2.140625, + -1.984375, + 2.046875, + -1.1015625, + 2.359375, + -0.1982421875, + -2.703125, + 2.453125, + 1.03125, + -1.9921875, + -0.7421875, + -4.8125, + 2.625, + 3.34375, + -1.3515625, + 2.703125, + -0.5625, + 2.078125, + -0.85546875, + 2.53125, + -1.296875, + -1.03125, + 0.60546875, + 2.765625, + 1.7421875, + -0.2216796875, + -1.328125, + 0.26171875, + 0.98828125, + 0.140625, + -1.265625, + -1.125, + 3.34375, + -2.203125, + 6.15625, + -3.671875, + 1.4375, + -0.07421875, + 1.9609375, + -1.0234375, + -1.9609375, + 3.046875, + -0.41796875, + -1.234375, + 0.4296875, + 0.70703125, + -0.27734375, + 3.296875, + -0.0830078125, + -0.23046875, + 1.8515625, + -0.49609375, + -3.015625, + 0.33203125, + 1.75, + -0.05859375, + -0.40234375, + 2.109375, + -1.359375, + -4.5, + 0.640625, + -2.171875, + 0.515625, + -4.03125, + 2.21875, + -4.375, + -0.34765625, + -1.4140625, + -2.015625, + -1.7578125, + -1.5625, + -2.125, + 0.78515625, + 2.59375, + 1.015625, + -0.306640625, + -1.4375, + -1.9765625, + 2.09375, + -0.1484375, + 3.0, + -2.25, + 2.609375, + -2.828125, + -0.74609375, + -2.0, + -2.234375, + -2.59375, + -0.373046875, + 0.0234375, + -0.328125, + 0.58203125, + 1.0078125, + 3.65625, + -1.109375, + -6.3125, + -3.125, + 3.078125, + -3.234375, + 1.2421875, + -3.140625, + -1.1640625, + 0.390625, + 0.6953125, + 0.0177001953125, + -2.6875, + -0.2119140625, + 0.1884765625, + 0.388671875, + 3.96875, + -1.359375, + -1.84375, + -3.328125, + -0.58984375, + 1.0625, + -2.640625, + 3.46875, + -1.4921875, + 0.87109375, + 0.470703125, + 0.271484375, + 4.59375, + -0.02099609375, + 1.1484375, + 0.333984375, + 2.890625, + 0.6328125, + 4.03125, + -0.08642578125, + 2.953125, + -3.3125, + -1.6640625, + 1.7890625, + -1.0078125, + -2.96875, + -1.390625, + -0.2451171875, + 1.9375, + -1.890625, + 0.86328125, + -0.1806640625, + 3.0625, + 0.35546875, + -0.7890625, + -4.21875, + 0.2197265625, + 2.0625, + -2.65625, + -1.1875, + 0.2099609375, + -0.6015625, + 0.46875, + -3.6875, + 2.71875, + -2.890625, + -2.1875, + -0.439453125, + 1.875, + -0.68359375, + 1.3984375, + -0.55859375, + -1.0390625, + -3.0, + 0.072265625, + 1.0078125, + -1.9765625, + -0.011474609375, + 1.2734375, + 0.81640625, + 0.361328125, + 1.875, + -0.435546875, + 1.9765625, + -0.46484375, + -1.7421875, + -3.1875, + 1.53125, + -1.453125, + -1.375, + 0.33203125, + 2.25, + -0.20703125, + -2.5, + 1.015625, + -2.796875, + 1.6875, + 0.91015625, + 0.73828125, + -0.67578125, + 0.96484375, + -2.765625, + 2.484375, + 5.6875, + 0.388671875, + -0.08837890625, + 0.8359375, + 1.2421875, + -0.87890625, + 1.765625, + 0.9375, + 3.515625, + 1.2421875, + -3.71875, + 1.4453125, + 0.373046875, + 0.89453125, + -1.2421875, + 0.91796875, + -1.1484375, + 1.34375, + 2.296875, + -4.0, + 2.640625, + 0.337890625, + 0.0, + -6.3125, + -1.234375, + -2.953125, + -0.447265625, + 1.921875, + -0.1650390625, + -1.2109375, + 1.3671875, + -1.875, + -0.83984375, + 1.25, + 1.203125, + 0.2138671875, + -1.2265625, + 0.1943359375, + -0.5546875, + -2.578125, + -3.28125, + 1.71875, + 4.21875, + 1.3984375, + -0.123046875, + 4.8125, + -0.57421875, + 0.54296875, + -2.125, + -1.2734375, + -1.703125, + 1.0625, + -2.171875, + 0.5, + -1.7109375, + 0.7890625, + 1.4140625, + 1.46875, + 1.96875, + 4.625, + -5.0, + -3.3125, + -0.93359375, + 3.0, + 1.0546875, + -1.5, + -2.296875, + 0.6328125, + -1.0078125, + -0.91015625, + 3.046875, + -1.859375, + -0.78125, + -3.5, + -4.03125, + 2.15625, + 2.484375, + 2.0, + 0.96875, + -1.546875, + 0.287109375, + 1.3984375, + 2.796875, + -0.984375, + 2.53125, + 2.71875, + 0.4140625, + 1.125, + 0.359375, + 2.421875, + -1.1328125, + -0.6328125, + -1.8984375, + 1.78125, + -0.66015625, + 1.125, + -1.984375, + -2.828125, + -0.466796875, + -0.6171875, + 1.3671875, + 2.25, + -0.0849609375, + -1.6171875, + -0.2890625, + 1.7578125, + 2.265625, + -0.99609375, + 3.578125, + -3.234375, + -2.765625, + -0.87109375, + -2.4375, + 1.3203125, + -1.3203125, + -1.78125, + -0.5390625, + 2.21875, + 0.1875, + -4.15625, + 1.296875, + -3.140625, + -1.6875, + -3.578125, + -4.625, + -4.78125, + 3.234375, + 5.03125, + 1.0234375, + -4.40625, + -0.63671875, + 0.47265625, + -0.79296875, + 2.234375, + 4.375, + -0.138671875, + 0.66796875, + 1.1015625, + 2.390625, + -0.36328125, + 3.578125, + 0.97265625, + -0.036376953125, + -3.78125, + 0.345703125, + -0.26953125, + -2.125, + -1.203125, + 3.984375, + 0.0023193359375, + 0.78125, + 0.77734375, + 2.3125, + -3.90625, + -2.671875, + 0.89453125, + -1.53125, + -1.03125, + 0.93359375, + 0.007110595703125, + 0.08349609375, + 3.40625, + -0.625, + -0.291015625, + -1.78125, + -2.046875, + 1.4765625, + 0.55078125, + 0.94921875, + 1.65625, + 3.390625, + -0.71484375, + -1.4609375, + 0.921875, + -1.1484375, + -0.1328125, + -3.15625, + -2.765625, + -0.97265625, + -0.5859375, + -0.08447265625, + -0.6015625, + -1.875, + 2.28125, + 0.94921875, + -1.859375, + 0.828125, + 6.375, + -0.58984375, + -1.3828125, + 0.255859375, + -0.609375, + 1.5234375, + 0.66015625, + 0.921875, + 1.6171875, + 3.578125, + 1.5703125, + -2.21875, + -1.796875, + 0.279296875, + -0.90625, + -1.4765625, + -1.7265625, + -2.25, + -1.0234375, + -3.6875, + -2.328125, + -1.71875, + 2.734375, + -1.6171875, + 1.1328125, + 0.265625, + 1.1953125, + 0.921875, + 1.484375, + 1.0546875, + -0.1787109375, + -2.0625, + -0.39453125, + -0.55859375, + -1.390625, + 2.734375, + -1.1328125, + -0.2392578125, + 0.66015625, + 2.125, + -2.59375, + 0.58203125, + -0.08056640625, + -0.6484375, + 0.1748046875, + -0.478515625, + 1.5703125, + 1.8828125, + -5.59375, + -1.8046875, + 2.84375, + -1.953125, + -3.765625, + 1.1328125, + 1.0625, + 0.1494140625, + -2.046875, + 0.2158203125, + 2.53125, + 0.80078125, + 3.859375, + 0.92578125, + -4.3125, + 2.578125, + -2.875, + 2.734375, + 1.0546875, + -1.5, + 1.6796875, + -0.91796875, + -3.40625, + 0.2138671875, + -1.625, + 2.15625, + 3.46875, + -3.8125, + -3.65625, + -0.1650390625, + 1.4140625, + -0.54296875, + 1.625, + 0.275390625, + 1.890625, + -3.28125, + 0.80859375, + -1.453125, + 0.83203125, + 3.40625, + -4.9375, + -3.34375, + 1.59375, + 1.8046875, + -0.08203125, + -3.015625, + 3.796875, + 2.953125, + 2.75, + 2.890625, + 2.03125, + 0.828125, + 1.6875, + 4.25, + 2.828125, + -2.21875, + -0.52734375, + -0.5703125, + -1.828125, + 5.96875, + -0.99609375, + 2.65625, + -3.578125, + 2.6875, + -0.55859375, + -0.482421875, + 0.37890625, + -4.96875, + -0.54296875, + 2.46875, + -4.4375, + 0.91015625, + -1.2109375, + 0.18359375, + 3.140625, + 2.1875, + -5.9375, + -5.9375, + 3.328125, + -1.3515625, + 3.1875, + 2.015625, + 0.126953125, + 4.34375, + 3.71875, + 0.73828125, + -3.859375, + -2.234375, + -2.03125, + -0.6171875, + 1.5703125, + 0.51953125, + -3.375, + -1.046875, + 0.15625, + 3.484375, + -0.376953125, + 2.125, + -3.34375, + 3.28125, + -3.546875, + 3.390625, + 2.546875, + 0.5546875, + -0.53125, + 2.109375, + 2.203125, + 2.109375, + -0.84375, + -3.625, + -3.40625, + -0.62109375, + -1.6796875, + -1.9921875, + 0.373046875, + -4.3125, + -0.15234375, + -1.875, + 0.060302734375, + -0.447265625, + -0.87109375, + -2.8125, + -1.796875, + 2.125, + -0.375, + -0.75390625, + -2.8125, + 2.34375, + 2.328125, + -1.8515625, + 2.25, + 0.0040283203125, + -1.5546875, + 3.84375, + -0.609375, + 1.671875, + -4.5625, + -0.1787109375, + 2.3125, + -0.353515625, + 1.3203125, + -3.421875, + 1.3515625, + 1.859375, + 1.578125, + -0.2158203125, + -0.90234375, + -1.5078125, + 0.255859375, + -0.08740234375, + 0.6328125, + -2.625, + -0.58203125, + 0.09912109375, + -0.05078125, + 0.83984375, + -2.921875, + -0.640625, + -0.1416015625, + 0.49609375, + -0.69921875, + 0.74609375, + 1.40625, + -0.7578125, + 0.84375, + 2.78125, + -0.32421875, + -2.046875, + 1.2109375, + -1.0234375, + 0.875, + 2.84375, + 1.375, + -1.71875, + 2.359375, + 3.609375, + -0.0277099609375, + 0.64453125, + -1.7578125, + 1.546875, + 0.86328125, + -2.78125, + -1.4296875, + -1.40625, + 1.1484375, + -1.6015625, + -1.0234375, + 0.609375, + 0.02392578125, + -0.166015625, + -2.4375, + -0.71875, + 1.421875, + -1.3671875, + 4.09375, + -0.7734375, + 1.5, + -4.84375, + 1.1875, + 4.15625, + 1.5625, + 2.265625, + -0.44921875, + 0.76171875, + 0.25390625, + -2.0, + 4.125, + -1.0625, + 1.7734375, + -3.578125, + 0.177734375, + 1.6171875, + -0.318359375, + 1.2109375, + -0.494140625, + 1.0234375, + 1.3828125, + -0.875, + 4.65625, + 0.3515625, + -1.75, + 1.5625, + 0.470703125, + -1.1484375, + -1.9921875, + -0.63671875, + 1.03125, + -1.71875, + 0.484375, + 3.578125, + 0.26953125, + -1.4453125, + 0.298828125, + 1.09375, + 2.703125, + 0.4921875, + 3.390625, + 2.46875, + -2.4375, + 0.8671875, + 0.8203125, + 0.42578125, + -0.66796875, + -0.09716796875, + -3.125, + -0.54296875, + 0.54296875, + 1.8828125, + -0.427734375, + -0.68359375, + -2.890625, + 1.5546875, + 1.359375, + -1.9921875, + 0.56640625, + -0.2216796875, + -1.1015625, + -0.97265625, + -2.9375, + 1.0859375, + 0.05859375, + -0.224609375, + 1.6640625, + 1.9921875, + 0.921875, + 0.70703125, + 2.21875, + -0.4296875, + 0.08203125, + 0.283203125, + -3.609375, + 1.765625, + -0.890625, + 0.83203125, + 0.201171875, + -1.90625, + -0.1943359375, + 1.5625, + 0.458984375, + -1.6953125, + -1.265625, + 0.8125, + -2.890625, + -3.703125, + 2.328125, + 2.84375, + -2.8125, + -1.3359375, + -0.146484375, + -1.6640625, + -0.1474609375, + -2.4375, + 1.6953125, + -2.125, + 2.65625, + 0.1474609375, + 1.75, + 2.359375, + -4.15625, + -1.1015625, + 1.0859375, + -1.9609375, + -0.390625, + 0.0185546875, + 1.359375, + 1.4375, + -1.0390625, + -2.4375, + 2.046875, + -0.53515625, + 0.92578125, + -0.9609375, + 5.15625, + -1.1328125, + -0.76953125, + -2.921875, + -1.390625, + 1.3046875, + -2.4375, + -1.53125, + -0.34765625, + 0.765625, + -0.466796875, + 2.390625, + 0.37890625, + 2.578125, + -2.078125, + 1.9765625, + 0.3046875, + 1.25, + 0.5703125, + -0.0361328125, + -0.478515625, + 0.46484375, + 3.046875, + -0.91015625, + -1.2421875, + -0.80078125, + 1.03125, + -0.640625, + -0.62890625, + 0.51171875, + -1.0234375, + 1.6640625, + -2.03125, + 4.65625, + 0.4921875, + -0.84375, + -1.5390625, + 4.875, + 0.859375, + 0.37890625, + -2.875, + -1.8671875, + -0.515625, + 0.26171875, + 2.46875, + 2.671875, + -3.421875, + 1.140625, + 1.4140625, + 1.8046875, + -0.3203125, + 2.28125, + -1.8359375, + -3.21875, + -0.01171875, + -2.609375, + -2.546875, + 3.90625, + -3.09375, + 2.890625, + -1.0078125, + 0.130859375, + -1.53125, + -3.578125, + 1.9765625, + -0.1025390625, + -0.734375, + -0.453125, + -0.953125, + -1.1484375, + -0.359375, + 3.9375, + 0.10107421875, + 0.828125, + -2.3125, + -1.71875, + 0.12158203125, + 0.20703125, + 1.3515625, + 0.6484375, + 1.875, + 1.1796875, + -1.65625, + -4.1875, + 8.3125, + 0.291015625, + -2.09375, + 2.4375, + 1.3671875, + 3.71875, + -1.4921875, + -0.365234375, + 0.0076904296875, + 2.609375, + 2.71875, + 0.86328125, + 2.984375, + -1.0859375, + -2.5625, + 2.859375, + -2.421875, + -2.3125, + -0.283203125, + 1.171875, + -2.703125, + 1.1953125, + 0.39453125, + 2.0, + 1.453125, + -0.251953125, + 0.59765625, + -3.71875, + -0.83203125, + -0.671875, + 3.609375, + 0.326171875, + -1.953125, + 1.0546875, + -3.796875, + 0.98828125, + 2.875, + -2.953125, + -1.4375, + 0.080078125, + -0.5078125, + 1.234375, + 3.34375, + -1.96875, + -0.0079345703125, + -1.0703125, + -1.3984375, + 0.173828125, + -0.47265625, + 3.125, + -1.7890625, + 0.1513671875, + -0.228515625, + 0.400390625, + 0.74609375, + -0.0014801025390625, + -0.91015625, + 0.1259765625, + 1.4375, + -1.09375, + -1.3984375, + 1.5390625, + 1.796875, + -1.234375, + 1.0078125, + 0.8203125, + 0.318359375, + -1.2578125, + 2.5, + 0.75, + -1.8671875, + 1.109375, + -1.4375, + 4.90625, + -2.890625, + -0.6875, + 0.09326171875, + 1.484375, + -6.1875, + -0.1494140625, + 2.109375, + 0.9296875, + 0.84375, + -0.84375, + -2.875, + -5.46875, + -3.28125, + -5.5625, + -3.546875, + -0.8359375, + -0.3359375, + -0.74609375, + -1.15625, + 0.55859375, + 0.94140625, + 4.125, + 4.5625, + 0.89453125, + 0.7578125, + 0.357421875, + 1.5546875, + -1.65625, + 1.0, + 1.2578125, + 0.9375, + -0.6171875, + 1.65625, + 0.11376953125, + -0.98046875, + 3.890625, + 0.859375, + 5.0, + -1.2421875, + 3.109375, + -2.796875, + -1.0078125, + 1.7734375, + 0.5234375, + -1.7265625, + 1.203125, + -1.546875, + 3.0625, + 2.296875, + 1.6875, + -2.703125, + 6.5, + -0.365234375, + 1.40625, + 1.046875, + -0.48046875, + -1.25, + -3.078125, + -2.109375, + -0.47265625, + -4.25, + 0.55859375, + -1.5390625, + -0.306640625, + -3.03125, + -4.9375, + 0.62890625, + 2.28125, + 1.9921875, + -1.109375, + 3.640625, + 4.09375, + 0.33203125, + 1.03125, + 3.3125, + -2.09375, + 0.76171875, + -0.421875, + 0.92578125, + 1.359375, + 3.890625, + -7.5625, + 1.4765625, + -1.1015625, + -0.7421875, + -0.5625, + 0.77734375, + 0.208984375, + -3.390625, + -0.578125, + -2.328125, + -2.59375, + -1.6796875, + 2.0, + -2.3125, + 1.234375, + 0.126953125, + 0.45703125, + 1.8984375, + -0.95703125, + -1.5859375, + -0.1572265625, + 0.275390625, + 0.470703125, + 1.4375, + 0.94140625, + 0.10302734375, + -1.03125, + -0.3046875, + -1.1015625, + 0.2734375, + -0.373046875, + 0.6875, + 1.125, + -0.44140625, + -0.00701904296875, + 3.765625, + 1.6640625, + -1.625, + -3.109375, + 1.0078125, + -1.5625, + -3.171875, + 1.1171875, + -0.0947265625, + 3.5625, + -1.1484375, + -1.4296875, + 1.5, + 1.125, + -1.015625, + -0.2236328125, + 3.59375, + 3.390625, + -1.2890625, + 1.765625, + -0.90625, + 1.6015625, + -0.08447265625, + -1.546875, + -0.1826171875, + 1.734375, + 0.93359375, + -1.171875, + 1.21875, + 1.5703125, + -3.234375, + -3.546875, + -0.439453125, + -3.03125, + -1.8203125, + -4.4375, + -1.140625, + -2.421875, + -2.203125, + -1.28125, + -1.875, + 1.7734375, + -0.84765625, + -1.4296875, + 0.416015625, + 0.78125, + -1.59375, + 3.515625, + 2.15625, + -1.0, + 2.5, + 0.115234375, + -2.8125, + 0.5078125, + 0.322265625, + 2.453125, + 2.171875, + -1.8515625, + 1.5625, + -1.546875, + -2.453125, + 1.484375, + -1.328125, + 1.28125, + 0.65625, + -1.28125, + -1.203125, + 0.35546875, + -3.1875, + 0.11962890625, + -4.59375, + -5.25, + 2.390625, + -0.236328125, + -2.03125, + -4.1875, + -1.515625, + -1.984375, + 3.296875, + 2.6875, + -0.94140625, + 2.171875, + -2.609375, + 0.061767578125, + -1.21875, + -0.03564453125, + 0.79296875, + -4.15625, + -0.181640625, + 1.9765625, + -1.203125, + -0.76953125, + 1.4375, + -0.64453125, + -1.46875, + -0.11181640625, + -0.337890625, + 0.5546875, + 1.3125, + -1.3984375, + -0.84765625, + 1.3828125, + -0.578125, + -0.208984375, + 0.10009765625, + -2.328125, + 1.9296875, + 2.703125, + -0.474609375, + -0.8359375, + 1.96875, + -0.287109375, + -0.98046875, + 1.9375, + -0.66796875, + 3.359375, + -0.35546875, + 0.01324462890625, + 3.640625, + 2.21875, + -0.88671875, + 2.40625, + 2.53125, + -3.390625, + 2.34375, + 1.3203125, + 2.53125, + 1.7421875, + 0.765625, + 1.3671875, + 0.64453125, + -0.6328125, + 4.625, + 0.494140625, + -1.84375, + -1.765625, + -2.328125, + 1.2109375, + 2.75, + 2.453125, + 3.328125, + 0.5078125, + -1.3828125, + 1.03125, + -0.83203125, + -1.40625, + 0.71875, + -0.310546875, + 0.283203125, + -0.65234375, + -0.037353515625, + 0.275390625, + 0.91796875, + -1.3828125, + 2.9375, + -5.0625, + -2.0625, + 1.46875, + 2.515625, + -2.09375, + 2.96875, + -0.0274658203125, + 0.91796875, + -3.078125, + 3.6875, + -2.34375, + 1.6328125, + 3.0625, + -0.75390625, + 2.21875, + -1.46875, + -2.46875, + -0.318359375, + -0.34765625, + -5.71875, + 0.3984375, + 2.4375, + 3.046875, + -0.4453125, + -2.796875, + -1.2421875, + 0.67578125, + 1.1953125, + -0.3359375, + 1.6640625, + 3.984375, + 1.671875, + -0.482421875, + 3.609375, + -1.5625, + 2.953125, + 1.015625, + -0.65234375, + 2.734375, + -1.9765625, + -0.9921875, + -3.140625, + 0.1201171875, + 2.953125, + 1.0, + -0.34765625, + 0.048583984375, + -0.5390625, + 1.6640625, + -0.59765625, + -0.828125, + -1.2890625, + 0.71484375, + 1.8203125, + -3.328125, + 2.546875, + -0.0272216796875, + -0.66796875, + -1.2734375, + 1.9765625, + -1.4453125, + -0.52734375, + 1.0546875, + -1.8203125, + 2.84375, + -0.78125, + 0.345703125, + 2.09375, + 2.546875, + 3.484375, + 0.0517578125, + -1.390625, + 2.046875, + -1.3203125, + -1.5, + -0.287109375, + -3.109375, + -0.158203125, + -1.1875, + 2.390625, + -1.4765625, + -0.921875, + -2.09375, + -2.375, + 3.375, + -1.75, + -0.0230712890625, + 0.0, + 2.6875, + -2.171875, + 0.5703125, + -1.7890625, + 2.640625, + -2.03125, + 1.4609375, + -0.38671875, + -0.044189453125, + 0.1806640625, + 1.9765625, + -0.6484375, + -2.34375, + 3.84375, + -1.1015625, + 0.58984375, + -2.53125, + 0.7578125, + -0.69140625, + -4.3125, + 3.3125, + 11.4375, + -0.064453125, + -3.8125, + -1.25, + 4.25, + -0.88671875, + -3.0, + -7.3125, + -0.9609375, + -3.21875, + -3.03125, + -0.7421875, + 0.28125, + 1.625, + -1.859375, + -0.66796875, + 1.5234375, + -0.38671875, + -0.1796875, + -1.625, + -0.00732421875, + 1.625, + -1.234375, + -1.1015625, + -2.59375, + -2.546875, + -0.322265625, + 1.796875, + -1.984375, + 0.671875, + -0.984375, + 2.0625, + -1.4765625, + 0.62109375, + 0.7734375, + -3.75, + -0.4609375, + -0.35546875, + 6.1875, + 0.76171875, + 1.890625, + -0.40234375, + 3.15625, + 2.9375, + 1.9296875, + 3.578125, + -2.46875, + 0.052978515625, + 0.74609375, + 2.765625, + 0.0242919921875, + -1.46875, + 0.9765625, + -0.90234375, + 2.515625, + -3.171875, + 2.75, + -0.39453125, + 0.21484375, + 2.28125, + 0.546875, + -2.21875, + -0.416015625, + 0.8125, + -1.21875, + 0.5546875, + 1.375, + 2.234375, + 0.92578125, + -0.67578125, + -4.5625, + 2.265625, + 2.578125, + 5.5, + -0.1728515625, + 1.5234375, + 1.515625, + -0.6328125, + -1.203125, + -0.78515625, + -1.1484375, + 2.484375, + 1.6875, + -0.0830078125, + 2.734375, + -0.2177734375, + 0.9296875, + -1.03125, + 0.64453125, + -0.421875, + 2.328125, + 0.921875, + 1.640625, + 0.83203125, + -0.98046875, + -0.9140625, + 1.953125, + 1.296875, + -0.5625, + -1.84375, + -3.875, + 1.328125, + 1.4140625, + 0.22265625, + 0.25, + -1.078125, + -1.65625, + 0.458984375, + 0.6171875, + -0.4296875, + -0.76953125, + -0.59375, + 2.390625, + -1.59375, + -0.703125, + -2.15625, + 1.1796875, + 3.34375, + 1.90625, + -0.2490234375, + 0.2421875, + 0.34765625, + -1.4921875, + 1.921875, + 1.3515625, + 0.88671875, + 1.390625, + -2.15625, + 0.326171875, + -0.375, + 0.02001953125, + 1.734375, + 3.859375, + -0.5078125, + -2.84375, + -0.1962890625, + 5.0, + -0.125, + -0.498046875, + 0.00299072265625, + -1.828125, + 2.046875, + 0.84765625, + -3.140625, + -2.890625, + 0.7109375, + 1.5859375, + 0.76171875, + -0.80859375, + 0.435546875, + 3.109375, + 1.640625, + -0.1953125, + 0.201171875, + -1.9921875, + -5.0, + 0.640625, + 1.3984375, + 1.65625, + -1.296875, + 1.46875, + -0.8203125, + -4.09375, + 3.171875, + -1.3828125, + 0.89453125, + -2.96875, + 1.90625, + -1.2421875, + -5.59375, + 1.2109375, + -1.515625, + 1.8515625, + 0.004058837890625, + -1.484375, + 1.2734375, + 1.234375, + -0.01544189453125, + 0.494140625, + -2.21875, + 1.078125, + 0.1376953125, + 1.9453125, + 1.1875, + 0.146484375, + -0.984375, + -1.4375, + -0.57421875, + -0.208984375, + 0.85546875, + 0.34765625, + 1.6953125, + 1.7734375, + -0.02294921875, + -0.62109375, + 3.578125, + 2.609375, + 1.2578125, + 0.734375, + -0.3359375, + 1.0390625, + -0.5703125, + -1.5, + -0.52734375, + -1.703125, + 2.546875, + 2.78125, + 1.015625, + 1.3515625, + 0.92578125, + -0.99609375, + 1.8359375, + 2.953125, + -1.46875, + -0.07373046875, + -0.51953125, + -0.96484375, + 1.515625, + 1.375, + 1.6953125, + -4.375, + -1.5078125, + -0.328125, + -0.01202392578125, + -0.94140625, + 0.5546875, + 0.609375, + -2.65625, + -3.078125, + -2.609375, + -0.474609375, + -0.53125, + -0.18359375, + -0.92578125, + -2.265625, + -1.265625, + 0.59375, + -2.984375, + 2.5, + 1.953125, + 1.3984375, + -1.984375, + 0.205078125, + 2.078125, + 0.5078125, + 0.6796875, + -0.1748046875, + -0.51171875, + 2.421875, + -2.296875, + 2.84375, + -2.609375, + 1.15625, + -2.3125, + -1.09375, + 0.90625, + 3.4375, + -3.84375, + 2.484375, + -1.90625, + 2.140625, + -1.625, + 0.6640625, + 2.125, + 2.21875, + -1.0859375, + -1.28125, + -0.5703125, + 0.05810546875, + -0.1513671875, + 0.061767578125, + -0.6484375, + 0.341796875, + -2.921875, + 5.1875, + 0.97265625, + -4.5, + 3.25, + 0.515625, + 0.2314453125, + -1.609375, + -2.0625, + 2.015625, + -1.390625, + 0.296875, + 0.494140625, + 0.90625, + 0.96484375, + -2.328125, + -3.703125, + 1.75, + -3.265625, + 0.6796875, + -1.859375, + 1.8203125, + -0.9296875, + -0.318359375, + -2.234375, + -0.1767578125, + 0.6015625, + 0.5390625, + 1.59375, + 1.3671875, + -0.640625, + 0.90234375, + 0.6640625, + -1.796875, + 2.34375, + -2.734375, + 0.22265625, + -2.609375, + -0.75, + -1.4609375, + -1.34375, + -1.21875, + 1.328125, + -0.640625, + -3.15625, + 2.96875, + -1.0, + 0.1083984375, + 1.75, + 1.3671875, + -1.84375, + 10.5625, + 2.328125, + 0.60546875, + 3.3125, + 0.019775390625, + 0.88671875, + 0.000949859619140625, + -1.2578125, + -2.171875, + -1.6484375, + 1.140625, + 0.08984375, + -1.8046875, + -1.328125, + -1.8203125, + 0.79296875, + -4.125, + -0.99609375, + 0.984375, + 1.6640625, + 1.59375, + -3.75, + 1.0546875, + 2.328125, + -0.349609375, + 0.671875, + -2.109375, + -5.125, + 0.06787109375, + 3.71875, + 2.8125, + -0.302734375, + -2.21875, + -2.515625, + 1.734375, + -2.46875, + -0.5859375, + 1.375, + 0.25, + -0.333984375, + -1.1640625, + 0.77734375, + 0.66015625, + -0.1396484375, + -0.451171875, + 0.60546875, + -0.09716796875, + -1.265625, + 1.7265625, + -0.048583984375, + 2.59375, + -0.21875, + -1.546875, + -1.875, + 0.1708984375, + -2.640625, + 1.8671875, + 0.76171875, + 0.1943359375, + 1.4375, + -1.8515625, + 0.16796875, + -1.4921875, + -1.5703125, + -1.6640625, + 2.71875, + 0.7421875, + -1.921875, + 0.8359375, + -1.5859375, + 1.0859375, + -0.00037384033203125, + -1.4140625, + 2.265625, + -0.0037689208984375, + -2.90625, + 2.453125, + -4.34375, + -0.76953125, + -1.375, + -0.78515625, + 1.921875, + 2.375, + -0.169921875, + 0.32421875, + 0.388671875, + 0.68359375, + 1.234375, + 0.87890625, + -0.24609375, + -1.1875, + -1.3828125, + -1.4921875, + 0.2412109375, + -0.82421875, + -0.796875, + -0.875, + 0.76171875, + 0.2275390625, + -1.390625, + 0.0654296875, + -0.84375, + 1.3828125, + -2.46875, + -0.2578125, + 0.8515625, + 0.337890625, + 1.1875, + 0.306640625, + 0.62890625, + -2.703125, + -0.390625, + -3.21875, + -3.15625, + 0.6796875, + -3.765625, + 2.875, + -0.8671875, + -0.6953125, + 1.0546875, + -1.0625, + -0.9921875, + 16.75, + -0.65625, + -1.265625, + 2.4375, + 0.0556640625, + -0.498046875, + 0.64453125, + -0.703125, + -3.234375, + 0.4921875, + 3.21875, + -0.765625, + -1.65625, + 0.404296875, + -2.28125, + -2.9375, + 0.490234375, + 2.203125, + 0.7265625, + 0.68359375, + 0.359375, + 1.4296875, + 1.40625, + -0.6953125, + -0.0703125, + -1.984375, + 0.61328125, + -3.765625, + 0.9609375, + 0.380859375, + 3.734375, + -4.59375, + -2.296875, + 2.15625, + 1.8671875, + 6.21875, + -2.65625, + 2.640625, + -0.02294921875, + 1.421875, + -2.375, + -2.78125, + -0.263671875, + -1.390625, + -1.9140625, + 0.76953125, + 0.306640625, + -0.08740234375, + 0.61328125, + -3.5, + 0.7265625, + -1.328125, + 0.96875, + 2.328125, + -3.625, + -1.8046875, + 0.482421875, + 6.40625, + -1.8203125, + -1.40625, + -0.98046875, + 0.77734375, + -0.78125, + -0.73046875, + 1.1640625, + 2.796875, + -1.078125, + -0.63671875, + 2.140625, + -0.16015625, + -2.859375, + 0.54296875, + -0.38671875, + -0.259765625, + -0.92578125, + -0.181640625, + 0.6484375, + 1.5078125, + 2.890625, + -0.1845703125, + 0.45703125, + 0.85546875, + 0.2373046875, + 1.4921875, + 0.5546875, + -0.734375, + 1.515625, + 0.8828125, + 0.0888671875, + 1.7109375, + 0.99609375, + 1.78125, + 0.1572265625, + -1.7890625, + 2.453125, + -0.9921875, + -1.8203125, + -2.359375, + 0.294921875, + 0.4765625, + -3.640625, + 4.90625, + -0.134765625, + 2.484375, + -0.1630859375, + 1.84375, + -1.390625, + -3.96875, + 0.88671875, + -1.7421875, + 0.330078125, + 0.2138671875, + -0.84375, + 0.365234375, + 1.7890625, + 1.546875, + -0.17578125, + 2.484375, + -0.3671875, + -0.2001953125, + 1.5078125, + 2.609375, + -1.140625, + -0.265625, + -1.7734375, + 0.328125, + 1.359375, + -1.5625, + 2.25, + -0.47265625, + 0.15625, + -0.63671875, + 0.81640625, + -0.73046875, + 2.609375, + -3.046875, + -1.1640625, + 3.1875, + 1.09375, + 0.765625, + 1.1484375, + -0.65234375, + -0.81640625, + 0.9921875, + 0.91796875, + -1.2734375, + -0.1875, + 0.70703125, + -0.5625, + -2.40625, + -0.984375, + -0.2353515625, + -0.0140380859375, + 1.359375, + 0.63671875, + 0.037109375, + -2.375, + 1.4921875, + 1.9765625, + -0.93359375, + -1.34375, + -0.2197265625, + 1.4453125, + 0.1259765625, + -0.01556396484375, + -0.60546875, + -1.7109375, + 1.265625, + 3.859375, + 1.96875, + -0.333984375, + 3.078125, + -4.53125, + 3.671875, + 1.0546875, + -0.04638671875, + -1.78125, + -1.359375, + -1.7890625, + -1.8515625, + 1.6171875, + -0.8046875, + 0.2333984375, + 0.80859375, + 1.2734375, + 0.07177734375, + 1.2265625, + 0.64453125, + 2.515625, + 1.8515625, + -1.125, + -4.40625, + -0.255859375, + 3.171875, + -0.99609375, + -1.390625, + 2.140625, + -1.046875, + -2.78125, + 1.34375, + -1.8046875, + -0.6953125, + -0.4375, + -1.6640625, + -2.734375, + -1.015625, + -0.49609375, + 1.3359375, + -2.5, + 1.984375, + 0.1953125, + -2.375, + 2.109375, + 3.6875, + 1.40625, + 1.0234375, + 1.9375, + -0.40234375, + -2.78125, + -0.5234375, + 8.375, + 2.140625, + 0.79296875, + -0.2080078125, + -0.06787109375, + 0.291015625, + 0.6640625, + -0.33984375, + -3.9375, + -2.25, + 3.09375, + 1.1171875, + 1.1328125, + 0.9765625, + 0.69140625, + -2.015625, + 0.02978515625, + 1.0390625, + -2.0, + 0.91796875, + -3.4375, + 2.75, + 0.97265625, + -2.890625, + 0.86328125, + 2.359375, + 0.57421875, + -0.71875, + 0.5546875, + -1.140625, + -2.21875, + 0.1943359375, + 2.296875, + -0.92578125, + -3.078125, + 0.56640625, + -0.400390625, + -0.412109375, + 0.625, + 0.453125, + 2.703125, + -1.8125, + 3.46875, + -0.1708984375, + -2.84375, + -0.0159912109375, + 0.93359375, + 1.0625, + -1.15625, + 7.0, + -3.46875, + 2.015625, + -3.109375, + 2.625, + 3.03125, + 0.78125, + -0.11083984375, + 0.1513671875, + 0.236328125, + 1.0703125, + 1.3203125, + -2.796875, + -1.6875, + 1.3203125, + 0.1279296875, + -1.40625, + -0.365234375, + -0.267578125, + 1.1171875, + -0.2138671875, + -0.796875, + 0.0556640625, + 0.1728515625, + 3.09375, + 0.177734375, + 0.29296875, + 0.23046875, + -4.53125, + 0.16015625, + -1.4453125, + 0.0155029296875, + -0.03173828125, + 1.2734375, + -3.71875, + -3.03125, + -1.7421875, + 4.53125, + 0.9296875, + 0.73046875, + -3.171875, + -1.46875, + 1.9453125, + -0.416015625, + -13.5625, + -0.92578125, + 2.328125, + -1.15625, + 1.6640625, + -1.7734375, + -0.875, + 1.578125, + -1.640625, + 0.52734375, + -2.734375, + 0.87109375, + 0.1982421875, + -0.99609375, + -0.55078125, + -0.84375, + 1.0859375, + -1.0, + 1.3125, + 1.1640625, + -1.515625, + -0.63671875, + 0.7109375, + -3.546875, + 0.734375, + -0.87890625, + 0.00096893310546875, + 1.8125, + -3.421875, + 1.9296875, + -1.2421875, + -0.56640625, + -2.5, + -0.154296875, + -0.365234375, + -2.640625, + -0.88671875, + -2.109375, + -1.5, + -1.1484375, + -0.8046875, + 0.82421875, + 0.50390625, + 0.298828125, + 2.484375, + -0.796875, + -0.9453125, + -0.734375, + 0.5625, + 0.053955078125, + 0.97265625, + 0.8125, + 1.8984375, + 1.234375, + -0.3515625, + 0.3046875, + 0.89453125, + 2.21875, + -0.0286865234375, + 0.94921875, + 2.5, + 0.54296875, + 0.043701171875, + -0.64453125, + 0.4765625, + -0.80078125, + 1.9140625, + 2.828125, + 1.5859375, + 1.015625, + 1.0625, + -6.78125, + -0.1328125, + -2.109375, + 0.0019073486328125, + -0.341796875, + -1.5703125, + -3.75, + 0.9375, + -0.84375, + -1.125, + 4.125, + -4.46875, + 0.57421875, + 1.3671875, + -1.3828125, + -0.0198974609375, + 3.734375, + -2.515625, + 0.875, + -3.40625, + 1.9375, + 2.5, + 1.109375, + -2.15625, + 0.74609375, + 3.796875, + 2.65625, + -0.75390625, + 0.0157470703125, + 2.328125, + 2.5625, + -1.2578125, + 1.6484375, + 0.6875, + 1.484375, + 0.78515625, + -0.1455078125, + -0.765625, + 2.421875, + -1.71875, + 0.142578125, + -0.01123046875, + 1.71875, + -0.69921875, + -0.003936767578125, + 2.6875, + -2.75, + 2.5, + 0.62890625, + 0.72265625, + 1.5390625, + -1.078125, + 1.1484375, + -0.162109375, + 3.03125, + 1.015625, + 0.03759765625, + 0.2216796875, + -1.8828125, + -3.390625, + 0.65625, + -0.51953125, + 4.59375, + 0.7890625, + -1.40625, + 2.421875, + -0.056640625, + 1.515625, + 0.1513671875, + 2.140625, + 0.1826171875, + -1.734375, + -1.6796875, + 0.1650390625, + -2.109375, + -1.2109375, + -0.05126953125, + 4.40625, + -2.90625, + -0.69140625, + -1.5390625, + -1.5625, + -0.81640625, + 0.50390625, + 0.953125, + -3.296875, + -1.8515625, + 2.25, + 0.314453125, + 0.91796875, + -2.28125, + -0.059814453125, + -1.8515625, + 0.8515625, + -1.09375, + -1.46875, + 2.484375, + 0.5546875, + -1.0234375, + -1.2421875, + 0.19921875, + 0.09326171875, + 1.3125, + 2.421875, + 0.42578125, + -1.4921875, + 0.140625, + 3.5625, + -0.06982421875, + -1.3671875, + -3.390625, + 0.1533203125, + -0.6015625, + -0.5546875, + 4.40625, + 0.59375, + 0.486328125, + 1.453125, + 1.1875, + 2.21875, + -1.96875, + -0.98046875, + 0.84765625, + 1.53125, + -0.6640625, + -0.296875, + 1.5859375, + 3.40625, + -0.953125, + -1.109375, + 0.4453125, + -2.109375, + 1.8125, + -1.8515625, + 1.140625, + 0.125, + 2.203125, + -2.25, + -1.703125, + 1.0703125, + 0.78125, + 2.875, + 1.9375, + 0.83203125, + -1.6640625, + 2.65625, + -0.0308837890625, + 0.369140625, + 2.78125, + -1.984375, + -0.059326171875, + 1.03125, + 0.8671875, + -3.015625, + 0.64453125, + -0.038330078125, + -3.609375, + 0.416015625, + 2.53125, + 1.6953125, + 3.828125, + 2.15625, + 1.2109375, + -0.625, + 0.83984375, + 1.90625, + 1.21875, + 1.3203125, + -2.859375, + 0.87109375, + 0.73046875, + 2.046875, + -0.01165771484375, + -3.296875, + 0.2470703125, + 0.8203125, + -1.5390625, + 0.71875, + -0.875, + 2.046875, + -0.056884765625, + -3.125, + 4.6875, + 1.8671875, + -1.2890625, + -1.2578125, + 0.2099609375, + -1.484375, + 1.5703125, + -1.921875, + 0.81640625, + 1.703125, + -1.9609375, + -3.234375, + 2.546875, + 4.34375, + -3.296875, + -1.1953125, + 4.15625, + 0.5625, + -1.078125, + 0.054443359375, + -2.8125, + -0.21484375, + 0.208984375, + -1.421875, + -0.59375, + -1.390625, + 1.4765625, + -1.0625, + -5.21875, + 0.10693359375, + -2.296875, + 0.796875, + 0.69921875, + -2.078125, + 1.2109375, + -5.34375, + 0.12109375, + 2.296875, + 1.03125, + -1.7734375, + -0.54296875, + -2.546875, + -0.734375, + 1.640625, + 2.0, + -2.140625, + -0.9765625, + 0.470703125, + -0.3515625, + 0.61328125, + -0.365234375, + 1.6015625, + 0.392578125, + -0.98828125, + -2.53125, + -1.0234375, + -0.294921875, + 1.640625, + -1.6953125, + -1.3046875, + 0.9609375, + -1.359375, + -1.796875, + 0.66796875, + 0.45703125, + -2.6875, + 1.5234375, + -1.40625, + -0.71875, + -0.5859375, + -7.25, + -1.7109375, + -0.166015625, + -4.21875, + 2.8125, + -2.265625, + 1.734375, + -1.9296875, + 1.7734375, + -0.2333984375, + -0.1708984375, + -2.3125, + -0.050537109375, + -3.4375, + -0.81640625, + -2.015625, + -3.421875, + -0.73828125, + -2.5, + 1.5703125, + -2.859375, + 0.05908203125, + 4.46875, + -1.375, + -0.1357421875, + 0.0235595703125, + -1.828125, + -1.1953125, + 0.5859375, + 1.328125, + -1.0390625, + 0.92578125, + 0.8125, + 1.9453125, + 0.71875, + -0.193359375, + 1.1171875, + 3.1875, + -0.19921875, + -0.68359375, + -0.15625, + 3.265625, + 0.345703125, + 0.1845703125, + 4.375, + 1.5859375, + 0.7890625, + 4.34375, + 2.1875, + 0.87890625, + -2.59375, + 4.40625, + -2.21875, + 1.0859375, + -5.0625, + -0.314453125, + -1.6015625, + -1.359375, + 3.515625, + -0.435546875, + -0.0224609375, + -1.09375, + 0.1416015625, + 1.0234375, + 0.50390625, + 0.2578125, + 0.9765625, + 2.109375, + -2.90625, + 0.984375, + -0.8125, + 1.4375, + -1.5859375, + 1.2890625, + 3.921875, + -0.326171875, + 1.9921875, + 0.72265625, + -1.2421875, + 0.32421875, + -1.515625, + 0.82421875, + 0.2451171875, + -1.8359375, + -0.408203125, + -0.93359375, + 0.400390625, + -0.0191650390625, + -10.0625, + 3.140625, + 1.9765625, + 0.578125, + -0.03173828125, + -0.2412109375, + -0.671875, + 1.1328125, + -2.140625, + 2.953125, + 1.4921875, + -0.027099609375, + -0.8125, + 1.171875, + -1.0234375, + 1.328125, + 0.78125, + -1.53125, + -0.06884765625, + 0.74609375, + 0.44921875, + -1.390625, + -0.337890625, + -0.84765625, + 0.98046875, + -3.015625, + 1.0234375, + -1.109375, + -2.125, + 3.515625, + -0.76171875, + -0.69140625, + 0.56640625, + 1.921875, + -4.71875, + 2.125, + -0.003662109375, + -2.390625, + -0.79296875, + -6.5, + 1.4765625, + 0.019775390625, + -1.25, + -2.828125, + 2.359375, + -0.640625, + -2.09375, + 0.466796875, + 2.65625, + -0.26953125, + -2.40625, + 1.515625, + 1.703125, + -0.166015625, + -4.78125, + -1.1171875, + 4.03125, + 0.279296875, + 0.91796875, + -0.7109375, + -1.0859375, + -1.0859375, + -2.375, + -0.134765625, + -2.1875, + 2.84375, + 3.859375, + -0.75390625, + 0.2236328125, + 1.1953125, + -1.625, + -0.8984375, + 0.5625, + -2.28125, + -0.65625, + 0.5390625, + 0.73046875, + -2.375, + 0.80078125, + 2.609375, + -1.078125, + -0.609375, + 1.671875, + 0.1962890625, + 0.640625, + 0.609375, + 1.7421875, + 2.75, + -0.6796875, + -0.828125, + 0.56640625, + -1.1875, + -1.265625, + 2.46875, + -0.0233154296875, + 2.828125, + -5.09375, + 2.21875, + -1.3125, + 1.234375, + 4.15625, + 0.7265625, + 0.875, + 2.34375, + -0.296875, + -1.765625, + -2.234375, + 4.34375, + 0.03955078125, + -1.265625, + 0.94140625, + 3.703125, + 2.15625, + -1.6640625, + -1.1484375, + -2.796875, + 0.60546875, + 0.578125, + -1.5703125, + -3.03125, + -3.296875, + -1.3359375, + -0.78125, + -0.37890625, + 3.8125, + 2.90625, + 0.283203125, + -0.11865234375, + -0.6328125, + -0.4140625, + 0.5859375, + -3.796875, + 5.53125, + 0.81640625, + -1.5078125, + -0.369140625, + 1.84375, + 0.30859375, + -1.6875, + -0.26171875, + 0.71875, + -0.2236328125, + 1.921875, + 0.28515625, + 3.28125, + -2.125, + -2.734375, + 2.03125, + 3.859375, + 0.7734375, + -1.6328125, + -0.59375, + -1.640625, + 1.015625, + -1.171875, + 0.41015625, + -2.203125, + 1.0390625, + -0.224609375, + 3.40625, + 0.376953125, + -1.7109375, + 1.1875, + -2.96875, + 2.84375, + -0.05029296875, + 0.3984375, + 1.2890625, + 3.359375, + -3.015625, + 1.015625, + -3.3125, + -0.5703125, + -0.310546875, + 1.3203125, + -4.15625, + 1.484375, + -2.96875, + -1.2734375, + -2.578125, + -0.490234375, + 0.94140625, + -0.06298828125, + -0.32421875, + -1.046875, + 1.171875, + -3.515625, + -2.328125, + 1.2578125, + 0.47265625, + 3.40625, + 0.91015625, + 0.734375, + 0.8125, + -3.09375, + -1.0703125, + -2.859375, + 0.2734375, + 0.11474609375, + 1.4296875, + -0.1640625, + 2.21875, + -0.30859375, + -0.310546875, + -0.421875, + -1.1328125, + 1.53125, + -1.0546875, + -1.0390625, + 1.2109375, + -1.1953125, + -3.5625, + -0.482421875, + 0.51953125, + 1.390625, + 1.484375, + 0.0235595703125, + 0.275390625, + 0.298828125, + -0.1455078125, + -2.0625, + -1.6328125, + 1.6796875, + -0.259765625, + 0.67578125, + 3.015625, + 0.609375, + -1.1015625, + 4.15625, + -0.8984375, + 1.1796875, + 1.28125, + 0.0308837890625, + 0.87890625, + -0.80859375, + 1.7421875, + -0.8359375, + 1.46875, + -0.9921875, + -1.421875, + 0.056640625, + -1.5859375, + 1.671875, + 2.6875, + 1.046875, + -1.796875, + -1.9921875, + -1.4375, + 0.85546875, + 4.96875, + 2.03125, + -0.11474609375, + 0.1787109375, + -0.482421875, + 2.875, + 1.390625, + 2.46875, + -1.9375, + 2.296875, + -0.51953125, + -0.921875, + 0.1494140625, + 1.625, + 2.890625, + -1.109375, + 0.765625, + -2.90625, + -3.28125, + -0.5390625, + -0.51171875, + -2.09375, + -0.703125, + 2.328125, + -0.51953125, + 2.96875, + 0.28125, + 2.8125, + 1.8515625, + -0.09033203125, + 1.515625, + -0.12890625, + -0.65234375, + 1.5546875, + -2.0625, + -1.6171875, + 1.3125, + 0.103515625, + -0.09326171875, + 0.51171875, + -0.498046875, + 1.40625, + 1.8359375, + -0.96875, + 0.66796875, + 1.3984375, + -0.2490234375, + 2.859375, + 1.453125, + -0.8828125, + -0.66015625, + -1.9375, + 1.53125, + 0.5859375, + 1.046875, + -2.265625, + -0.037109375, + 3.28125, + -2.890625, + 0.90625, + 2.140625, + -0.056396484375, + 2.34375, + 1.1328125, + -1.5625, + 1.0546875, + 0.61328125, + 2.375, + 2.109375, + 0.65625, + 2.921875, + -0.07958984375, + 2.203125, + -5.125, + -2.640625, + 0.193359375, + 1.6328125, + -0.12060546875, + 3.09375, + -0.047119140625, + -1.1796875, + 1.6640625, + -3.609375, + 0.12109375, + -1.8046875, + 4.46875, + -0.765625, + 2.296875, + -4.4375, + 4.0625, + -0.09765625, + -2.15625, + -2.46875, + -0.93359375, + 0.11669921875, + 1.2421875, + -1.6640625, + -0.76171875, + 4.125, + 0.95703125, + -0.76953125, + 2.4375, + 1.625, + -1.671875, + 1.875, + -1.5390625, + 0.427734375, + -0.3359375, + -1.046875, + 3.875, + 4.8125, + -8.625, + -1.40625, + 4.59375, + 6.8125, + -0.031005859375, + -0.73046875, + -1.28125, + 0.6875, + -2.71875, + -1.59375, + 2.53125, + -0.9296875, + -0.93359375, + 1.859375, + 4.75, + -1.8125, + 0.578125, + -0.625, + 2.796875, + 4.28125, + 0.031982421875, + -1.6953125, + 0.60546875, + -0.08740234375, + 2.9375, + 1.65625, + -4.0, + -0.361328125, + 1.3515625, + 2.96875, + 1.7734375, + -0.1650390625, + 2.71875, + -2.515625, + -0.96484375, + 0.287109375, + -1.4765625, + -8.9375, + -1.90625, + -0.71484375, + 3.59375, + -2.5, + -1.1484375, + 0.9765625, + 0.205078125, + -0.462890625, + -4.0625, + -1.8125, + -0.322265625, + 2.40625, + -1.40625, + 1.2421875, + 0.3046875, + -1.6953125, + 1.796875, + 0.734375, + -0.8203125, + 3.40625, + 2.875, + 2.984375, + -2.46875, + 0.12890625, + 0.703125, + -1.2578125, + -3.34375, + -0.73828125, + 6.03125, + 0.27734375, + 0.2109375, + 0.8203125, + 0.85546875, + 3.703125, + -0.60546875, + 0.53515625, + -1.0625, + 1.515625, + -2.171875, + 1.359375, + 1.4921875, + -2.015625, + -0.041748046875, + 0.474609375, + 0.734375, + -0.72265625, + -2.515625, + -1.234375, + -0.3984375, + -8.375, + -0.94140625, + 1.7109375, + -1.8671875, + -1.0078125, + -3.140625, + 0.58203125, + 10.0, + 2.1875, + 0.77734375, + -0.04736328125, + 0.58203125, + 2.765625, + -2.09375, + 2.265625, + 0.7578125, + -0.34765625, + 0.98828125, + 0.875, + 0.318359375, + 1.171875, + 2.046875, + -0.98828125, + 0.53125, + 1.1875, + 3.171875, + -0.11279296875, + 2.53125, + 1.0546875, + -1.4765625, + 1.3359375, + 0.9140625, + 0.58984375, + 0.25, + -2.6875, + 1.6328125, + 0.08349609375, + 1.140625, + -0.71875, + -1.2734375, + -0.78125, + -0.0634765625, + -1.078125, + -1.3203125, + 3.265625, + 2.78125, + 1.640625, + -1.7890625, + 2.0625, + 1.78125, + 2.25, + -1.2734375, + 2.234375, + 3.453125, + -2.140625, + 1.09375, + -0.08837890625, + -1.7109375, + -1.2890625, + -2.875, + -0.330078125, + -0.73828125, + 0.765625, + 5.1875, + -0.54296875, + -0.52734375, + 0.58984375, + -1.1640625, + -2.328125, + -0.005126953125, + -0.515625, + 0.7109375, + 1.75, + -0.8046875, + -2.609375, + 3.296875, + 1.671875, + -0.380859375, + -1.1328125, + -0.29296875, + -1.296875, + -0.474609375, + 1.5390625, + 1.390625, + -0.421875, + 1.2734375, + 0.181640625, + -0.84375, + -1.4296875, + 0.9609375, + 2.21875, + -3.6875, + -0.82421875, + 0.2890625, + -4.625, + 0.474609375, + -0.0203857421875, + 0.33984375, + -1.640625, + -0.376953125, + 1.3828125, + -3.46875, + 1.6484375, + -4.0625, + 1.09375, + 0.14453125, + -1.265625, + 0.671875, + 4.4375, + -7.59375, + 0.50390625, + 2.6875, + -1.984375, + 1.8671875, + -0.294921875, + -1.6328125, + -2.40625, + 1.1875, + 1.453125, + -7.09375, + 1.4921875, + 7.3125, + 1.7109375, + 1.984375, + 0.85546875, + 1.78125, + -0.78125, + 0.2890625, + 1.0390625, + -1.109375, + 2.109375, + 0.0260009765625, + 1.9296875, + -6.3125, + 1.3515625, + -1.2734375, + 0.70703125, + -5.09375, + 0.443359375, + -1.1796875, + -0.60546875, + -3.921875, + -2.4375, + -4.78125, + -0.73828125, + 0.8671875, + -1.5078125, + -3.296875, + -0.0673828125, + 1.1640625, + 1.96875, + 1.78125, + -0.68359375, + 1.8515625, + 1.5546875, + -3.375, + 3.078125, + -0.5859375, + 4.65625, + 1.7421875, + -0.076171875, + -2.09375, + -0.60546875, + -0.0302734375, + 1.078125, + -3.34375, + 1.890625, + 2.125, + -1.5078125, + -0.49609375, + 1.640625, + -1.2109375, + 2.03125, + -0.1142578125, + 0.3359375, + -1.53125, + 4.09375, + 1.859375, + -0.26171875, + -0.78125, + -1.265625, + -1.609375, + 1.9140625, + 1.9765625, + 0.66796875, + -0.75390625, + 0.76953125, + -0.99609375, + -5.0625, + -4.34375, + -1.15625, + -2.375, + 0.91796875, + -0.578125, + 1.0546875, + -0.11376953125, + -3.46875, + -0.10791015625, + 0.052001953125, + 0.9375, + -3.578125, + 1.609375, + -0.453125, + 0.515625, + -1.203125, + 0.1728515625, + -0.62890625, + -3.421875, + -1.984375, + 0.7578125, + 1.3046875, + 2.921875, + -1.296875, + 0.05126953125, + -0.12451171875, + -1.5703125, + -1.1171875, + 2.359375, + 1.640625, + -1.546875, + 2.0, + 0.478515625, + 1.6484375, + 2.0, + -2.390625, + 0.8203125, + 0.494140625, + 1.3046875, + -2.78125, + -1.4296875, + -1.5234375, + -1.8046875, + -1.515625, + 0.490234375, + -1.6875, + -3.09375, + -2.828125, + -2.9375, + 0.1337890625, + 0.79296875, + 0.10888671875, + -2.484375, + 1.546875, + -0.408203125, + -2.46875, + 0.515625, + -3.21875, + 0.01483154296875, + -2.71875, + 1.3125, + 0.7890625, + -0.330078125, + -3.15625, + 0.7109375, + 0.71484375, + 2.921875, + 1.4921875, + -0.89453125, + 1.59375, + 0.96484375, + 1.515625, + 1.5078125, + 0.02099609375, + -0.90625, + 3.75, + 0.50390625, + 0.05615234375, + -1.28125, + -0.96875, + 3.828125, + -2.0625, + -1.1875, + 0.89453125, + -0.8359375, + -0.55859375, + -0.453125, + 1.21875, + 1.2109375, + -2.828125, + 3.8125, + -2.59375, + -0.5234375, + 0.50390625, + -3.203125, + -1.8203125, + 2.078125, + 2.78125, + 1.0078125, + 0.2421875, + -2.859375, + 0.5703125, + 0.4453125, + 1.703125, + -0.357421875, + 9.25, + 2.15625, + 0.00775146484375, + -0.43359375, + -0.9609375, + -0.66796875, + 2.46875, + 1.4375, + -2.90625, + -2.25, + 0.154296875, + -3.234375, + -1.515625, + 0.043212890625, + 3.609375, + -2.953125, + 2.046875, + -0.1904296875, + 2.21875, + 1.21875, + -0.482421875, + -3.359375, + -0.435546875, + 0.95703125, + -2.078125, + -1.9140625, + -1.7890625, + -2.265625, + 2.34375, + 2.0625, + 0.703125, + -1.515625, + -0.228515625, + 1.9296875, + 2.21875, + -0.55078125, + -2.5, + 2.546875, + 1.2578125, + 1.1953125, + -2.265625, + 1.3046875, + 4.875, + -1.234375, + 2.265625, + 0.8515625, + -2.859375, + -1.984375, + -1.34375, + 1.734375, + -3.59375, + 0.0966796875, + 2.421875, + -1.96875, + -0.6328125, + 3.40625, + -3.359375, + 0.6328125, + 1.140625, + -0.1865234375, + -2.609375, + -0.59765625, + 2.734375, + 1.28125, + -0.62890625, + 0.734375, + 1.84375, + 0.1337890625, + 1.796875, + -0.56640625, + 5.625, + 0.828125, + -1.9921875, + -3.484375, + 2.453125, + 1.90625, + -0.51953125, + 0.86328125, + 0.62109375, + -0.59765625, + 2.5, + -2.5, + 0.75, + 2.546875, + -3.703125, + 0.609375, + -1.2890625, + 0.90625, + -2.0625, + -6.4375, + -2.265625, + 0.2197265625, + 0.61328125, + 2.671875, + 2.859375, + -0.4453125, + 0.47265625, + -1.3125, + 3.1875, + -0.640625, + -2.203125, + 2.296875, + -3.046875, + 0.84375, + 0.69140625, + 2.625, + 0.1357421875, + 1.265625, + -2.515625, + 1.875, + 0.14453125, + -1.1796875, + 0.396484375, + -1.515625, + 0.97265625, + -0.76953125, + -5.15625, + -0.28515625, + -0.69140625, + 1.6640625, + 0.3671875, + 0.3359375, + -0.04296875, + 0.7578125, + -1.703125, + 1.828125, + 0.609375, + 0.03955078125, + 1.1171875, + 0.625, + 1.1171875, + -0.59375, + -2.828125, + -0.5390625, + 1.1328125, + 0.76171875, + -0.0947265625, + 3.796875, + -1.375, + 0.443359375, + 0.04833984375, + 1.265625, + -0.97265625, + 1.6875, + -2.484375, + 4.875, + 1.265625, + -0.057373046875, + -0.494140625, + 3.703125, + 0.4375, + 0.427734375, + -1.234375, + 0.06396484375, + 4.40625, + 0.2294921875, + -0.017822265625, + 0.8359375, + -2.21875, + 1.140625, + 0.349609375, + 1.515625, + 0.546875, + 0.0546875, + -2.953125, + -3.875, + -0.5859375, + 1.2578125, + 3.796875, + 0.71484375, + 1.4296875, + -0.21484375, + 1.1796875, + 3.53125, + -0.466796875, + 0.30078125, + -4.34375, + 1.4453125, + 1.609375, + 2.21875, + -0.2734375, + 0.30859375, + 1.4609375, + -1.0234375, + 0.8203125, + 1.125, + 0.4375, + -0.9140625, + 1.765625, + 1.9765625, + 0.349609375, + -2.046875, + 4.4375, + 1.65625, + 1.6328125, + 3.96875, + 1.703125, + -1.671875, + -0.7421875, + 2.5625, + -1.9296875, + -3.3125, + -4.8125, + 2.515625, + 0.003997802734375, + 1.0859375, + 1.5390625, + 0.765625, + 3.3125, + 0.2109375, + -0.64453125, + -0.6640625, + -0.91015625, + -1.765625, + 2.90625, + -0.70703125, + 0.5234375, + -0.205078125, + 2.125, + 2.078125, + -0.69140625, + 1.546875, + 0.080078125, + -1.3203125, + 1.5625, + -5.0625, + 0.083984375, + -1.6484375, + 0.76953125, + 0.99609375, + 0.71484375, + 1.671875, + -3.328125, + 1.515625, + -2.4375, + 0.042724609375, + -1.25, + 1.609375, + 0.72265625, + -1.1484375, + 0.89453125, + -0.5546875, + 3.109375, + 1.125, + 3.296875, + 2.34375, + 1.28125, + -3.984375, + 0.5078125, + 1.25, + -1.6796875, + 0.8125, + 2.8125, + -1.578125, + 1.390625, + 3.46875, + 2.421875, + 1.0625, + -1.8359375, + 3.78125, + 1.21875, + 2.234375, + 1.203125, + 0.298828125, + -1.5078125, + -0.3203125, + -0.83984375, + -0.7734375, + -0.890625, + -0.158203125, + -1.25, + 3.9375, + -2.875, + -0.28125, + 2.078125, + -1.7421875, + -0.353515625, + 0.76171875, + 0.5, + -1.765625, + 1.2109375, + 0.85546875, + 1.7421875, + -4.40625, + -0.1357421875, + 1.9765625, + -3.859375, + -2.734375, + -0.609375, + -3.1875, + -0.47265625, + -1.2578125, + -2.328125, + -1.7109375, + -4.75, + -3.484375, + -0.8203125, + 1.1015625, + -0.69140625, + -0.75, + -2.234375, + -0.4453125, + 2.71875, + -4.34375, + -0.8203125, + 1.0390625, + 1.71875, + 0.859375, + -1.28125, + 1.7734375, + -1.3046875, + 3.984375, + -1.1171875, + -0.54296875, + -1.28125, + 0.6796875, + -1.84375, + -3.265625, + 2.8125, + 1.0859375, + 2.578125, + 1.546875, + -1.46875, + -0.09033203125, + -0.625, + 0.80078125, + -0.59375, + 0.1982421875, + 0.2392578125, + 0.12158203125, + -1.0546875, + 1.625, + 0.283203125, + 0.11083984375, + 1.0546875, + -0.1630859375, + -2.984375, + -4.96875, + -1.546875, + -0.87109375, + 1.0390625, + 1.859375, + 1.15625, + -0.1220703125, + 0.6796875, + -0.83984375, + 1.09375, + -2.1875, + -1.8125, + 0.4765625, + 0.443359375, + -1.1953125, + 1.75, + 0.76171875, + 1.0078125, + 1.453125, + -2.671875, + -0.671875, + -0.072265625, + 0.490234375, + 1.3984375, + 1.40625, + 0.6171875, + 3.078125, + -0.875, + -5.53125, + -2.546875, + -2.96875, + -1.796875, + 3.328125, + 2.796875, + 2.65625, + 0.2431640625, + 0.68359375, + 1.15625, + -4.59375, + 0.060546875, + -0.859375, + -0.515625, + -2.296875, + -1.3125, + 0.11767578125, + 1.8515625, + 0.0286865234375, + -2.40625, + 1.953125, + -0.63671875, + 2.625, + -1.5390625, + 2.3125, + 2.0, + 1.671875, + 0.46875, + -3.484375, + 0.39453125, + 2.609375, + -1.375, + -3.84375, + -0.361328125, + 2.546875, + -1.0703125, + 2.0625, + 1.25, + 1.7578125, + 0.6171875, + 1.3359375, + -0.1513671875, + 0.453125, + 0.232421875, + 0.09326171875, + 2.515625, + 1.4375, + 1.5078125, + -3.015625, + 0.474609375, + -0.228515625, + 0.07177734375, + -1.078125, + -0.86328125, + 1.1640625, + 3.796875, + -3.109375, + -0.42578125, + -1.984375, + -0.482421875, + -2.1875, + -4.78125, + 0.90625, + -1.46875, + 1.28125, + 3.265625, + 2.421875, + -0.59765625, + 2.0, + 0.55078125, + 0.765625, + 0.28125, + 0.03564453125, + -3.828125, + -1.875, + -0.20703125, + 0.51953125, + 1.4765625, + 3.9375, + -0.5859375, + -0.007354736328125, + 2.6875, + 1.203125, + 0.244140625, + -1.6875, + -2.796875, + -0.42578125, + 0.8359375, + -2.84375, + -0.859375, + -1.7109375, + 0.435546875, + 0.87890625, + -0.318359375, + 0.2080078125, + -0.50390625, + 1.34375, + -3.390625, + 1.8046875, + -0.181640625, + -2.515625, + -0.416015625, + -1.421875, + 0.171875, + 0.83203125, + 1.578125, + 0.96875, + -1.3984375, + 0.26953125, + -1.0, + -1.453125, + 2.859375, + 0.53125, + -2.703125, + 2.890625, + 1.4453125, + 0.1171875, + -0.2578125, + -0.6171875, + -0.80078125, + -0.4296875, + -0.765625, + -0.0140380859375, + -0.2255859375, + 0.98828125, + 3.65625, + -0.0242919921875, + -1.6015625, + 4.84375, + -0.765625, + -1.4921875, + 1.6015625, + -1.28125, + 0.1494140625, + 0.765625, + 1.0859375, + 0.6015625, + -1.5078125, + -3.828125, + -3.40625, + 1.7734375, + -1.203125, + -1.21875, + -0.03173828125, + 0.546875, + 0.1328125, + -2.34375, + 1.2421875, + 1.1328125, + -2.296875, + 0.609375, + 1.7109375, + -2.375, + 0.2060546875, + -3.203125, + 0.154296875, + -0.478515625, + 1.8359375, + -0.7578125, + -4.78125, + 0.87109375, + 4.75, + -0.5390625, + -1.09375, + 0.388671875, + 0.5390625, + -1.046875, + -6.1875, + -0.875, + -5.375, + -2.28125, + -0.5703125, + -0.150390625, + 0.75390625, + -1.2578125, + 0.09228515625, + -0.64453125, + 1.34375, + -0.9375, + -2.03125, + 1.2734375, + 0.3828125, + 0.03955078125, + 1.78125, + -0.98046875, + -2.421875, + 1.15625, + 0.984375, + -1.2890625, + -2.0, + -0.302734375, + 0.921875, + 0.23828125, + 1.7421875, + -2.28125, + 0.73828125, + 0.353515625, + -0.011474609375, + 1.6875, + 1.3203125, + 1.9921875, + 3.96875, + 12.0625, + 0.9765625, + -0.443359375, + -0.171875, + -1.390625, + -1.3203125, + 0.2294921875, + -1.3203125, + -2.109375, + -0.08056640625, + -2.921875, + -1.59375, + -0.2470703125, + -0.2490234375, + -0.48046875, + -0.373046875, + 0.314453125, + 0.66015625, + 0.703125, + 3.203125, + 2.734375, + 0.5390625, + 2.0625, + -3.546875, + 1.390625, + 1.796875, + 0.271484375, + 1.0625, + 0.55078125, + 2.359375, + 0.64453125, + -0.640625, + -1.5, + 2.390625, + 2.4375, + -0.47265625, + 0.6171875, + -1.765625, + 2.96875, + 0.16796875, + 2.859375, + 1.1796875, + -1.46875, + -0.58203125, + 3.640625, + -0.88671875, + -2.953125, + 0.474609375, + -1.5625, + 0.76171875, + -3.0625, + -1.125, + 0.3359375, + 1.390625, + 0.69140625, + -1.375, + -1.3671875, + -0.1474609375, + -0.4765625, + 2.265625, + 1.03125, + -0.1494140625, + -0.2578125, + -4.1875, + -2.359375, + -0.91015625, + 0.7265625, + -0.59375, + 0.80859375, + 1.765625, + 1.8671875, + -1.515625, + -0.46484375, + 4.6875, + 0.640625, + 2.4375, + 2.828125, + 1.2734375, + 2.90625, + 1.0390625, + -1.46875, + 3.171875, + -0.1435546875, + 4.0, + -0.79296875, + 3.25, + -1.4765625, + -3.359375, + -0.69921875, + -1.984375, + 0.5703125, + -1.328125, + -0.64453125, + 0.6328125, + -0.734375, + 4.90625, + 0.96875, + 2.0625, + -0.1884765625, + 0.99609375, + -2.359375, + -3.75, + 0.2041015625, + -0.9296875, + 1.703125, + 1.796875, + -0.96484375, + -0.4375, + -1.0, + 0.76953125, + -0.9453125, + 2.5, + 0.4375, + 1.75, + -0.41796875, + 1.9765625, + 4.71875, + 2.0625, + 0.91015625, + -0.95703125, + 0.349609375, + 0.0419921875, + -1.2734375, + 1.1328125, + 0.07373046875, + -1.8984375, + 0.17578125, + -0.341796875, + -0.78125, + -6.09375, + -2.265625, + -1.8125, + 1.25, + -2.390625, + 0.703125, + -0.64453125, + -1.7734375, + -0.74609375, + 4.21875, + 0.365234375, + 0.5, + -2.390625, + 0.921875, + 1.828125, + -4.625, + -0.78515625, + -0.76953125, + 2.640625, + 1.28125, + 0.8671875, + 0.6953125, + 2.40625, + -0.9375, + 0.28125, + 1.9765625, + 2.234375, + 0.022216796875, + -1.0390625, + 0.4296875, + -2.046875, + -7.03125, + 2.40625, + 0.57421875, + -0.1728515625, + 1.6796875, + -3.203125, + -0.2734375, + -1.1171875, + 0.76953125, + 2.09375, + 0.97265625, + -1.71875, + -1.484375, + -0.99609375, + 4.1875 + ], + "index": 0, + "object": "embedding", + "raw_output": null + } + ], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 6, + "total_tokens": 6, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/d10fc0f9ac66.json b/tests/integration/recordings/responses/d10fc0f9ac66.json new file mode 100644 index 000000000..d85565035 --- /dev/null +++ b/tests/integration/recordings/responses/d10fc0f9ac66.json @@ -0,0 +1,4135 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": "This is the first text", + "encoding_format": "float" + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [ + { + "embedding": [ + 3.921875, + 2.125, + -1.15625, + -5.25, + 1.9921875, + 2.0, + -4.0625, + 2.515625, + -3.234375, + 1.171875, + -5.8125, + 2.546875, + 7.0625, + -1.671875, + 2.640625, + -1.3125, + 1.7734375, + 3.15625, + 2.859375, + 5.03125, + -1.3359375, + 5.78125, + 1.40625, + -2.390625, + 2.640625, + 2.265625, + -3.328125, + -0.6953125, + 0.7578125, + 3.203125, + -0.8203125, + 1.53125, + 2.09375, + 4.65625, + -2.8125, + 2.796875, + -1.5859375, + -1.6640625, + 2.484375, + -1.1953125, + -1.96875, + -1.046875, + -0.419921875, + -0.0260009765625, + -2.328125, + 1.359375, + -1.703125, + -0.53125, + 4.21875, + 0.416015625, + 0.7734375, + -2.9375, + 1.3203125, + -0.0240478515625, + -0.07275390625, + 0.73046875, + -2.859375, + 0.40625, + -3.46875, + 0.04052734375, + -7.84375, + 1.03125, + 2.296875, + -1.59375, + 0.37890625, + 2.359375, + 1.2109375, + 0.83984375, + 3.03125, + 1.53125, + 1.609375, + -1.2734375, + 1.9296875, + 1.3515625, + -1.1015625, + -2.25, + -4.34375, + -4.75, + -0.875, + 4.375, + 1.0234375, + 0.671875, + -1.7890625, + -1.375, + -0.353515625, + -2.328125, + 1.6953125, + -2.03125, + 0.60546875, + -1.78125, + -0.75, + -0.828125, + 0.06396484375, + 2.875, + -0.01556396484375, + -0.5390625, + -3.390625, + -2.78125, + -2.640625, + -0.095703125, + 3.15625, + 2.015625, + -2.640625, + 0.6953125, + 1.453125, + -0.0162353515625, + -2.078125, + 1.625, + -2.5, + -1.0078125, + 1.96875, + 0.765625, + 3.109375, + 2.6875, + -3.25, + -1.3671875, + -0.1875, + -0.90234375, + 0.443359375, + 2.609375, + 2.765625, + -2.28125, + -4.53125, + -0.400390625, + 4.3125, + -3.921875, + 0.337890625, + 0.310546875, + 0.318359375, + -0.94921875, + 1.3828125, + -3.359375, + 0.310546875, + -2.140625, + -2.03125, + 0.287109375, + -1.2890625, + -1.09375, + -2.5, + -0.63671875, + -1.203125, + -0.54296875, + 2.53125, + -2.0625, + -1.4609375, + 5.21875, + -1.546875, + 2.671875, + 1.515625, + 2.65625, + 2.234375, + -0.70703125, + -1.0234375, + -3.578125, + -0.07666015625, + 1.0546875, + -2.859375, + 2.5, + 2.25, + 0.30078125, + -2.59375, + 0.29296875, + 2.0625, + 0.072265625, + 0.46875, + -1.375, + 2.96875, + -1.65625, + 3.125, + 1.4921875, + 0.68359375, + 1.2578125, + -3.703125, + 3.515625, + 2.875, + -2.484375, + -1.5703125, + -2.734375, + 3.28125, + 3.703125, + -0.0478515625, + 2.234375, + 0.9609375, + 1.3984375, + 1.5234375, + 3.078125, + -0.5078125, + -0.431640625, + -0.0712890625, + 2.46875, + 3.0625, + -2.4375, + -0.353515625, + 1.046875, + -1.609375, + 1.3203125, + 0.87109375, + -0.74609375, + 1.0546875, + -1.8359375, + 7.5, + -4.90625, + 0.5, + 0.416015625, + -2.390625, + -1.2109375, + -1.8203125, + 1.765625, + 1.0703125, + -4.0625, + -0.69921875, + -0.6171875, + 1.8359375, + 3.703125, + 0.9453125, + -1.1640625, + 1.53125, + -1.5859375, + -0.609375, + 1.6015625, + 1.7734375, + -1.0625, + -1.234375, + -0.341796875, + -3.875, + -7.34375, + 0.34765625, + -0.423828125, + -0.474609375, + -3.171875, + 2.5625, + -3.796875, + -0.478515625, + -1.6875, + -1.0859375, + -3.953125, + 0.35546875, + -1.609375, + 0.0260009765625, + 1.7265625, + -0.53125, + 1.2734375, + -0.46484375, + -1.1484375, + 1.78125, + -0.54296875, + -4.65625, + -3.46875, + 1.578125, + -3.46875, + -0.625, + 0.314453125, + -1.9453125, + -0.33984375, + -2.453125, + -2.4375, + 0.353515625, + -1.71875, + -0.337890625, + 2.984375, + 0.56640625, + -0.54296875, + -0.388671875, + 2.078125, + -2.296875, + 0.12890625, + -2.484375, + -1.953125, + -0.42578125, + 0.4375, + 0.0142822265625, + -4.1875, + -1.8203125, + 2.453125, + 0.71875, + 2.171875, + 3.15625, + -0.72265625, + -1.375, + -0.146484375, + 1.2578125, + -2.296875, + 3.0625, + -5.78125, + -0.50390625, + -0.46484375, + 0.73828125, + 1.84375, + -3.046875, + 2.265625, + 1.40625, + 4.84375, + 0.55859375, + 3.578125, + 0.703125, + 0.609375, + -3.046875, + -3.046875, + -0.9296875, + 1.0234375, + -3.03125, + -0.26171875, + -0.326171875, + 1.0546875, + -1.1640625, + -0.32421875, + -2.28125, + 2.265625, + 1.609375, + -1.3046875, + -3.5625, + -1.609375, + 1.5078125, + -1.484375, + -1.09375, + -0.61328125, + 0.78515625, + -2.5625, + -1.328125, + 2.671875, + -1.875, + -0.80859375, + -1.5703125, + 1.0, + -0.37890625, + 0.7578125, + -2.03125, + 0.400390625, + -3.65625, + 0.640625, + -0.061279296875, + -1.109375, + -1.6171875, + 2.359375, + -0.10791015625, + -0.004058837890625, + 0.07275390625, + -1.1875, + 5.46875, + -0.34375, + 1.6796875, + -2.734375, + 1.1015625, + -0.318359375, + 0.0546875, + 0.337890625, + 2.875, + -1.21875, + -1.6015625, + 1.0703125, + -4.125, + 1.7109375, + 6.21875, + 3.125, + -0.0654296875, + -0.42578125, + -3.3125, + 4.21875, + 2.734375, + -0.5546875, + -1.65625, + 0.87109375, + 2.703125, + -3.15625, + 0.5390625, + 0.34375, + 1.4140625, + -1.203125, + -4.34375, + -0.0198974609375, + -2.265625, + 1.1875, + -0.11669921875, + -2.265625, + 0.02490234375, + -0.283203125, + 1.03125, + -4.28125, + 0.1875, + -0.59765625, + 0.453125, + -6.40625, + 1.125, + 0.86328125, + -3.25, + 4.5625, + -1.6953125, + 1.7265625, + 1.546875, + 0.26953125, + -2.71875, + -3.5, + 1.765625, + 0.470703125, + -2.4375, + 1.1640625, + 1.1953125, + -2.6875, + -5.4375, + 1.90625, + 3.96875, + 0.1748046875, + 2.453125, + 2.59375, + -0.44140625, + 1.6015625, + -0.8515625, + 1.140625, + -1.359375, + 2.1875, + -3.984375, + -0.2431640625, + 1.421875, + -1.0078125, + 1.21875, + 1.8671875, + 1.8046875, + 1.6953125, + -1.2578125, + -1.953125, + -0.90234375, + 4.28125, + -1.7265625, + 0.67578125, + -3.953125, + 1.9140625, + 3.671875, + 1.7265625, + 2.71875, + -2.25, + -1.390625, + -1.53125, + -1.765625, + -1.1328125, + 0.240234375, + 1.7109375, + 2.515625, + 1.5, + 3.53125, + -2.609375, + 3.046875, + 0.6171875, + 1.140625, + 3.140625, + 2.046875, + 1.0078125, + -2.171875, + -0.5625, + -3.46875, + 1.5703125, + -1.8046875, + 2.6875, + -1.2734375, + 0.0302734375, + -3.0625, + -0.76953125, + -0.75, + -0.734375, + -0.416015625, + -0.07421875, + 1.1484375, + -2.5625, + -0.212890625, + -1.0859375, + 0.89453125, + -0.10107421875, + 2.640625, + -2.90625, + -1.9609375, + 0.0791015625, + -0.7109375, + 0.291015625, + -2.046875, + -2.15625, + -1.546875, + 3.609375, + 0.54296875, + -1.015625, + 0.06298828125, + -1.4765625, + -1.7421875, + -3.5625, + -2.765625, + -5.875, + 2.28125, + 3.796875, + 0.9765625, + -1.0859375, + -1.640625, + 1.0625, + -3.609375, + 0.408203125, + 2.5, + -1.3671875, + 2.375, + -0.89453125, + 2.625, + -0.984375, + 1.78125, + 0.70703125, + 0.1591796875, + -3.953125, + -1.328125, + -0.92578125, + -3.828125, + 2.703125, + 3.84375, + 2.90625, + 0.06640625, + -2.703125, + 1.6484375, + -3.296875, + -1.9921875, + -0.15234375, + -2.765625, + -0.30078125, + -0.287109375, + -1.9609375, + 2.015625, + 3.34375, + -2.09375, + -0.74609375, + -2.84375, + -2.140625, + 1.6015625, + 1.5625, + 0.72265625, + -1.6328125, + 3.09375, + 0.234375, + -3.203125, + 0.341796875, + -0.77734375, + 2.328125, + -1.4375, + -0.7421875, + 0.1572265625, + 0.1298828125, + 1.2421875, + 0.326171875, + -2.3125, + 3.28125, + -0.66015625, + -2.28125, + 0.466796875, + 6.34375, + -0.388671875, + -1.8984375, + 0.6953125, + 0.357421875, + -0.7578125, + 3.5, + 5.96875, + -0.65234375, + 0.30078125, + 1.1015625, + -1.7265625, + 0.54296875, + -1.828125, + 0.48046875, + 1.578125, + -0.546875, + -1.03125, + -0.91796875, + -3.0625, + -2.6875, + 0.322265625, + 1.4140625, + 1.1953125, + 1.5078125, + -0.90625, + 0.93359375, + 1.234375, + 4.8125, + -1.2421875, + 0.74609375, + -1.0, + 2.6875, + -1.1875, + -1.3671875, + 1.9453125, + -0.205078125, + 2.21875, + 0.71484375, + 0.380859375, + -3.78125, + 0.96875, + -3.328125, + 3.15625, + -3.75, + -0.57421875, + -0.00396728515625, + 1.4609375, + -2.375, + -2.703125, + 0.796875, + 0.059814453125, + -6.90625, + -0.81640625, + -0.2236328125, + -1.1484375, + -2.4375, + 0.15234375, + 1.25, + 0.2470703125, + 3.21875, + 0.1376953125, + -3.34375, + 3.84375, + -4.3125, + -1.28125, + 4.0625, + -0.01220703125, + 0.828125, + -2.5625, + 0.205078125, + -0.5, + 0.12890625, + 1.7421875, + 5.53125, + -1.65625, + -3.421875, + 1.3203125, + 0.5859375, + 0.2197265625, + 2.453125, + 0.31640625, + 0.71875, + -1.609375, + -0.388671875, + -2.140625, + 0.84765625, + 1.484375, + -5.09375, + -2.546875, + 1.15625, + 1.09375, + -0.94140625, + -4.125, + 2.59375, + 3.515625, + -1.4609375, + 0.3515625, + 2.484375, + 0.423828125, + 1.4609375, + 1.046875, + 2.171875, + -2.453125, + 3.765625, + -0.038330078125, + -1.5234375, + 0.5546875, + 1.6015625, + 0.0947265625, + -2.4375, + 3.03125, + 1.3671875, + 0.61328125, + -1.984375, + -1.09375, + -0.89453125, + -2.328125, + -1.75, + -1.5, + 0.75, + 0.03857421875, + 1.3828125, + 0.484375, + -4.5625, + -2.34375, + -0.8515625, + -0.482421875, + 0.059326171875, + 4.375, + -2.84375, + 4.9375, + 0.396484375, + 2.140625, + -0.5546875, + 0.1953125, + -2.34375, + -5.90625, + -0.416015625, + -1.2734375, + -3.0625, + -3.0, + 0.91015625, + 1.703125, + 0.052734375, + 4.125, + -1.25, + 0.361328125, + -0.314453125, + 2.859375, + 1.125, + -1.359375, + -1.765625, + 1.6484375, + -1.390625, + 0.984375, + 1.9921875, + -1.9140625, + -1.4609375, + -2.140625, + -1.71875, + -3.0, + 1.8828125, + -3.703125, + -3.625, + -2.171875, + 2.203125, + -0.9765625, + 0.48828125, + -1.4375, + -3.765625, + 1.6015625, + 0.1298828125, + 0.62890625, + -0.828125, + 4.75, + 3.671875, + -3.109375, + 2.421875, + -1.8359375, + -1.8359375, + -2.453125, + 2.65625, + 2.59375, + -3.671875, + -0.466796875, + 2.671875, + -0.62109375, + 2.578125, + -2.046875, + 1.328125, + 1.4375, + 0.08447265625, + 0.62890625, + -1.2734375, + -2.6875, + 0.91015625, + -1.953125, + 0.9375, + -1.765625, + -0.27734375, + 0.5859375, + -4.25, + 0.36328125, + 0.1552734375, + 2.078125, + 0.58984375, + -2.1875, + -1.1875, + 2.9375, + 2.984375, + -1.8359375, + 0.34375, + 3.453125, + 0.71484375, + -3.859375, + 1.46875, + -0.84375, + 1.4765625, + 3.5, + 0.2119140625, + 1.359375, + 2.3125, + 2.421875, + -2.6875, + 2.390625, + -1.78125, + 1.0390625, + 0.859375, + 0.224609375, + -2.5625, + -1.5234375, + 2.359375, + 0.49609375, + 1.75, + 1.0, + 2.453125, + 1.6953125, + 0.48046875, + -2.125, + -0.65625, + -2.140625, + -2.25, + -0.59765625, + 2.75, + -2.296875, + -0.64453125, + 5.28125, + 2.078125, + 2.546875, + -0.75, + 0.8828125, + 0.244140625, + -1.3125, + 1.3046875, + -2.09375, + 1.40625, + -1.96875, + 0.0201416015625, + 0.1396484375, + 2.34375, + -1.4921875, + -0.765625, + -0.36328125, + 1.265625, + 1.9609375, + 5.75, + -0.37109375, + 1.6328125, + 0.00860595703125, + 0.80859375, + -1.90625, + -2.5625, + -2.15625, + -1.578125, + 0.275390625, + -0.2109375, + 4.65625, + 3.6875, + -1.96875, + 0.2158203125, + 1.3515625, + 1.7109375, + -1.1328125, + -1.046875, + -1.1171875, + 0.271484375, + -0.314453125, + 1.5546875, + -1.9609375, + -0.1982421875, + 3.421875, + 0.015869140625, + 0.423828125, + 2.046875, + -0.71484375, + -0.5703125, + -1.296875, + -1.0390625, + 0.33984375, + 2.4375, + -1.5859375, + 0.6640625, + 1.375, + 1.875, + 1.4296875, + -3.421875, + 0.96484375, + 0.53515625, + -2.859375, + 2.890625, + 1.484375, + -0.000751495361328125, + -2.09375, + 2.5625, + -0.12890625, + -0.443359375, + 3.375, + 0.240234375, + -1.375, + -3.0625, + -1.171875, + -1.1640625, + -2.84375, + -2.765625, + 0.53515625, + -0.73046875, + -1.8671875, + -2.234375, + 0.255859375, + -0.56640625, + -1.9765625, + 2.453125, + 1.1328125, + -2.578125, + -0.310546875, + 0.52734375, + 0.1943359375, + 0.1728515625, + 1.2890625, + 3.5, + -1.3125, + -1.03125, + 1.7578125, + 1.0859375, + 1.8984375, + -0.37890625, + -1.96875, + 1.4296875, + -0.35546875, + 2.375, + -3.734375, + 0.01544189453125, + 0.365234375, + -0.5078125, + -1.984375, + 1.6484375, + -2.90625, + -0.12158203125, + 0.94140625, + 5.84375, + -0.83203125, + -2.0625, + -0.421875, + -0.76953125, + 0.76171875, + -2.953125, + 1.6796875, + 0.064453125, + -0.0595703125, + 0.4375, + 0.2158203125, + -0.18359375, + 2.21875, + -2.171875, + -1.328125, + 0.88671875, + 3.125, + -0.87109375, + 1.421875, + 2.609375, + -0.482421875, + 2.0, + 0.431640625, + -0.78125, + -5.84375, + -2.0625, + 0.61328125, + 0.02001953125, + -1.1953125, + -0.68359375, + -1.5625, + -1.25, + 3.359375, + -0.80859375, + -2.484375, + -1.546875, + 3.203125, + -2.734375, + 2.15625, + -2.03125, + 0.326171875, + -0.88671875, + 0.36328125, + 0.2119140625, + 0.62890625, + -3.296875, + -0.33984375, + 1.9765625, + 2.890625, + -0.93359375, + 1.765625, + 0.7578125, + -0.375, + -0.0537109375, + -0.5390625, + -0.0888671875, + 0.69140625, + -0.515625, + 1.2109375, + -3.203125, + 0.5859375, + -0.1953125, + -4.96875, + -0.028076171875, + -1.765625, + -0.984375, + -2.359375, + 1.109375, + 0.921875, + -0.203125, + 4.5, + 1.7890625, + -3.3125, + -2.671875, + -0.5625, + -0.51953125, + 0.07763671875, + 2.640625, + 1.3671875, + 4.25, + -0.70703125, + -2.359375, + -5.03125, + 11.4375, + 0.62890625, + -2.359375, + 0.6953125, + 2.296875, + 4.9375, + -1.9609375, + 2.484375, + 0.408203125, + 2.109375, + 1.0859375, + 1.15625, + 3.546875, + -1.53125, + -1.015625, + 1.0078125, + -3.265625, + -0.8515625, + -1.5, + 0.98828125, + -2.09375, + 2.65625, + 3.0, + 1.25, + 3.40625, + -1.6171875, + -0.59375, + -2.78125, + -0.1787109375, + -4.5, + 1.4375, + 0.83203125, + -3.0625, + -0.275390625, + -0.72265625, + -1.5390625, + 1.4375, + 0.6953125, + -1.2109375, + 2.453125, + -0.6171875, + -0.93359375, + 3.15625, + 0.07958984375, + -0.6171875, + -0.2431640625, + 0.251953125, + 1.4453125, + -2.84375, + 2.875, + -0.76953125, + -1.8828125, + -0.00982666015625, + 0.9609375, + -1.265625, + 0.66796875, + 0.23828125, + 0.296875, + -1.296875, + -0.94140625, + -0.61328125, + 0.421875, + 2.515625, + -1.046875, + 2.296875, + -0.2734375, + 0.83984375, + -2.0, + 0.98046875, + -1.4453125, + -3.484375, + 1.109375, + -1.359375, + 2.671875, + -2.65625, + -3.28125, + -0.86328125, + -1.046875, + -10.375, + -0.13671875, + -0.03515625, + 1.4140625, + 2.359375, + -1.3828125, + -2.796875, + -2.828125, + -1.421875, + -0.60546875, + -0.91015625, + -2.0625, + -2.484375, + -1.03125, + -1.8359375, + -1.9375, + 1.1484375, + 1.515625, + 2.21875, + 2.265625, + 1.03125, + 0.1865234375, + 2.265625, + -0.373046875, + -2.09375, + 2.203125, + 3.375, + -2.234375, + 1.8203125, + 3.3125, + -2.609375, + 3.703125, + -0.1943359375, + 5.0, + -2.9375, + -0.78515625, + -4.375, + -3.921875, + 2.28125, + 1.484375, + -0.361328125, + -1.1484375, + -1.8046875, + 1.0859375, + 0.8828125, + 3.875, + -0.1552734375, + 2.140625, + 2.0625, + 3.34375, + 3.125, + 0.51171875, + -0.263671875, + -4.21875, + 1.984375, + -0.28515625, + -3.46875, + 1.6796875, + -1.5390625, + 0.2236328125, + -1.3203125, + -0.4921875, + -4.96875, + 0.90234375, + 3.015625, + -2.6875, + 5.46875, + 5.03125, + 0.83203125, + 2.96875, + 2.859375, + -0.322265625, + -0.40234375, + -1.3203125, + 2.078125, + 0.984375, + 1.5859375, + -9.8125, + 1.6171875, + -0.03173828125, + -0.396484375, + 0.07373046875, + -1.3203125, + 0.21875, + 2.203125, + 0.62109375, + -0.1953125, + 0.302734375, + -1.3828125, + 1.34375, + -2.59375, + -0.1689453125, + 2.671875, + 0.265625, + -1.6015625, + 0.95703125, + 1.46875, + 0.8671875, + 0.48046875, + -0.2265625, + -0.068359375, + 2.296875, + -1.609375, + -2.71875, + -1.453125, + 0.25, + -0.0771484375, + 1.8046875, + -0.283203125, + 0.8046875, + -1.7734375, + -1.453125, + 2.78125, + -0.21484375, + -1.0859375, + -3.484375, + 3.03125, + 0.443359375, + 0.98046875, + -1.890625, + -0.7734375, + -0.07958984375, + -1.890625, + -1.2890625, + -1.7734375, + 1.671875, + -1.0, + -1.4453125, + 2.125, + 1.1171875, + -3.203125, + 0.150390625, + 0.515625, + -0.84375, + -2.046875, + -0.423828125, + -0.1357421875, + 0.6171875, + -3.328125, + -0.4765625, + -0.8515625, + 1.703125, + -2.734375, + 0.3046875, + 1.3046875, + 0.75, + -2.515625, + -5.21875, + -0.10009765625, + -1.1328125, + -1.4296875, + -0.953125, + 1.3203125, + 1.109375, + -1.1875, + -6.75, + 0.07666015625, + 1.359375, + -3.578125, + -1.6015625, + 1.515625, + -0.89453125, + 2.359375, + -0.75, + -5.8125, + 0.341796875, + 0.6953125, + 2.28125, + 2.265625, + -0.66015625, + 0.1572265625, + -1.6484375, + -2.171875, + 1.21875, + -1.7265625, + -0.306640625, + 5.03125, + -1.8203125, + -0.5, + 0.8125, + -2.53125, + -1.046875, + -1.546875, + -1.9609375, + 2.65625, + -0.25390625, + -0.78125, + -3.296875, + -1.359375, + -1.296875, + 1.78125, + 4.0, + 0.06201171875, + 1.140625, + -1.6484375, + 0.421875, + -0.76953125, + -0.07177734375, + 1.8515625, + -1.7265625, + -1.2109375, + -0.1767578125, + -3.40625, + 2.359375, + 1.734375, + -1.546875, + -3.59375, + 0.69140625, + 1.703125, + 1.8359375, + 1.5234375, + -2.625, + 0.5078125, + 1.390625, + -1.0703125, + -1.0703125, + 2.375, + 0.7265625, + 1.1640625, + 2.984375, + -0.953125, + 1.0234375, + -0.8125, + -0.8671875, + -0.169921875, + 0.94921875, + -2.25, + 0.333984375, + -1.125, + 0.0849609375, + 2.15625, + 2.375, + 1.4609375, + 1.3046875, + 0.5234375, + -2.421875, + 0.91796875, + 0.87109375, + 4.625, + 1.375, + -0.2578125, + 0.031982421875, + -0.1728515625, + -0.63671875, + -1.203125, + -0.51171875, + 1.0625, + -2.453125, + -2.890625, + 0.330078125, + 0.74609375, + -0.71484375, + 2.03125, + 1.265625, + 0.46484375, + 2.28125, + -1.015625, + -1.734375, + 0.2158203125, + 1.109375, + 3.125, + 1.765625, + -0.9140625, + 0.9609375, + 8.125, + -1.578125, + 2.8125, + -1.796875, + -2.84375, + -0.32421875, + 1.2265625, + -1.6796875, + 2.9375, + 1.4921875, + 0.703125, + -1.8359375, + 3.28125, + -3.46875, + 3.421875, + 4.875, + 1.671875, + 2.78125, + 3.359375, + -4.0, + 0.99609375, + -1.21875, + -6.78125, + -1.8828125, + 2.484375, + 4.1875, + 0.5703125, + -1.171875, + -0.208984375, + 2.96875, + -0.2119140625, + 2.015625, + 2.078125, + 1.1875, + 0.7578125, + -0.9140625, + 1.8515625, + -3.203125, + -0.09814453125, + 1.75, + -0.734375, + 1.3828125, + -2.109375, + -1.7578125, + -1.1640625, + 1.0703125, + 1.8515625, + -0.68359375, + 2.28125, + 0.62109375, + 1.2421875, + 0.296875, + 0.0233154296875, + -0.421875, + 0.10791015625, + 0.310546875, + 2.28125, + -1.796875, + 0.93359375, + 3.375, + -1.5234375, + -1.953125, + 0.71484375, + -0.318359375, + 0.08447265625, + 1.671875, + -3.75, + 1.3671875, + -1.2109375, + 0.78125, + 0.64453125, + 2.5625, + -1.75, + -0.54296875, + -0.47265625, + 4.28125, + -0.1884765625, + 3.84375, + -3.578125, + -0.5234375, + 0.2255859375, + 0.421875, + 1.9765625, + 0.625, + -1.65625, + -1.984375, + -1.984375, + 2.34375, + 2.359375, + 0.6171875, + -0.030029296875, + 0.9375, + -0.65234375, + 2.9375, + -1.5546875, + 0.890625, + -2.890625, + 0.4296875, + 0.609375, + 0.06396484375, + -0.7734375, + 0.63671875, + -0.953125, + -1.375, + 0.27734375, + 0.26953125, + -0.1904296875, + -2.359375, + 0.87890625, + -1.28125, + -0.5078125, + 7.09375, + 16.125, + 1.6953125, + -4.375, + 0.0181884765625, + 2.359375, + -1.828125, + -2.125, + -0.6484375, + -0.66015625, + -4.03125, + -2.625, + -1.765625, + 1.984375, + -0.36328125, + -0.107421875, + 0.93359375, + -0.08056640625, + -1.125, + -0.19140625, + -1.8125, + 1.2578125, + 0.0322265625, + 1.1171875, + 0.5546875, + -2.9375, + -1.953125, + 0.87109375, + 0.353515625, + -0.3984375, + 0.11474609375, + -1.625, + 2.125, + -1.3125, + 0.5703125, + -0.9765625, + -1.1484375, + -0.8125, + -0.1328125, + 7.75, + 4.0, + 3.828125, + -1.0703125, + -0.451171875, + 2.234375, + -0.89453125, + 4.1875, + -1.4765625, + 0.3984375, + 2.03125, + 2.265625, + -0.396484375, + 0.52734375, + -3.0625, + -4.875, + 0.9296875, + -1.0859375, + 0.1708984375, + 0.28515625, + 0.2109375, + 3.03125, + 3.015625, + -1.4453125, + 0.5703125, + 0.8046875, + -2.578125, + 0.2734375, + -0.9609375, + 1.578125, + 1.46875, + -0.7578125, + -1.0390625, + -0.515625, + 0.275390625, + 4.5, + 1.0, + 1.828125, + 0.74609375, + 0.8984375, + -1.1875, + 1.2734375, + -1.984375, + 1.390625, + 1.7109375, + 0.921875, + 3.125, + -0.87109375, + 2.609375, + -4.65625, + -2.015625, + 0.73828125, + 1.8046875, + 0.859375, + 1.4609375, + 0.7890625, + -2.703125, + -1.1796875, + 1.8359375, + 0.90234375, + 1.3125, + -2.390625, + -3.78125, + 0.27734375, + 2.234375, + 2.25, + 1.0390625, + -2.984375, + -0.322265625, + 1.7265625, + -0.185546875, + -1.4765625, + 0.451171875, + 0.63671875, + 3.234375, + 0.236328125, + -0.28515625, + -2.21875, + -0.345703125, + 3.421875, + -1.421875, + -0.54296875, + 0.9921875, + 1.9140625, + -1.703125, + -0.94140625, + 1.15625, + -1.515625, + -0.9140625, + -3.25, + -0.390625, + 0.97265625, + -0.8828125, + 1.3203125, + 2.1875, + -0.75, + -1.9296875, + -0.255859375, + 0.6640625, + -1.453125, + 0.51171875, + 0.83984375, + -0.62890625, + -0.65625, + -0.0284423828125, + -1.28125, + -0.96875, + 1.9609375, + 3.140625, + -1.8125, + -1.9140625, + 1.640625, + 1.1875, + 2.375, + 1.453125, + -0.302734375, + -0.08056640625, + -3.890625, + 2.890625, + 0.1875, + 0.048095703125, + 1.2734375, + 1.5234375, + 2.640625, + -1.6484375, + 1.53125, + 0.8828125, + 4.09375, + -2.9375, + 1.1953125, + -2.671875, + -2.046875, + 2.921875, + -2.0, + 2.765625, + 0.146484375, + -2.140625, + 0.890625, + 1.4375, + 0.314453125, + -0.1748046875, + -2.265625, + -2.21875, + 0.84765625, + 3.09375, + -0.01611328125, + -1.8515625, + -0.359375, + -2.390625, + 1.4140625, + -0.3046875, + -1.015625, + -1.40625, + 1.5, + 4.15625, + -0.97265625, + 0.56640625, + 2.0625, + 1.0859375, + 0.1748046875, + 0.14453125, + 3.9375, + 0.59765625, + 0.263671875, + -5.09375, + 1.2578125, + -1.859375, + -1.6484375, + 0.90234375, + 1.0625, + 0.8125, + -0.25, + -2.84375, + 0.9296875, + 2.21875, + -1.53125, + 0.06298828125, + -1.6640625, + 0.423828125, + 3.265625, + -0.81640625, + 3.078125, + -1.328125, + 0.0228271484375, + 0.69921875, + -1.4296875, + 0.40625, + -0.0084228515625, + 0.5234375, + -2.328125, + -3.046875, + -1.6796875, + 1.890625, + 1.40625, + 2.578125, + 0.271484375, + -1.03125, + 0.09765625, + 1.71875, + -4.09375, + 1.8359375, + -0.67578125, + 0.447265625, + -1.734375, + 1.90625, + -1.7109375, + 1.46875, + 1.1796875, + -0.2177734375, + 2.6875, + 1.6640625, + -1.421875, + 0.70703125, + -0.6171875, + 1.265625, + -0.443359375, + -0.86328125, + -1.4921875, + -0.4375, + -3.796875, + -0.30859375, + -1.1796875, + 2.5625, + -1.828125, + -1.9453125, + 2.625, + 0.5625, + -1.3984375, + -1.2265625, + -0.30859375, + 3.234375, + -0.6953125, + -0.73046875, + -0.875, + 0.15234375, + 0.265625, + 5.0, + 0.87890625, + -1.0859375, + 0.63671875, + 0.66015625, + 1.6171875, + 1.9765625, + -2.1875, + 5.5, + 1.0546875, + 2.6875, + -1.3359375, + 0.38671875, + 0.11328125, + -4.0, + -0.56640625, + 0.546875, + 1.015625, + 0.2451171875, + -2.3125, + -0.197265625, + 0.51171875, + 1.0234375, + -0.5546875, + -0.0634765625, + 2.296875, + 0.040771484375, + 0.0079345703125, + 2.375, + -0.63671875, + -1.171875, + 0.3984375, + 0.4453125, + 3.078125, + -0.1396484375, + -3.375, + -0.9609375, + -1.4765625, + 0.38671875, + -3.90625, + 2.03125, + 0.45703125, + -2.078125, + -5.65625, + 1.9921875, + -0.74609375, + 1.4609375, + -1.7734375, + 3.359375, + -1.3515625, + 7.34375, + 0.1787109375, + -0.359375, + 1.8984375, + -3.953125, + 2.015625, + -0.8671875, + -2.859375, + -1.21875, + 0.27734375, + -0.5390625, + -0.484375, + -1.1484375, + -2.9375, + -1.640625, + 3.34375, + -0.67578125, + -1.4921875, + 0.09375, + 1.2109375, + 3.84375, + -4.28125, + -0.7578125, + 1.4375, + 2.515625, + -0.453125, + 0.376953125, + -6.40625, + -3.046875, + 4.125, + 2.71875, + -0.451171875, + -1.7109375, + -0.96875, + 2.40625, + -2.921875, + -2.296875, + 1.0, + -0.390625, + -0.4140625, + -0.54296875, + -0.470703125, + 0.9921875, + -0.26953125, + -0.51171875, + 0.15625, + -2.546875, + -1.7578125, + 2.8125, + 1.375, + 2.921875, + -1.953125, + -1.453125, + -0.26171875, + -1.34375, + -0.93359375, + -0.95703125, + -0.2314453125, + 2.3125, + 0.48046875, + -3.28125, + -0.5859375, + 0.62890625, + -0.10302734375, + -3.3125, + 2.96875, + 1.328125, + -0.050537109375, + 2.6875, + -0.306640625, + 1.0703125, + 8.153915405273438e-05, + -3.3125, + 5.03125, + -0.84765625, + -1.6015625, + 0.82421875, + -1.484375, + -3.546875, + 0.49609375, + -1.15625, + 0.1318359375, + -1.1171875, + -1.78125, + 2.40625, + 2.828125, + 2.21875, + -0.21484375, + -2.390625, + 0.8203125, + 2.3125, + -3.53125, + -2.921875, + 1.4453125, + -1.7109375, + 2.625, + -1.4921875, + 1.046875, + -4.09375, + 1.0625, + 2.484375, + 2.125, + 0.2421875, + -0.8125, + -1.3046875, + 0.388671875, + 2.0625, + 3.15625, + 0.3359375, + -0.25390625, + -3.59375, + 0.81640625, + -2.46875, + -1.6875, + 2.0, + -2.609375, + 0.8671875, + -0.423828125, + 2.046875, + -1.4921875, + -1.109375, + 2.21875, + 15.625, + -0.244140625, + 1.640625, + 2.75, + -1.3984375, + -0.62890625, + 1.0, + -1.4140625, + -0.3828125, + 1.453125, + 3.640625, + -0.435546875, + -0.1337890625, + 3.828125, + -1.484375, + -2.1875, + -1.5546875, + 2.390625, + -2.796875, + -0.86328125, + 1.5078125, + 0.310546875, + -1.765625, + -1.15625, + -0.060302734375, + 0.0712890625, + -4.15625, + -2.859375, + 1.03125, + 0.1669921875, + 1.53125, + -7.78125, + -1.8828125, + -0.1650390625, + 0.56640625, + 5.75, + -0.703125, + 3.5625, + -0.6640625, + 5.75, + 0.431640625, + -0.2255859375, + 1.9375, + -0.474609375, + -3.90625, + 1.609375, + -0.0634765625, + -1.03125, + 3.578125, + -4.03125, + 2.578125, + -2.078125, + 0.142578125, + 1.15625, + -3.34375, + 0.166015625, + 2.03125, + 3.03125, + -0.431640625, + -0.07958984375, + -0.88671875, + 0.8203125, + -2.203125, + 1.234375, + 0.58984375, + 1.8515625, + -0.12890625, + -0.166015625, + 2.34375, + -0.57421875, + -0.55078125, + 2.1875, + 1.828125, + 2.40625, + 1.2578125, + -2.265625, + -1.78125, + -0.00799560546875, + 1.1328125, + -0.84375, + 0.703125, + 0.84375, + -0.89453125, + 1.5078125, + 1.578125, + -1.8359375, + 4.0625, + -0.83203125, + 2.28125, + 1.5390625, + -1.984375, + 3.375, + -1.59375, + 0.03271484375, + 0.83203125, + -1.390625, + -0.8515625, + -2.78125, + -1.125, + 1.4765625, + -9.625, + 2.828125, + 1.2890625, + 3.5, + 1.3984375, + 0.376953125, + -1.2421875, + -1.0859375, + 0.921875, + 1.6328125, + -0.1484375, + 0.024169921875, + -1.640625, + -0.0791015625, + 0.92578125, + 1.7578125, + -2.390625, + 0.3515625, + 1.4140625, + -2.984375, + -0.8671875, + 3.59375, + -0.1669921875, + 0.1865234375, + 0.56640625, + 0.119140625, + -0.5078125, + 1.8828125, + 1.25, + 0.8046875, + 0.0859375, + -2.125, + -0.158203125, + -1.96875, + 0.7421875, + -0.953125, + 2.078125, + 4.84375, + 1.75, + -0.3046875, + 0.435546875, + 0.734375, + -2.828125, + 1.2421875, + 0.88671875, + -0.279296875, + -0.71484375, + -0.5390625, + 1.578125, + -2.453125, + -1.6796875, + 1.7265625, + 0.8515625, + 0.29296875, + 0.039306640625, + 0.62890625, + -1.8828125, + -0.251953125, + -0.50390625, + -0.015869140625, + 0.458984375, + -0.002899169921875, + 1.734375, + -0.734375, + 0.412109375, + 0.69921875, + 0.09765625, + 1.1015625, + 0.65625, + 1.9921875, + -1.6171875, + 1.53125, + -0.52734375, + 1.453125, + 0.64453125, + 0.1357421875, + -1.40625, + 2.171875, + -0.796875, + -0.1962890625, + -0.0859375, + 1.90625, + 1.8046875, + 1.21875, + 0.2265625, + 2.53125, + 0.703125, + 1.171875, + 2.046875, + 0.7265625, + 0.2373046875, + -0.80078125, + -0.7734375, + 1.71875, + -0.80859375, + -2.71875, + 3.0625, + 0.90234375, + -1.7421875, + 0.62890625, + -0.216796875, + -1.1796875, + 1.421875, + 0.9375, + 1.9921875, + -1.6640625, + -1.1640625, + -4.625, + -4.65625, + 0.25, + 0.8984375, + -3.609375, + 2.125, + 2.609375, + 1.9609375, + 0.8515625, + 2.9375, + 2.078125, + -1.9140625, + 0.42578125, + 2.46875, + 3.546875, + 1.296875, + 2.0625, + -0.859375, + 0.52734375, + 0.423828125, + -0.30859375, + -3.671875, + -2.9375, + 0.8203125, + -2.171875, + -1.4921875, + 0.275390625, + -0.3515625, + -4.0, + 0.61328125, + 0.40234375, + -0.1640625, + 0.11865234375, + -1.671875, + 1.984375, + 2.75, + -2.21875, + -0.703125, + -1.390625, + 2.421875, + 0.353515625, + 0.3046875, + -0.25390625, + -2.890625, + -0.87890625, + 0.02392578125, + -0.8125, + -1.2734375, + -0.8359375, + -2.890625, + 0.162109375, + 0.2275390625, + 0.21484375, + 2.359375, + -0.91015625, + 3.75, + -0.0849609375, + -2.3125, + -1.21875, + 1.9375, + 1.5625, + -3.28125, + 3.953125, + -1.8359375, + 1.59375, + 0.373046875, + 1.8515625, + 0.73828125, + 3.296875, + -1.9921875, + 1.4765625, + 0.1357421875, + 4.9375, + 0.3984375, + -0.62890625, + 0.35546875, + 0.400390625, + 1.8203125, + -0.05322265625, + 2.625, + 0.09228515625, + 2.0625, + -0.1552734375, + -0.359375, + -0.373046875, + -0.18359375, + -1.296875, + 0.1513671875, + -1.84375, + 3.703125, + -2.453125, + 1.5078125, + -0.259765625, + -1.1875, + -2.0, + -2.125, + -3.96875, + -0.4765625, + -0.1962890625, + 1.59375, + 1.21875, + -2.28125, + -1.59375, + -0.298828125, + 0.80859375, + -1.109375, + -15.625, + -0.052001953125, + 2.46875, + -0.63671875, + 0.8203125, + -0.5078125, + -0.201171875, + 1.40625, + 1.4609375, + 0.12109375, + 0.349609375, + -0.6171875, + 2.96875, + -1.2734375, + 1.609375, + -1.609375, + 1.6484375, + -1.375, + 1.1015625, + 3.46875, + -1.28125, + 2.265625, + -0.353515625, + -0.1240234375, + -0.83203125, + -0.2314453125, + 2.140625, + -0.00396728515625, + -5.40625, + -0.296875, + -3.5, + 0.498046875, + -1.5859375, + -2.125, + -5.0625, + -1.9921875, + 0.51953125, + -1.8828125, + -1.9453125, + -1.4140625, + 3.28125, + 0.5546875, + 0.7578125, + 2.4375, + 1.6484375, + 0.7890625, + -3.34375, + -1.671875, + 0.2451171875, + 0.1103515625, + 0.62890625, + 3.609375, + 2.734375, + 4.78125, + 0.154296875, + 1.2421875, + 2.25, + 2.375, + -1.34375, + -0.375, + 3.109375, + -0.28515625, + -1.3828125, + 1.046875, + 0.296875, + -0.328125, + 0.4375, + 3.796875, + 2.546875, + 1.9140625, + -3.109375, + -6.8125, + 4.375, + -7.65625, + -0.0004482269287109375, + 0.4140625, + -0.5234375, + -3.875, + -0.73828125, + -0.08984375, + 0.57421875, + 2.265625, + -7.0625, + -1.84375, + -1.5859375, + -1.0859375, + -1.5625, + 2.96875, + -2.859375, + -2.140625, + -0.310546875, + 2.453125, + 2.453125, + -2.8125, + -1.1640625, + -0.76953125, + 2.09375, + 2.53125, + -0.26171875, + 1.6953125, + -0.6640625, + -0.66015625, + -2.421875, + 1.0703125, + 0.0546875, + 1.40625, + 1.1875, + -0.263671875, + -1.96875, + 0.921875, + 1.3203125, + -0.80078125, + 0.2578125, + 1.734375, + -0.44921875, + -0.080078125, + 0.875, + -0.546875, + 2.4375, + -0.404296875, + -0.058837890625, + -0.388671875, + 2.765625, + -1.171875, + -1.546875, + -0.2158203125, + -0.61328125, + -2.125, + -2.328125, + -1.6171875, + -0.314453125, + 0.14453125, + 0.828125, + 3.921875, + 0.234375, + -1.4921875, + 3.25, + -0.4296875, + 1.703125, + -0.14453125, + -0.80859375, + -0.279296875, + -1.9609375, + -2.375, + -1.6015625, + 0.86328125, + -0.455078125, + 1.0625, + 0.8671875, + -3.0625, + -0.453125, + -2.421875, + -1.6171875, + -3.359375, + 3.0625, + 1.7265625, + -2.15625, + -0.56640625, + 4.03125, + -1.8828125, + -1.078125, + -1.390625, + -0.38671875, + -0.26171875, + -0.10986328125, + 0.578125, + 1.8203125, + 0.6171875, + 1.8046875, + 0.83984375, + 0.88671875, + -0.6171875, + 0.0732421875, + -3.0, + 1.8671875, + -1.140625, + -3.796875, + 0.57421875, + 3.953125, + 0.67578125, + 1.46875, + -3.484375, + -0.53125, + -1.2109375, + -1.2265625, + 2.34375, + 0.79296875, + -0.2890625, + 1.1953125, + 1.2578125, + -0.875, + 0.7578125, + -1.4140625, + 0.28125, + 4.28125, + -1.859375, + -1.875, + 1.0546875, + 0.396484375, + 0.0693359375, + -1.7734375, + 1.0234375, + -1.328125, + 0.26171875, + -3.421875, + 0.65234375, + 2.296875, + 0.6484375, + -0.6015625, + -0.30859375, + 0.224609375, + 1.2421875, + 5.34375, + 3.546875, + 0.068359375, + -1.21875, + 0.87109375, + -2.140625, + 0.3125, + 2.234375, + -0.0400390625, + 0.201171875, + 2.140625, + 0.46484375, + -2.890625, + 0.19140625, + -0.21875, + -1.2890625, + 2.25, + 4.0625, + 1.5234375, + 3.15625, + 1.375, + 0.439453125, + -0.059814453125, + -0.41015625, + 1.890625, + 2.15625, + -0.859375, + -3.046875, + 0.08642578125, + -2.390625, + 1.453125, + -1.3125, + -3.984375, + 0.451171875, + 0.283203125, + 0.1787109375, + -0.0966796875, + -1.734375, + 2.09375, + 1.3046875, + -0.51171875, + 4.03125, + 1.4375, + -3.03125, + 0.40234375, + 0.98046875, + -1.1484375, + 0.81640625, + 0.49609375, + -0.6484375, + -0.419921875, + -2.09375, + -5.28125, + -0.99609375, + 3.625, + -2.828125, + -1.53125, + 2.5, + -0.70703125, + 0.020751953125, + 0.83203125, + -1.65625, + -0.73046875, + -0.244140625, + -0.490234375, + 0.8515625, + 1.5234375, + -0.146484375, + -2.90625, + -1.6640625, + -1.25, + -1.75, + 2.4375, + 1.25, + -3.71875, + -1.8828125, + -4.0, + 4.75, + 5.40625, + -0.38671875, + -0.546875, + -0.240234375, + 0.98046875, + -1.078125, + 0.66015625, + 2.15625, + -1.78125, + -0.052734375, + -1.359375, + 0.0791015625, + 0.62109375, + -2.15625, + 1.328125, + -0.98828125, + -1.609375, + -0.4140625, + -1.375, + 0.5703125, + 1.5625, + -3.96875, + -3.25, + -0.1494140625, + 0.5078125, + -1.421875, + 0.5234375, + 1.1640625, + -0.46484375, + -0.478515625, + 0.84765625, + -0.6328125, + -1.03125, + -6.90625, + -1.6328125, + 1.734375, + -2.953125, + 3.03125, + -1.140625, + 1.6171875, + -2.46875, + 1.125, + -1.4375, + 0.31640625, + -0.5078125, + -3.28125, + -3.578125, + -2.21875, + -0.5546875, + -2.1875, + -1.0390625, + -2.6875, + 0.5078125, + 1.75, + 0.494140625, + 2.90625, + -2.28125, + -0.2373046875, + 1.828125, + -1.078125, + 0.0, + -0.1611328125, + 0.703125, + 1.6640625, + 3.0, + 1.578125, + 0.671875, + 1.1953125, + -0.78515625, + 1.5390625, + 1.421875, + -0.96484375, + 0.1953125, + -6.03125, + 5.65625, + 2.0, + -3.328125, + 3.390625, + -0.53125, + 0.1884765625, + 0.439453125, + 3.8125, + 1.484375, + -2.234375, + 6.625, + -2.34375, + -2.1875, + -7.53125, + -2.140625, + -0.7265625, + -0.494140625, + 2.296875, + 0.04541015625, + -2.3125, + -0.040771484375, + -1.015625, + 1.9375, + -2.078125, + -1.1640625, + -0.6796875, + -0.671875, + -1.3046875, + 2.34375, + 1.953125, + -2.25, + -0.59765625, + -0.49609375, + 1.8515625, + -0.8515625, + 0.859375, + 0.96484375, + -1.0859375, + -3.90625, + 0.515625, + -2.859375, + 3.296875, + -4.03125, + -1.21875, + -0.953125, + -1.4375, + 0.72265625, + -6.03125, + -0.34375, + 2.1875, + 4.65625, + -1.7421875, + 0.1767578125, + -0.73046875, + 3.296875, + -1.8359375, + 3.625, + 0.6328125, + -0.73046875, + -1.4609375, + 1.8828125, + -1.234375, + 0.201171875, + -0.55859375, + -1.046875, + 1.3203125, + -3.125, + -1.5625, + -0.6171875, + -3.046875, + 2.15625, + 5.4375, + -0.91796875, + -0.98046875, + -1.734375, + 4.3125, + 2.96875, + -2.015625, + 1.8671875, + -0.412109375, + 0.62890625, + -1.21875, + -2.875, + -0.53125, + -1.84375, + 0.240234375, + -7.4375, + -0.328125, + 1.2421875, + 1.0625, + 1.109375, + 2.53125, + -0.7421875, + -2.15625, + 0.33203125, + 0.57421875, + -3.96875, + -2.078125, + 1.40625, + -0.404296875, + -0.41796875, + -1.421875, + -2.96875, + 0.88671875, + -0.95703125, + 1.3125, + 2.234375, + 2.484375, + -1.609375, + -1.0390625, + 2.015625, + 0.640625, + 3.609375, + -1.390625, + -1.75, + 0.484375, + 2.671875, + -1.6796875, + -3.078125, + -0.73046875, + -4.03125, + 1.21875, + 1.6875, + -1.796875, + -2.859375, + 0.75, + 3.875, + 2.1875, + 1.8046875, + 0.189453125, + -0.1416015625, + 1.53125, + -1.90625, + -0.09765625, + 1.0, + -0.039794921875, + -2.0625, + 1.6640625, + -2.265625, + -0.349609375, + 5.1875, + 1.4375, + 0.72265625, + -4.15625, + 3.984375, + 2.15625, + 3.828125, + 2.5, + 0.95703125, + 3.265625, + 1.59375, + -0.349609375, + -0.734375, + -0.92578125, + -0.17578125, + 1.6328125, + -0.6171875, + 2.671875, + 2.84375, + 2.546875, + -4.21875, + -2.046875, + -4.34375, + -0.1708984375, + 2.671875, + -1.8984375, + 0.7109375, + -1.515625, + 0.96875, + -0.40234375, + 0.177734375, + 1.953125, + 1.1875, + -0.134765625, + 0.21484375, + -1.6015625, + -0.369140625, + 0.1533203125, + -0.00982666015625, + 4.625, + 0.8515625, + -0.578125, + -1.046875, + 1.4765625, + 0.451171875, + -2.515625, + 1.875, + -0.435546875, + -1.1328125, + 1.0703125, + 1.921875, + 0.026611328125, + -0.72265625, + -1.21875, + 2.140625, + 1.8828125, + -4.0, + -1.953125, + -2.40625, + 0.0155029296875, + 1.1640625, + -3.90625, + 0.5390625, + -3.390625, + -1.0390625, + -1.4765625, + 6.0, + 0.0244140625, + -1.6328125, + 0.283203125, + -3.453125, + 2.84375, + -0.77734375, + 1.1640625, + 1.5078125, + 2.75, + -2.109375, + 3.09375, + -3.828125, + -0.91796875, + -0.68359375, + 1.453125, + -2.46875, + -0.9140625, + 1.0703125, + -1.5703125, + -4.3125, + -1.140625, + -1.0625, + -0.9140625, + -0.640625, + -3.546875, + -0.400390625, + -1.2421875, + 1.0859375, + 0.75, + 1.03125, + 3.03125, + -3.609375, + 0.65234375, + -2.515625, + -1.078125, + -0.3125, + -1.5234375, + -3.71875, + 0.228515625, + 2.375, + -0.609375, + -0.94140625, + 0.75390625, + -0.162109375, + -2.078125, + -1.734375, + -0.11328125, + -1.5703125, + -0.11083984375, + 1.34375, + -1.296875, + -2.109375, + -1.75, + 1.5, + 1.2890625, + -0.1357421875, + 1.453125, + -1.6484375, + -0.2734375, + -1.0390625, + -1.5, + 2.953125, + 0.76953125, + 1.0859375, + 0.74609375, + 3.328125, + 3.390625, + -2.390625, + 5.09375, + -2.796875, + 1.34375, + 2.015625, + 0.56640625, + 0.51953125, + -1.671875, + -1.15625, + 0.259765625, + 2.546875, + -0.447265625, + 1.4921875, + -0.57421875, + -1.203125, + 1.21875, + 2.140625, + 0.6796875, + 0.87890625, + -1.21875, + -3.484375, + -1.9296875, + 2.4375, + 1.0625, + -0.7734375, + 1.296875, + -1.7890625, + 1.3046875, + 4.3125, + 3.5, + 1.09375, + 0.98828125, + 0.353515625, + -1.5625, + 2.53125, + 1.9296875, + 3.9375, + 1.0078125, + -0.70703125, + -0.85546875, + -3.765625, + 2.125, + 1.109375, + -0.99609375, + -0.8828125, + -0.734375, + -1.2421875, + 2.359375, + 1.03125, + -0.43359375, + 1.1171875, + 1.1796875, + -0.359375, + -1.46875, + 0.251953125, + 0.9296875, + 1.65625, + 0.5234375, + 0.205078125, + 1.21875, + 3.765625, + -0.244140625, + -0.248046875, + 1.9375, + -0.5703125, + 0.1162109375, + 0.88671875, + 3.15625, + 0.28125, + 2.46875, + 0.003997802734375, + -3.015625, + 3.75, + 1.328125, + 0.388671875, + -0.04052734375, + 1.4453125, + -1.9140625, + -0.52734375, + 4.28125, + -3.234375, + 0.80859375, + 1.140625, + -1.0546875, + 2.203125, + 1.28125, + -1.4375, + -2.265625, + 1.6953125, + 2.53125, + 0.8046875, + 1.2890625, + 2.5, + 0.189453125, + 2.75, + -0.82421875, + -1.828125, + -1.2421875, + -4.09375, + 2.203125, + 0.57421875, + 0.384765625, + -1.2421875, + -0.408203125, + -1.796875, + -0.09716796875, + -0.8671875, + 3.40625, + 1.6484375, + 1.3203125, + -2.09375, + 1.0703125, + -1.453125, + -3.25, + 0.1953125, + 0.578125, + 2.71875, + 1.6953125, + -1.390625, + -0.99609375, + -1.0859375, + -2.34375, + -0.99609375, + 3.3125, + 3.3125, + 0.32421875, + 2.59375, + 1.140625, + -0.09228515625, + 0.296875, + -1.59375, + 1.5234375, + 0.48046875, + -3.59375, + -0.380859375, + 4.90625, + 2.0, + -1.796875, + 0.1611328125, + -3.5, + -0.53515625, + -2.890625, + -1.4765625, + 1.2578125, + 1.078125, + 1.5, + 3.171875, + 3.5, + -2.78125, + -2.21875, + 0.9609375, + 3.0625, + 4.53125, + 2.53125, + -0.455078125, + 2.46875, + -4.875, + 1.1484375, + -0.83984375, + -1.390625, + -2.21875, + 1.84375, + 0.2470703125, + 0.2060546875, + 5.03125, + 0.291015625, + 1.3125, + -0.103515625, + -1.109375, + -1.5234375, + -2.953125, + -1.40625, + 0.984375, + -0.0247802734375, + -2.5, + -0.0693359375, + 3.09375, + -0.4921875, + -3.203125, + -1.6796875, + -0.9296875, + 1.3359375, + -0.1787109375, + -2.21875, + 1.5703125, + 2.125, + 0.890625, + 0.0164794921875, + -1.1328125, + 1.890625, + 4.5, + 1.0234375, + -1.2578125, + -1.5078125, + -0.78515625, + -0.119140625, + -0.84765625, + -2.0625, + 1.3671875, + 4.9375, + -1.2578125, + 1.40625, + 0.283203125, + -0.0830078125, + 1.2265625, + -0.09521484375, + -1.96875, + -1.9140625, + 1.578125, + -4.34375, + -0.33203125, + 1.7578125, + -1.578125, + -1.96875, + 0.484375, + 2.65625, + -1.25, + -1.84375, + -2.9375, + -0.609375, + -2.21875, + 0.56640625, + 2.34375, + -2.46875, + 2.171875, + 0.380859375, + -1.546875, + 9.0625, + 0.7109375, + 0.8984375, + -1.25, + 1.1484375, + 1.4609375, + -1.234375, + 2.421875, + -1.5, + 1.0078125, + 0.69921875, + 2.125, + 0.8359375, + 3.484375, + 1.3046875, + 0.80078125, + -0.357421875, + -0.458984375, + 0.62890625, + -1.3828125, + -1.5, + -0.859375, + -2.046875, + -1.140625, + 0.265625, + 0.00049591064453125, + 0.5078125, + -2.640625, + 0.9296875, + 1.3359375, + 2.6875, + 0.41796875, + -2.640625, + 3.4375, + -0.6171875, + 0.0712890625, + 0.1923828125, + 3.296875, + 3.171875, + 0.58984375, + 0.369140625, + -0.3359375, + 0.578125, + 0.6171875, + -0.97265625, + 0.21875, + 0.6484375, + 1.2109375, + -0.484375, + 0.4375, + 1.046875, + -1.5078125, + -2.828125, + 1.1328125, + -1.65625, + -0.34765625, + 6.5, + 0.9453125, + -0.59765625, + 1.171875, + -0.6171875, + -1.6171875, + -0.40234375, + -2.046875, + 0.09521484375, + 0.9375, + 1.90625, + -0.48828125, + -0.462890625, + -1.4140625, + 0.2890625, + 0.0, + -0.1240234375, + -1.25, + -0.373046875, + 2.84375, + -0.66796875, + 1.1484375, + 2.03125, + -1.1328125, + 1.7578125, + -4.25, + -0.337890625, + -0.85546875, + -4.03125, + -0.5625, + 4.09375, + -2.21875, + -1.09375, + -1.21875, + 0.1572265625, + -1.6328125, + 2.578125, + -0.030517578125, + -3.671875, + 2.359375, + -1.9140625, + -3.0625, + 2.3125, + -1.7734375, + -0.314453125, + 3.296875, + -12.6875, + -0.59375, + 2.046875, + -0.62890625, + 1.7109375, + -0.010009765625, + -0.84375, + 0.8984375, + -1.359375, + 1.046875, + -11.5, + -0.1875, + 3.734375, + 0.98046875, + 2.0, + 3.484375, + -2.25, + -1.4375, + -2.015625, + 1.3671875, + 0.18359375, + 0.0, + 1.2890625, + 3.125, + -4.40625, + 0.98046875, + -1.1953125, + 1.109375, + -3.78125, + 2.875, + -0.373046875, + 2.671875, + -3.046875, + -1.3046875, + -2.765625, + -0.125, + 1.8984375, + 0.76171875, + -1.359375, + 1.7109375, + 0.107421875, + 0.14453125, + -1.3125, + -1.1484375, + 3.046875, + 2.484375, + -3.328125, + 0.1845703125, + -1.078125, + 3.265625, + 0.10009765625, + 1.59375, + -1.3125, + -0.67578125, + 1.1328125, + -0.6875, + -2.59375, + 0.35546875, + 3.296875, + -3.03125, + 2.734375, + 1.15625, + -1.46875, + 2.375, + 1.359375, + 0.94921875, + -1.671875, + 3.53125, + 0.90625, + 2.4375, + 0.73828125, + -1.734375, + -1.65625, + 4.6875, + 0.1435546875, + -0.93359375, + 0.49609375, + -1.140625, + -0.6171875, + -2.890625, + -3.671875, + -0.10986328125, + -0.96484375, + 0.33203125, + 0.64453125, + -0.51953125, + 3.640625, + -3.5625, + -1.34375, + 0.060791015625, + -2.953125, + -2.90625, + 2.671875, + -3.609375, + 1.3203125, + 0.41015625, + 2.90625, + -1.15625, + -2.0, + 0.0311279296875, + 0.50390625, + 0.4921875, + 2.0, + 0.0, + -0.88671875, + 0.07080078125, + 0.62109375, + -1.9765625, + 5.84375, + 1.8984375, + -1.96875, + 1.7890625, + 0.71875, + 1.4140625, + 1.8671875, + -0.265625, + -1.765625, + 0.31640625, + 0.91015625, + -0.41015625, + -1.96875, + -0.212890625, + -1.3515625, + -2.234375, + 3.3125, + -2.671875, + -1.734375, + -1.59375, + -2.46875, + 0.99609375, + 1.7265625, + 0.326171875, + -0.78515625, + -0.416015625, + -3.859375, + -2.734375, + 1.1953125, + -1.390625, + 0.82421875, + -1.5859375, + -0.06494140625, + -0.46484375, + -1.25, + -2.34375, + -1.078125, + -0.34765625, + 3.828125, + 0.5234375, + -2.59375, + 1.4609375, + -0.00384521484375, + 1.828125, + -0.466796875, + 1.21875, + -0.83203125, + 4.65625, + 0.890625, + 3.640625, + -1.2265625, + -1.28125, + 3.515625, + -1.6328125, + -1.5625, + 1.96875, + -0.4375, + -1.25, + 0.828125, + -0.298828125, + -0.546875, + -2.671875, + 3.3125, + -3.9375, + 0.376953125, + 0.73046875, + -2.25, + 0.3984375, + -0.76953125, + 2.1875, + -1.046875, + -0.4140625, + -2.015625, + -0.2177734375, + -0.12353515625, + 0.494140625, + 1.65625, + 5.6875, + -0.1181640625, + 0.8125, + 1.34375, + 0.384765625, + 0.08203125, + 2.296875, + 1.078125, + 0.0, + -0.447265625, + -1.2109375, + -1.3984375, + -1.421875, + 2.78125, + 3.703125, + -4.0625, + 1.9609375, + -1.28125, + 1.15625, + 0.62890625, + -0.298828125, + 0.07470703125, + 1.8203125, + 0.1162109375, + -3.09375, + -1.71875, + -0.7265625, + -3.75, + 3.234375, + -0.375, + 3.46875, + -0.53125, + -1.1953125, + 0.1533203125, + 0.71484375, + -1.09375, + -0.84765625, + 0.173828125, + 0.6875, + 1.5078125, + -0.30078125, + 1.0, + 1.125, + -1.34375, + 3.796875, + 0.875, + -0.75390625, + 0.046630859375, + -0.93359375, + 0.90234375, + 0.337890625, + 0.9609375, + 0.462890625, + -1.1953125, + 0.064453125, + 0.8203125, + -0.515625, + 1.7890625, + -1.640625, + 1.609375, + -4.5, + -1.9765625, + 3.0625, + 0.37109375, + -3.796875, + 0.30859375, + -0.1513671875, + -1.296875, + -0.1416015625, + 2.546875, + 1.8515625, + 1.0625, + -4.28125, + -5.03125, + 3.4375, + 1.2734375, + 0.12451171875, + -1.6640625, + 0.08447265625, + 0.271484375, + 2.0625, + 0.57421875, + 0.8828125, + -0.96484375, + -4.625, + -1.171875, + 1.5078125, + -1.6953125, + -0.0654296875, + -3.71875, + -5.0625, + -1.8515625, + 1.6015625, + 1.109375, + 2.21875, + -0.130859375, + 0.031005859375, + 0.69140625, + 1.8828125, + -0.498046875, + -1.390625, + 1.2890625, + -1.5703125, + -0.107421875, + 1.328125, + 0.9296875, + 0.71484375, + -3.484375, + -8.0625, + 3.640625, + -0.400390625, + -1.4140625, + -2.78125, + 0.2041015625, + 1.828125, + 1.1875, + -4.46875, + -0.2177734375, + -2.484375, + 2.59375, + 0.91015625, + 2.421875, + 0.1650390625, + 1.7109375, + -0.275390625, + 1.2421875, + 0.96875, + 0.7890625, + 3.28125, + 0.2392578125, + 1.6640625, + -0.76171875, + 0.216796875, + -3.3125, + -0.25390625, + 1.65625, + -1.5625, + 1.3046875, + -0.92578125, + -0.193359375, + -0.6484375, + -0.9765625, + -0.9921875, + 2.984375, + -4.25, + 5.53125, + -2.75, + -0.7890625, + -1.3515625, + 2.625, + -0.73046875, + 0.263671875, + -1.5546875, + 0.67578125, + 3.46875, + -0.2255859375, + -0.62109375, + 1.5, + -1.796875, + 1.3984375, + -3.0625, + -0.298828125, + 3.828125, + 2.5625, + 0.447265625, + -0.486328125, + -1.625, + 1.578125, + 3.515625, + 0.71484375, + -0.85546875, + 1.734375, + 1.1640625, + 1.21875, + 3.46875, + 1.09375, + -3.53125, + 0.59765625, + 0.51171875, + 2.921875, + -0.8203125, + 0.2392578125, + 1.0625, + 4.5, + -0.76171875, + 0.2109375, + 1.0859375, + -5.0, + 2.859375, + 2.671875, + 0.625, + -0.69921875, + 0.412109375, + 2.21875, + 1.78125, + 2.796875, + 1.296875, + -2.1875, + 0.0302734375, + -1.7734375, + -1.8359375, + -1.4609375, + -3.109375, + 0.4375, + 1.2265625, + 0.546875, + 0.71875, + 1.6015625, + 2.765625, + -0.99609375, + -2.0, + 0.3203125, + -0.150390625, + -1.421875, + 5.25, + -0.80859375, + 2.6875, + -1.3984375, + 1.7890625, + 1.4140625, + -0.9140625, + -1.453125, + -1.4765625, + -0.52734375, + 1.90625, + -2.34375, + -0.365234375, + 0.8359375, + 1.3828125, + 0.78125, + 1.78125, + 0.375, + -3.9375, + 0.59765625, + -0.66796875, + -2.484375, + -1.7890625, + 0.35546875, + 1.859375, + 0.1728515625, + 0.5234375, + 1.359375, + 5.625, + -0.5078125, + 1.1015625, + -1.4765625, + -2.875, + -2.171875, + 0.40625, + 1.5625, + -1.453125, + 0.41015625, + 1.1328125, + -1.7578125, + 1.0390625, + 1.6796875, + 1.015625, + 1.6484375, + -2.40625, + 0.341796875, + 2.53125, + -1.484375, + 2.015625, + 1.265625, + -1.6484375, + -0.41015625, + -0.466796875, + -0.2294921875, + -1.3359375, + 0.515625, + -0.58203125, + -1.1328125, + -3.5, + 0.2734375, + 1.1171875, + -1.625, + 0.546875, + -0.2890625, + 0.79296875, + -2.09375, + 1.25, + -0.875, + 1.1171875, + -0.66015625, + 0.58984375, + -0.75390625, + -1.28125, + 0.4296875, + -1.453125, + -0.91796875, + 0.10791015625, + -0.62109375, + -2.046875, + -2.5, + -1.1953125, + -0.482421875, + -1.0703125, + -0.95703125, + -0.6796875, + 0.185546875, + 0.7578125, + 0.81640625, + 2.390625, + -0.00506591796875, + -1.40625, + -2.328125, + -2.28125, + -2.65625, + -2.78125, + 1.6640625, + -2.296875, + 4.15625, + -1.8828125, + -2.59375, + -0.7109375, + 0.77734375, + -0.8984375, + 0.294921875, + 1.703125, + 5.5625, + -1.71875, + 0.302734375, + 0.703125, + 0.1416015625, + 1.2421875, + 2.3125, + 1.109375, + -1.4296875, + 1.1953125, + -2.640625, + 0.66015625, + -2.921875, + -0.3203125, + -0.953125, + -0.859375, + -1.09375, + -0.451171875, + -2.734375, + -0.96484375, + -1.46875, + -1.171875, + 0.5390625, + 2.578125, + -0.7421875, + -0.09423828125, + -3.28125, + 1.3359375, + -0.421875, + -1.9921875, + 0.349609375, + 0.84765625, + -0.2177734375, + -0.625, + 2.140625, + -2.9375, + 0.9375, + -3.40625, + -0.208984375, + 0.76953125, + 1.78125, + 1.03125, + 2.140625, + -0.60546875, + 6.3125, + -1.296875, + -4.65625, + -0.60546875, + 0.80078125, + 0.051025390625, + -0.1923828125, + 1.28125, + -0.421875, + 1.4140625, + -0.515625, + 1.875, + -1.84375, + 1.7421875, + 0.484375, + 0.431640625, + -3.328125, + -3.9375, + -2.859375, + 0.28515625, + 0.46484375, + -1.5859375, + 0.8828125, + -2.046875, + 2.3125, + -1.9921875, + -0.5078125, + 0.71484375, + -0.458984375, + 0.3828125, + -2.3125, + -0.36328125, + 2.03125, + -2.046875, + -1.234375, + -1.859375, + 1.859375, + -2.34375, + 1.3359375, + 0.859375, + -0.40234375, + 0.07470703125, + 3.34375, + -2.84375, + 1.5859375, + 1.546875, + 0.1650390625, + 3.84375, + 1.2890625, + 0.039794921875, + -3.71875, + 1.171875, + -0.39453125, + 1.125, + -2.34375, + -2.0, + 0.0167236328125, + 3.765625, + -5.25, + -2.484375, + -3.09375, + -1.1328125, + -0.953125, + -0.08447265625, + 3.75, + 1.0234375, + -0.447265625, + 2.0625, + 1.40625, + 0.76953125, + 0.59765625, + 1.578125, + 2.8125, + -0.2294921875, + 0.38671875, + -2.578125, + -1.546875, + -0.31640625, + 2.328125, + -0.158203125, + 3.0625, + -0.02734375, + -0.70703125, + 0.609375, + 0.82421875, + -1.140625, + -3.125, + -1.78125, + -1.1015625, + 1.3203125, + -1.203125, + 0.0986328125, + 0.6171875, + -2.109375, + -0.92578125, + -0.7578125, + 2.5, + -0.66796875, + 0.30078125, + -1.453125, + -0.515625, + 3.09375, + -0.458984375, + -2.203125, + 0.58984375, + 0.2158203125, + -0.076171875, + 1.234375, + -1.515625, + -0.765625, + -1.328125, + 0.134765625, + 0.8828125, + -1.0859375, + 0.435546875, + -1.3671875, + 1.7109375, + 1.703125, + -1.3984375, + -0.62109375, + 0.6796875, + 2.671875, + -1.3515625, + -0.5390625, + 0.12890625, + 2.640625, + 0.373046875, + 1.953125, + 0.51171875, + -2.421875, + 1.6953125, + 2.140625, + 0.2333984375, + 1.0703125, + -0.42578125, + -0.16015625, + 2.0625, + -0.8515625, + 2.703125, + -0.70703125, + -3.140625, + 0.06689453125, + 1.625, + -2.078125, + 0.3046875, + -0.78125, + 0.60546875, + 0.92578125, + -2.671875, + -0.431640625, + 0.373046875, + -2.140625, + 1.1796875, + -0.1328125, + -1.96875, + 0.333984375, + 0.9921875, + 1.828125, + -0.640625, + 1.0859375, + -1.703125, + -7.90625, + -0.09814453125, + 3.125, + -0.890625, + -1.765625, + -0.6953125, + 0.50390625, + 1.8984375, + -3.703125, + 0.119140625, + -3.59375, + 0.60546875, + -0.78515625, + 0.7265625, + 0.19921875, + -0.72265625, + -0.314453125, + -1.40625, + 0.421875, + 0.2490234375, + 0.48828125, + 1.171875, + -0.90234375, + 1.0390625, + 1.671875, + -0.6015625, + -0.2216796875, + -2.5625, + 0.265625, + -1.5703125, + -2.546875, + -1.59375, + -1.9921875, + 0.1767578125, + -0.1826171875, + -1.71875, + -0.3125, + 0.439453125, + 0.6171875, + 0.7265625, + 0.5625, + 2.09375, + 3.640625, + 12.375, + 0.5078125, + 0.1396484375, + 0.271484375, + -2.4375, + -1.625, + -0.23046875, + 3.703125, + -0.57421875, + -1.09375, + -2.1875, + -0.052490234375, + 0.2001953125, + 0.828125, + -1.0234375, + -0.359375, + -0.66015625, + 1.546875, + 1.6875, + 0.90234375, + -2.0, + 0.42578125, + 5.15625, + -2.859375, + -1.3203125, + 1.78125, + 2.28125, + 2.21875, + 0.58203125, + 2.3125, + 0.515625, + 1.1953125, + -0.99609375, + 1.734375, + -0.0247802734375, + -2.15625, + 3.1875, + 1.5078125, + 2.203125, + 2.171875, + 2.5625, + 0.6484375, + -0.96875, + -1.640625, + 0.1845703125, + 1.78125, + -1.390625, + -0.302734375, + -2.5, + 0.20703125, + -2.703125, + -1.359375, + 0.259765625, + 0.89453125, + -0.212890625, + -1.84375, + -3.671875, + -0.248046875, + -1.109375, + 0.55078125, + -0.3984375, + 0.435546875, + -0.828125, + -3.765625, + -0.39453125, + 1.1875, + 2.3125, + 0.35546875, + 0.734375, + 0.640625, + -0.73046875, + -2.125, + -1.140625, + 2.484375, + 1.96875, + 1.46875, + 0.291015625, + 1.59375, + 0.6484375, + 2.78125, + 3.390625, + -0.2294921875, + 2.109375, + 2.484375, + -1.171875, + 0.7421875, + -0.455078125, + -2.859375, + -0.2041015625, + 0.007354736328125, + 0.77734375, + 0.91796875, + 0.96875, + -0.73046875, + -0.6953125, + 2.0625, + 0.51953125, + -1.109375, + 0.7109375, + 3.484375, + -0.4921875, + -0.8125, + 0.14453125, + 0.28515625, + 0.9921875, + 2.265625, + 0.26171875, + -1.171875, + -0.1748046875, + 1.234375, + 1.5546875, + -1.0234375, + 2.109375, + 2.046875, + -0.72265625, + 1.859375, + 6.84375, + 1.9140625, + 1.109375, + -1.1015625, + 1.2421875, + 0.609375, + -2.203125, + 0.06884765625, + -0.423828125, + 0.19921875, + 0.1923828125, + 0.15234375, + -2.21875, + -3.203125, + 0.341796875, + -3.46875, + 1.1953125, + -0.59375, + 1.828125, + -0.67578125, + -0.12890625, + 0.9296875, + 3.1875, + -1.8359375, + 0.4921875, + -0.90234375, + -2.265625, + 0.2431640625, + -1.9921875, + 0.3984375, + 0.4453125, + 0.008056640625, + 0.859375, + 0.9453125, + -0.8203125, + 0.421875, + 0.412109375, + 0.3359375, + 1.1328125, + 1.5703125, + 0.306640625, + -1.1484375, + 1.4453125, + 1.09375, + -2.34375, + 1.6484375, + 0.11181640625, + -1.546875, + -1.375, + -1.9765625, + 0.5, + -0.875, + 1.8203125, + -2.328125, + 1.875, + 1.96875, + -1.4140625, + -0.61328125, + 2.0 + ], + "index": 0, + "object": "embedding", + "raw_output": null + } + ], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 7, + "total_tokens": 7, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/d45ca9107508.json b/tests/integration/recordings/responses/d45ca9107508.json new file mode 100644 index 000000000..c7b746e46 --- /dev/null +++ b/tests/integration/recordings/responses/d45ca9107508.json @@ -0,0 +1,43 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "prompt": "Respond to this question and explain your answer. Complete the sentence using one word: Roses are red, violets are ", + "stream": false, + "extra_body": {} + }, + "endpoint": "/v1/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "1bbb8db5-63e5-40cd-8ffe-59e0e88bf8f0", + "choices": [ + { + "finish_reason": "length", + "index": 0, + "logprobs": null, + "text": "4. At the beginning of the year, a woman has $5,000" + } + ], + "created": 1758920353, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": { + "completion_tokens": 16, + "prompt_tokens": 25, + "total_tokens": 41, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/e22f98c05933.json b/tests/integration/recordings/responses/e22f98c05933.json new file mode 100644 index 000000000..131792f0a --- /dev/null +++ b/tests/integration/recordings/responses/e22f98c05933.json @@ -0,0 +1,1077 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "What is the name of the US captial?" + } + ], + "n": 2, + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": "The capital", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": "The capital", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " United", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " United", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " States", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " States", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " Washington", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " Washington", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " D", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " D", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ".C", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ".C", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": "short", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": "short", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " District", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " District", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " Columbia", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": " Columbia", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ").", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": ").", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 40, + "prompt_tokens": 20, + "total_tokens": 60, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "4e22697d-078b-4a62-b74d-6ab350c7b189", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 1, + "logprobs": null + } + ], + "created": 1758920399, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 40, + "prompt_tokens": 20, + "total_tokens": 60, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/e4daa5642f6e.json b/tests/integration/recordings/responses/e4daa5642f6e.json new file mode 100644 index 000000000..7ca7f23c3 --- /dev/null +++ b/tests/integration/recordings/responses/e4daa5642f6e.json @@ -0,0 +1,56 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "Which planet has rings around it with a name starting with letter S?" + } + ], + "stream": false + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "26632ea9-3481-419d-bc0d-83c177257bc4", + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "There are two planets in our solar system with ring systems that have names starting with the letter S:\n\n1. **Saturn** - Its ring system is one of the most iconic and well-known in our solar system. The rings are made up of ice and rock particles that range in size from tiny dust grains to massive boulders.\n2. **Saturn's moon** - The ring system of **Saturn's moon, Rhea**, is sometimes referred to as a \"ring system\" even though it's much smaller and less prominent than Saturn's. However, it's worth noting that Rhea's ring system is not as well-known as Saturn's.\n\nIf you're looking for a planet with a ring system that starts with the letter S and is not a moon, then the answer is Saturn!", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": null + } + } + ], + "created": 1758920397, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 164, + "prompt_tokens": 24, + "total_tokens": 188, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/e99f14805360.json b/tests/integration/recordings/responses/e99f14805360.json new file mode 100644 index 000000000..fcd61605c --- /dev/null +++ b/tests/integration/recordings/responses/e99f14805360.json @@ -0,0 +1,706 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "Hello, world!" + } + ], + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": "Hello!", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " It", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": "'s", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " nice", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " meet", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " Is", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " there", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " something", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " I", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " can", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " help", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " or", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " would", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " like", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": " chat", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": "?", + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "d583f66e-de11-4210-8153-54be000a2783", + "choices": [ + { + "delta": { + "content": null, + "function_call": null, + "refusal": null, + "role": null, + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1758920391, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 26, + "prompt_tokens": 14, + "total_tokens": 40, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/f3cbd3f07e60.json b/tests/integration/recordings/responses/f3cbd3f07e60.json new file mode 100644 index 000000000..f0eba3e5b --- /dev/null +++ b/tests/integration/recordings/responses/f3cbd3f07e60.json @@ -0,0 +1,996 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "prompt": "Respond to this question and explain your answer. Complete the sentence using one word: Roses are red, violets are ", + "max_tokens": 50, + "stream": true, + "extra_body": {} + }, + "endpoint": "/v1/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": [ + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " a" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " type" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " of" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " __________________" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "_____" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": ".\n\n" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "##" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " Step" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " " + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "1" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": ":" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " Identify" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " the" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " type" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " of" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " flower" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " mentioned" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " in" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " the" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " sentence" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": ".\n" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "The" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " sentence" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " mentions" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " \"" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "vio" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "lets" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": ".\"\n\n" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "##" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " Step" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " " + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "2" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": ":" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " Determine" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " the" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " type" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " of" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " flower" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " v" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "io" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "lets" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " are" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": ".\n" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "V" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "io" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "lets" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " are" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " a" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " type" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " of" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "c9c1f727-afe7-430a-b759-df1dc392266c", + "choices": [ + { + "finish_reason": "length", + "index": 0, + "logprobs": null, + "text": "" + } + ], + "created": 1758920354, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "text_completion", + "system_fingerprint": null, + "usage": { + "completion_tokens": 50, + "prompt_tokens": 25, + "total_tokens": 75, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/f6469c4656dd.json b/tests/integration/recordings/responses/f6469c4656dd.json new file mode 100644 index 000000000..717daf05c --- /dev/null +++ b/tests/integration/recordings/responses/f6469c4656dd.json @@ -0,0 +1,4135 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/embeddings", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "input": "Test encoding format", + "encoding_format": "float" + }, + "endpoint": "/v1/embeddings", + "model": "accounts/fireworks/models/qwen3-embedding-8b" + }, + "response": { + "body": { + "__type__": "openai.types.create_embedding_response.CreateEmbeddingResponse", + "__data__": { + "data": [ + { + "embedding": [ + -3.28125, + 0.09423828125, + -0.043212890625, + -0.1337890625, + -0.6484375, + -1.4609375, + -2.703125, + 3.75, + 3.21875, + 2.046875, + -0.169921875, + 1.296875, + 5.625, + -3.09375, + 3.984375, + 2.21875, + 4.1875, + -2.140625, + 0.875, + -0.75390625, + -1.0703125, + 2.984375, + 3.5625, + -1.046875, + 0.123046875, + 1.3671875, + -1.3515625, + -0.96875, + -0.92578125, + -1.265625, + 1.1640625, + 2.84375, + 4.875, + 3.90625, + -3.984375, + -0.06640625, + -0.73828125, + -0.2373046875, + 2.515625, + -1.015625, + 1.7890625, + -3.65625, + 0.984375, + -0.71875, + 2.75, + 0.54296875, + -2.578125, + 0.98046875, + 1.2421875, + -0.380859375, + -1.3671875, + -2.34375, + -1.3515625, + 2.5625, + 3.875, + 3.28125, + -2.984375, + 1.328125, + 0.3671875, + 0.6015625, + -3.359375, + 2.421875, + 0.47265625, + -1.6015625, + -1.03125, + -1.140625, + 1.28125, + 1.140625, + 7.25, + 0.92578125, + -1.3046875, + 2.71875, + -0.302734375, + -0.341796875, + 1.203125, + 0.77734375, + -3.1875, + -1.2890625, + 0.2275390625, + 4.78125, + -0.76953125, + -1.7265625, + -2.203125, + -0.337890625, + -0.400390625, + -4.25, + -1.7265625, + 0.3046875, + 2.75, + -0.625, + 1.328125, + -1.0078125, + 4.125, + 1.8671875, + 0.337890625, + 5.90625, + -1.65625, + -1.3046875, + -1.8203125, + 1.9921875, + 0.09814453125, + 0.5859375, + 1.6875, + -0.359375, + 3.328125, + -2.046875, + 0.197265625, + -2.53125, + -0.734375, + 0.6484375, + 0.35546875, + 4.15625, + 0.8984375, + -0.8515625, + -1.1953125, + 1.34375, + -1.421875, + -1.4453125, + -1.3125, + 2.671875, + 3.328125, + -3.09375, + 1.1171875, + -0.1748046875, + 1.1015625, + -2.09375, + 4.125, + 2.734375, + 2.875, + 0.296875, + 0.7734375, + -1.7578125, + 2.09375, + 1.5625, + -3.015625, + -0.5703125, + -0.1796875, + -0.435546875, + 0.0284423828125, + -0.06591796875, + -1.703125, + 2.203125, + 3.5625, + -1.3515625, + 0.671875, + 1.4140625, + -1.53125, + 1.125, + 2.359375, + 3.78125, + 1.21875, + -0.455078125, + -0.84765625, + 0.3359375, + -0.443359375, + 0.7890625, + -3.40625, + 0.66015625, + 3.40625, + -2.1875, + 1.6328125, + -1.4609375, + 0.91015625, + 0.2060546875, + 2.46875, + 0.8515625, + 0.39453125, + -2.640625, + 0.73828125, + 1.578125, + -0.474609375, + -0.3671875, + -2.53125, + 0.431640625, + 2.46875, + -0.1533203125, + 0.9296875, + -1.515625, + 1.9296875, + 1.203125, + -0.609375, + 4.40625, + -1.1875, + 2.953125, + -1.25, + 2.21875, + -2.5, + -1.953125, + 1.8671875, + -0.51953125, + 2.25, + 0.55078125, + -0.55078125, + -1.90625, + 2.28125, + 3.6875, + -0.00738525390625, + -2.1875, + 2.578125, + -1.9609375, + 2.0625, + -0.91796875, + 2.21875, + 3.0, + -1.90625, + -4.0, + -2.109375, + 0.97265625, + -0.73046875, + -4.21875, + 0.60546875, + 0.81640625, + 1.8125, + 1.7109375, + 1.140625, + -2.59375, + 3.8125, + 1.8203125, + -1.0625, + 1.7734375, + 2.546875, + -2.03125, + 1.3828125, + 3.375, + -0.296875, + -2.890625, + 2.234375, + 1.8359375, + 1.359375, + -3.78125, + 0.609375, + -2.171875, + -0.2578125, + -0.6796875, + 5.53125, + 2.171875, + 0.8203125, + -0.59765625, + 0.001617431640625, + 2.421875, + -1.5703125, + -1.5859375, + -0.32421875, + 2.34375, + -2.40625, + -1.4609375, + -3.125, + -2.765625, + 5.71875, + -0.546875, + 1.96875, + -3.671875, + 2.140625, + -0.8125, + -0.69140625, + -0.392578125, + 2.359375, + -1.7109375, + -0.06640625, + -1.8359375, + -0.81640625, + -3.34375, + 0.984375, + 0.859375, + 0.28125, + -2.34375, + -0.38671875, + -0.8046875, + -0.369140625, + 0.91015625, + 1.1875, + -1.8671875, + 0.7265625, + 1.5390625, + -1.1875, + 0.279296875, + 3.0625, + -3.578125, + 0.72265625, + 0.07861328125, + -2.5625, + -0.97265625, + 3.046875, + 0.13671875, + 1.84375, + -1.1484375, + 0.42578125, + 1.375, + -2.03125, + 2.234375, + -0.310546875, + 4.0625, + -0.027587890625, + 5.59375, + 0.435546875, + -0.390625, + -3.40625, + -1.359375, + -2.671875, + -0.89453125, + -1.96875, + -0.83203125, + -3.375, + -2.734375, + -0.78515625, + -0.23046875, + -2.609375, + 1.734375, + -3.671875, + -1.0234375, + -2.203125, + -0.45703125, + -1.5, + 1.296875, + 2.34375, + -0.4140625, + 0.166015625, + -0.859375, + -1.0546875, + 2.109375, + 1.90625, + -3.5625, + -5.78125, + 2.59375, + -1.265625, + 1.0546875, + -1.140625, + -0.169921875, + -4.96875, + 2.328125, + -1.8671875, + -3.640625, + 0.48828125, + -0.296875, + -0.58203125, + -2.1875, + -0.5078125, + 0.049072265625, + 0.76171875, + 1.1796875, + -0.8984375, + -4.1875, + 1.8359375, + 1.03125, + 1.6328125, + 0.7734375, + 0.19921875, + -0.79296875, + -2.40625, + 1.8125, + -2.78125, + 3.109375, + -0.703125, + 2.234375, + 0.71484375, + -1.875, + -2.59375, + 1.71875, + 1.8828125, + 2.8125, + -1.0078125, + 1.5859375, + 2.203125, + 0.53125, + 0.0625, + 3.8125, + 0.11083984375, + 1.5, + -3.0, + 2.53125, + -0.77734375, + 0.0281982421875, + 0.2119140625, + -1.078125, + -1.140625, + -3.484375, + -1.3203125, + 0.400390625, + 0.2294921875, + -0.019287109375, + -0.58984375, + -8.125, + 0.69140625, + 2.734375, + -0.92578125, + 1.6875, + -2.0625, + -1.546875, + 2.09375, + 2.515625, + -1.328125, + 0.2333984375, + -2.90625, + -0.021728515625, + 0.82421875, + 0.314453125, + 2.6875, + 0.921875, + -0.71484375, + 1.1640625, + 2.53125, + -0.640625, + 1.2578125, + -0.21484375, + -3.515625, + -0.515625, + -0.2734375, + 0.41015625, + -1.234375, + -1.078125, + 0.0302734375, + 0.59375, + 2.046875, + 0.0, + 3.328125, + -0.328125, + 1.6953125, + 2.046875, + -1.71875, + 4.84375, + -3.625, + 2.046875, + 0.7109375, + -0.01904296875, + -3.59375, + 1.234375, + 2.234375, + 1.7265625, + 3.84375, + 0.71484375, + -0.404296875, + -3.890625, + 2.578125, + -0.0576171875, + 2.390625, + -1.7890625, + -1.7421875, + -1.8671875, + 0.134765625, + -2.203125, + 3.46875, + 2.96875, + 2.5625, + 2.8125, + 0.25, + 0.181640625, + -0.7265625, + -1.078125, + 2.515625, + -1.0234375, + -4.15625, + 0.76171875, + -4.40625, + -0.043701171875, + 0.62890625, + 1.2890625, + 0.78125, + -1.2421875, + 1.2734375, + -0.56640625, + -4.0, + -0.859375, + 0.4375, + -2.078125, + 2.9375, + -1.65625, + 4.625, + 1.734375, + -0.490234375, + -4.46875, + -0.4609375, + 0.8046875, + -1.90625, + -3.546875, + 0.2119140625, + 4.53125, + 1.125, + -3.5625, + 0.89453125, + 0.0869140625, + -0.79296875, + -1.96875, + -0.55078125, + -2.78125, + 3.09375, + 3.328125, + 1.421875, + -0.5859375, + 0.77734375, + -2.96875, + -2.03125, + -1.7421875, + 2.203125, + 1.7578125, + 1.90625, + 1.546875, + -0.040771484375, + -0.06884765625, + 2.25, + 3.1875, + 0.80078125, + -1.0859375, + 0.3828125, + -0.357421875, + 1.59375, + 1.6171875, + 0.5546875, + -1.21875, + -1.1640625, + -0.35546875, + -1.0859375, + -2.34375, + 1.53125, + 4.0, + -0.75390625, + -1.828125, + 0.1962890625, + -5.21875, + -1.859375, + 2.03125, + -0.2353515625, + -2.328125, + 1.6484375, + -1.6328125, + 0.16015625, + 0.7890625, + -0.024658203125, + -0.09130859375, + 1.203125, + -0.94921875, + 1.453125, + -0.361328125, + 2.046875, + -4.84375, + 2.453125, + -1.65625, + 2.46875, + -1.5390625, + -0.30078125, + 0.640625, + -1.96875, + 0.6953125, + -1.71875, + -0.330078125, + 1.8046875, + 3.625, + -0.65625, + 1.0546875, + -1.28125, + 6.21875, + 1.375, + 0.75390625, + 4.71875, + -4.3125, + 3.140625, + 0.03857421875, + -4.9375, + 0.46875, + -1.9765625, + 0.91796875, + -3.375, + 0.419921875, + 2.6875, + -0.220703125, + -1.90625, + -1.5390625, + -3.375, + 3.046875, + -3.296875, + 1.5859375, + 0.2080078125, + -1.3046875, + 1.703125, + -3.4375, + -0.8203125, + 1.78125, + 0.154296875, + 3.421875, + 0.0537109375, + 0.13671875, + 4.3125, + -0.97265625, + -3.734375, + 0.294921875, + -1.296875, + -2.28125, + 0.51953125, + 1.9921875, + 0.7578125, + 1.3515625, + -1.1171875, + 2.140625, + -2.953125, + -1.4140625, + -5.0625, + 0.2734375, + -1.1640625, + -3.84375, + 0.640625, + 1.1640625, + -0.73828125, + -1.1640625, + 3.09375, + 1.0703125, + -1.84375, + 0.06640625, + 1.2890625, + 0.0233154296875, + 5.65625, + 1.2734375, + 0.357421875, + 1.8203125, + -2.140625, + 0.57421875, + 1.84375, + 2.578125, + 0.2275390625, + 0.6328125, + -0.0181884765625, + 3.8125, + -1.6171875, + -0.91015625, + 1.953125, + -1.9609375, + -1.9140625, + 2.140625, + -0.85546875, + 1.1796875, + -2.828125, + -0.427734375, + -0.1640625, + 1.2578125, + 1.8984375, + -2.234375, + -0.640625, + 0.23828125, + 1.7109375, + 0.90625, + 0.953125, + 2.765625, + -1.40625, + 1.046875, + -0.1982421875, + 1.2421875, + 0.0172119140625, + 3.171875, + 4.09375, + 1.84375, + 2.53125, + 0.224609375, + 2.65625, + -1.15625, + 3.0625, + 0.88671875, + 1.390625, + -3.171875, + -0.11865234375, + -0.04736328125, + 0.337890625, + -0.96875, + 0.0286865234375, + -0.283203125, + 2.15625, + -3.5, + -1.2890625, + 0.453125, + 1.765625, + -1.1484375, + 1.6875, + -3.96875, + -1.5390625, + 1.03125, + 0.2255859375, + 0.7734375, + 3.921875, + -0.76171875, + 4.65625, + 2.265625, + 1.3125, + -2.171875, + -1.4921875, + -0.50390625, + 0.21484375, + -3.0, + -1.453125, + -4.46875, + 0.416015625, + 3.359375, + -0.23828125, + 2.46875, + -1.203125, + -1.5, + -0.81640625, + -0.73046875, + -3.0, + -0.08984375, + -1.0, + 0.96484375, + -1.2265625, + 0.6484375, + 0.86328125, + -0.76171875, + -1.2109375, + -1.1484375, + 0.58984375, + -4.75, + -2.796875, + 0.75, + -4.90625, + -0.07177734375, + -1.84375, + 1.8828125, + -3.515625, + -2.90625, + -0.71875, + -1.5234375, + 6.78125, + 2.296875, + -1.2890625, + -0.08837890625, + -1.03125, + 1.09375, + -0.76171875, + 1.4609375, + 1.3828125, + -2.28125, + -1.359375, + 0.96875, + 3.921875, + 1.5390625, + -5.15625, + -0.1806640625, + -1.8828125, + -1.2734375, + -2.859375, + 1.1640625, + 5.4375, + -2.78125, + -1.3671875, + -1.453125, + -2.21875, + -1.6796875, + -1.03125, + -0.52734375, + 0.515625, + -1.5546875, + -0.50390625, + 3.0625, + 1.8203125, + -0.64453125, + -0.77734375, + -1.375, + -0.1005859375, + 1.6015625, + 0.55078125, + 0.8984375, + -1.125, + 0.60546875, + -1.5234375, + 0.89453125, + -2.328125, + -1.171875, + 0.6171875, + -2.1875, + 1.390625, + -2.484375, + 0.69921875, + 1.2890625, + 1.359375, + -3.09375, + 0.53125, + 3.296875, + 2.0625, + -0.80078125, + 0.228515625, + -0.75, + -1.1953125, + 0.95703125, + 1.125, + 1.5546875, + 0.61328125, + 1.8828125, + 1.859375, + 2.296875, + -2.078125, + 0.57421875, + 0.032958984375, + 0.359375, + 2.84375, + 3.421875, + -3.984375, + 3.25, + 2.515625, + 1.8203125, + 4.6875, + -0.224609375, + 0.11865234375, + 0.09228515625, + 1.984375, + 4.03125, + 2.21875, + -0.462890625, + -3.375, + -0.232421875, + -0.466796875, + 1.7578125, + -6.53125, + 0.5625, + 1.6875, + 7.875, + 0.22265625, + -0.32421875, + -0.62890625, + 0.60546875, + 2.34375, + 0.4140625, + 1.6328125, + -2.125, + -0.10205078125, + -0.431640625, + 0.8515625, + -0.11962890625, + 3.09375, + -0.04443359375, + -0.140625, + -0.2138671875, + -0.55859375, + 2.703125, + 3.9375, + 1.6875, + 0.310546875, + -0.79296875, + -0.921875, + 1.8828125, + -1.6953125, + -0.890625, + -0.5, + -1.0859375, + 0.5703125, + -2.96875, + -1.8984375, + -2.390625, + 0.470703125, + -2.40625, + 1.1875, + 1.375, + -0.86328125, + -3.140625, + -1.5234375, + 1.0625, + 4.3125, + -0.1376953125, + 1.1484375, + 1.5, + 1.265625, + -0.74609375, + 1.4765625, + 0.6328125, + 2.203125, + 2.34375, + 0.0888671875, + 0.78515625, + -0.455078125, + -0.47265625, + 0.10009765625, + -0.85546875, + -0.09375, + 1.0546875, + 0.5703125, + -2.75, + -0.63671875, + 0.6875, + -2.6875, + 0.1689453125, + 0.6328125, + -1.4921875, + -6.15625, + -0.80078125, + 0.66796875, + -2.953125, + -0.703125, + -0.0245361328125, + -3.96875, + -0.93359375, + -0.8203125, + 1.921875, + -2.703125, + -0.984375, + -0.1630859375, + 0.75390625, + 2.25, + 0.81640625, + -2.9375, + -3.0, + 1.5, + 1.7890625, + 1.3671875, + -1.0234375, + 1.1328125, + 2.28125, + -0.384765625, + 1.078125, + -0.8125, + -0.63671875, + -1.453125, + 3.03125, + -0.11181640625, + -1.75, + -4.40625, + 1.09375, + 0.6875, + -1.34375, + -0.39453125, + -0.55859375, + -0.72265625, + 3.265625, + 2.3125, + 1.7109375, + 1.1484375, + -3.0625, + -0.53515625, + 0.640625, + 3.140625, + -0.5859375, + 1.3515625, + 1.0546875, + 1.0859375, + 2.609375, + -2.859375, + -0.68359375, + 5.84375, + 0.99609375, + 0.67578125, + 1.578125, + -2.984375, + -1.0234375, + 4.15625, + 0.5703125, + 1.3828125, + -0.26171875, + 1.1484375, + -1.515625, + -1.765625, + -1.828125, + -1.1640625, + -2.484375, + -1.25, + -2.296875, + 0.58203125, + -0.5234375, + -2.5625, + -3.625, + -2.40625, + 3.234375, + -0.375, + 0.1640625, + 1.1484375, + 2.40625, + -0.890625, + 1.3359375, + -1.03125, + 0.65234375, + 0.123046875, + 0.875, + 3.84375, + -1.921875, + 0.04443359375, + 1.0234375, + -3.890625, + -1.1171875, + -3.0, + 1.3203125, + -1.4453125, + 2.140625, + -3.375, + 2.75, + 6.65625, + -2.0, + 2.421875, + -2.390625, + 2.78125, + -2.71875, + 1.0546875, + 1.7578125, + -0.55859375, + 2.8125, + -0.470703125, + 0.01153564453125, + -1.4921875, + 3.515625, + -0.94140625, + -0.2119140625, + -0.7890625, + 1.4375, + 5.125, + 0.2314453125, + 1.578125, + 0.68359375, + 3.109375, + 1.5703125, + 0.609375, + -0.150390625, + -2.34375, + -0.57421875, + 0.52734375, + 0.90234375, + 1.828125, + 2.890625, + 1.03125, + -1.265625, + 0.451171875, + 0.2080078125, + -0.01373291015625, + 1.6484375, + 0.640625, + 1.7578125, + -1.984375, + 2.515625, + -2.328125, + -4.34375, + -2.109375, + -0.038330078125, + 0.8515625, + -0.82421875, + 0.0, + 2.5625, + 0.19140625, + 1.3359375, + -0.07666015625, + 2.984375, + 0.19140625, + 1.96875, + 1.703125, + -3.21875, + -1.90625, + 0.54296875, + -1.953125, + 0.427734375, + 5.9375, + 0.0179443359375, + -3.796875, + 2.515625, + 3.1875, + -1.0390625, + 0.87890625, + -0.1455078125, + -1.078125, + -2.125, + -2.84375, + 0.6328125, + 0.51171875, + -0.56640625, + -0.6640625, + -2.109375, + -2.046875, + 0.357421875, + -3.375, + 0.5625, + -3.109375, + -2.359375, + 1.21875, + -0.65234375, + 1.8671875, + -0.259765625, + -3.1875, + 1.1640625, + -0.8671875, + -11.0, + 0.51953125, + 2.359375, + -0.34375, + -0.91015625, + 2.0, + -3.0625, + -2.5, + -2.125, + -1.3828125, + 0.10400390625, + -2.4375, + -1.984375, + -0.77734375, + 0.49609375, + 0.515625, + -0.625, + 2.28125, + 1.640625, + -0.87890625, + 0.86328125, + -0.1826171875, + 1.1484375, + -0.484375, + 0.474609375, + 5.34375, + 1.4453125, + 0.494140625, + -2.359375, + 2.421875, + 0.84375, + 2.1875, + -0.361328125, + 1.140625, + -0.70703125, + 1.390625, + 1.078125, + -0.25390625, + -1.0703125, + 1.3515625, + 0.76171875, + 0.96484375, + -0.984375, + 1.2421875, + 3.75, + -1.453125, + -3.265625, + 0.49609375, + 3.453125, + 1.953125, + -1.3984375, + 1.09375, + -0.318359375, + -0.609375, + 1.71875, + -1.5234375, + -2.9375, + 0.0218505859375, + 0.314453125, + 2.9375, + -0.5234375, + -0.57421875, + -0.7890625, + 1.0, + 0.87890625, + -3.8125, + 4.75, + 5.375, + 0.77734375, + 1.859375, + -0.314453125, + -1.734375, + 0.341796875, + -3.390625, + -0.87109375, + 1.09375, + 1.828125, + -7.71875, + 1.234375, + -1.8359375, + 1.5625, + 1.546875, + 0.80078125, + -1.8203125, + -1.796875, + 5.03125, + -1.0390625, + 1.09375, + -0.65234375, + 2.125, + -2.390625, + 0.1328125, + -1.171875, + -2.84375, + 1.7109375, + 1.7734375, + -1.59375, + -1.8046875, + -0.189453125, + -2.609375, + 0.25390625, + -0.5234375, + 0.89453125, + -0.158203125, + -1.0078125, + -2.375, + 2.703125, + 0.7109375, + 0.59375, + 1.796875, + -0.99609375, + -1.6953125, + 0.98828125, + 1.3828125, + -0.1015625, + 1.0546875, + -0.73046875, + 1.96875, + -1.9609375, + 1.890625, + -1.2109375, + -0.12158203125, + -1.3828125, + -2.75, + 3.109375, + 1.5234375, + -1.0234375, + 2.734375, + 3.5, + 0.8359375, + -2.59375, + -1.1640625, + -1.8359375, + 3.125, + 2.390625, + 2.109375, + -1.9765625, + -0.55859375, + -2.265625, + -2.5, + -3.046875, + -1.3984375, + -3.140625, + -2.78125, + 0.232421875, + 1.296875, + -1.140625, + -9.375, + -2.796875, + -0.00482177734375, + -1.6875, + -0.255859375, + 1.0390625, + -0.65234375, + 0.40625, + -2.21875, + 2.265625, + -0.53515625, + -0.640625, + 0.56640625, + 4.3125, + -1.25, + 0.9609375, + 1.1484375, + -1.859375, + -0.48046875, + 2.46875, + 2.640625, + 1.6953125, + 1.4765625, + 0.78515625, + 1.265625, + 0.263671875, + -0.54296875, + -1.8125, + 0.3515625, + -0.6328125, + -0.12890625, + 1.15625, + -1.484375, + -2.796875, + -4.625, + -4.96875, + -1.859375, + 0.69921875, + 0.53125, + -1.5, + -2.0625, + 1.0546875, + -1.8984375, + 2.125, + 1.4765625, + -3.609375, + 0.625, + -1.8046875, + -1.1875, + 0.455078125, + -0.00909423828125, + -1.3359375, + -3.46875, + 1.265625, + -0.51953125, + 1.28125, + 2.3125, + 2.203125, + -0.76953125, + 1.03125, + -0.0294189453125, + 0.322265625, + 2.84375, + -0.8984375, + 2.484375, + 2.0, + -0.1796875, + -1.2109375, + -0.91796875, + -0.76953125, + 2.234375, + -0.76171875, + 5.25, + -0.85546875, + -0.019775390625, + 1.8125, + -1.8671875, + -2.25, + 0.18359375, + -0.26171875, + 4.46875, + -0.50390625, + -0.54296875, + 1.4765625, + -4.0625, + 1.421875, + -2.609375, + -0.46875, + -1.78125, + 1.5078125, + -1.734375, + 1.9296875, + 0.12109375, + 1.46875, + -2.5625, + -0.734375, + -0.75, + 0.83203125, + 5.28125, + 0.7734375, + 2.875, + -0.50390625, + 1.796875, + 0.455078125, + 1.2265625, + 1.046875, + -1.1640625, + -1.2578125, + -0.2265625, + 0.609375, + -1.234375, + 1.46875, + 0.107421875, + -0.34375, + -0.58203125, + 0.99609375, + 1.359375, + -4.5625, + -2.9375, + 1.703125, + -0.41015625, + 0.70703125, + 2.828125, + 2.34375, + -2.375, + 2.75, + 1.1796875, + 4.65625, + 0.62109375, + 1.375, + 0.59765625, + 2.25, + 3.65625, + 1.5, + -5.78125, + -2.65625, + -2.59375, + 0.478515625, + 0.279296875, + -3.453125, + 0.640625, + 1.6484375, + 1.9453125, + 1.671875, + -2.8125, + 4.09375, + -2.765625, + 0.439453125, + 1.5703125, + 0.5703125, + 1.8125, + 0.6328125, + -3.640625, + 1.3984375, + -0.70703125, + 6.28125, + 1.046875, + -0.5390625, + 0.031005859375, + 0.494140625, + 3.296875, + 1.3515625, + -0.6796875, + 0.69140625, + 3.96875, + 0.3046875, + 0.09326171875, + -1.9765625, + -0.197265625, + -2.46875, + -0.310546875, + 2.6875, + -1.3046875, + 0.431640625, + -2.296875, + 1.5234375, + 1.75, + 0.31640625, + 0.92578125, + 0.97265625, + 1.734375, + -0.369140625, + -2.125, + -4.125, + 0.98828125, + -1.140625, + 1.4765625, + -1.2109375, + -0.984375, + 2.671875, + -0.70703125, + -0.84375, + 3.140625, + -0.29296875, + -3.734375, + -2.25, + 1.1171875, + 3.9375, + 0.5859375, + -1.5859375, + -0.2373046875, + 0.0947265625, + 1.09375, + -1.734375, + 0.609375, + 1.2890625, + 1.1875, + -0.9453125, + -0.4765625, + 0.20703125, + 0.578125, + -3.3125, + 5.09375, + 0.1943359375, + 0.2578125, + 2.640625, + 0.90625, + -0.43359375, + -2.234375, + 0.50390625, + -0.09130859375, + 1.53125, + 0.396484375, + -0.1318359375, + -1.9296875, + 0.30078125, + -0.7265625, + -2.03125, + 3.453125, + 9.125, + 1.5703125, + -3.515625, + -0.07568359375, + -1.09375, + 0.7421875, + -0.1865234375, + -11.125, + 1.3203125, + -2.4375, + -0.66015625, + 0.5546875, + -1.375, + -0.1875, + -4.125, + 0.62890625, + 0.9453125, + -1.984375, + -2.15625, + 0.51953125, + -2.34375, + 1.9921875, + 1.4296875, + -1.265625, + -2.078125, + -2.078125, + 0.0537109375, + -0.205078125, + -0.439453125, + 0.9921875, + -0.6796875, + 1.9296875, + 1.6875, + -0.251953125, + 0.71484375, + 3.734375, + -0.890625, + 2.84375, + 4.90625, + 2.0625, + 0.15625, + 0.5234375, + 2.921875, + 3.265625, + -3.875, + -0.9375, + -2.765625, + -1.609375, + 0.76171875, + 1.4609375, + -1.3203125, + 0.271484375, + 0.68359375, + -2.375, + 1.3984375, + -0.8515625, + 0.255859375, + -2.65625, + 1.09375, + 0.79296875, + 4.125, + 1.359375, + -2.484375, + -1.1640625, + -1.4375, + 0.34375, + 3.21875, + -2.8125, + 0.8125, + -3.09375, + -0.0240478515625, + -1.640625, + -0.390625, + 4.96875, + 2.609375, + -0.404296875, + 0.150390625, + 0.91796875, + -0.92578125, + -3.046875, + -1.71875, + 1.3515625, + 2.6875, + -1.5625, + 1.9375, + 0.296875, + 3.109375, + 1.96875, + -0.93359375, + 2.84375, + 1.3203125, + 2.390625, + 4.03125, + -0.19921875, + -0.84765625, + 0.482421875, + -0.455078125, + 1.625, + 2.390625, + -1.0234375, + -2.203125, + 4.09375, + 2.265625, + -0.9765625, + -1.921875, + -1.1796875, + -1.21875, + -0.46484375, + 0.5625, + 3.15625, + 0.0595703125, + 0.263671875, + 3.171875, + -1.9375, + -0.5078125, + -2.5, + 0.1240234375, + 1.53125, + 2.21875, + -1.8515625, + -0.046875, + -0.2490234375, + 0.201171875, + 1.5859375, + 0.98828125, + -2.421875, + -3.546875, + -1.8515625, + -2.375, + -0.330078125, + -0.255859375, + 2.859375, + 1.5234375, + 0.171875, + 1.0625, + 4.3125, + 2.0, + -1.359375, + -3.9375, + 0.07177734375, + 0.77734375, + 0.66796875, + 1.9453125, + -0.1708984375, + 0.107421875, + 4.8125, + 4.4375, + -3.375, + 0.333984375, + 1.9609375, + -1.296875, + 0.36328125, + 0.37109375, + 0.97265625, + 1.7421875, + -1.65625, + 3.21875, + 1.1171875, + 0.75, + 1.46875, + -0.10205078125, + 1.1875, + -0.353515625, + 1.3828125, + -1.7578125, + 0.004730224609375, + -4.53125, + -3.140625, + -0.64453125, + -6.34375, + 0.447265625, + -2.078125, + 2.8125, + 0.765625, + -0.267578125, + -0.142578125, + 4.34375, + -2.1875, + -3.1875, + -0.98046875, + 0.271484375, + 1.6171875, + 0.66796875, + 2.859375, + 4.1875, + 1.71875, + -2.375, + 1.6953125, + -0.134765625, + -2.03125, + 1.0546875, + 0.2158203125, + -2.328125, + 3.75, + 1.1015625, + 0.1796875, + 3.921875, + 5.90625, + -2.34375, + -0.474609375, + -0.66796875, + -0.60546875, + -2.484375, + -1.2109375, + 0.333984375, + 0.2080078125, + 0.1474609375, + -1.9921875, + -0.400390625, + 0.9140625, + -2.671875, + -0.80859375, + 1.4375, + 1.2109375, + 4.59375, + -2.1875, + 1.53125, + 1.2421875, + 0.34375, + 1.671875, + -0.318359375, + 2.0, + 0.49609375, + -3.1875, + -0.37109375, + -1.0078125, + 1.828125, + -1.4140625, + -0.208984375, + 1.3046875, + 3.125, + -1.0703125, + -0.87109375, + -2.78125, + -2.515625, + 0.859375, + -1.2890625, + -2.6875, + -1.5859375, + -0.69921875, + 0.04736328125, + 2.984375, + -1.7421875, + 1.3046875, + 2.234375, + -0.2578125, + 1.8828125, + 1.0703125, + 0.58203125, + -0.423828125, + 4.53125, + -2.03125, + -0.9453125, + 1.5, + 3.234375, + -2.796875, + -0.78125, + -0.57421875, + -1.609375, + -4.90625, + 1.53125, + -1.0, + 2.09375, + -1.4375, + -1.96875, + -1.4765625, + 0.52734375, + -0.6171875, + 3.09375, + -2.25, + -1.7890625, + 2.09375, + -0.85546875, + -0.93359375, + 3.453125, + 0.302734375, + -0.423828125, + 0.81640625, + -0.0888671875, + 2.34375, + 0.40625, + -1.3984375, + 2.453125, + -2.4375, + 0.5703125, + 2.84375, + -2.046875, + 2.3125, + 0.212890625, + -0.3984375, + -1.1875, + -2.5, + -2.609375, + -0.09521484375, + -1.6171875, + -1.0703125, + 1.2421875, + -2.484375, + 1.453125, + 1.6640625, + 0.2158203125, + 1.9453125, + 0.025634765625, + -0.78125, + 1.171875, + -0.4453125, + 5.5, + 0.5859375, + -1.6796875, + 2.359375, + -0.037353515625, + 0.11083984375, + 2.421875, + -2.8125, + -2.609375, + -1.640625, + -1.609375, + -2.078125, + -0.515625, + -1.0078125, + -2.28125, + -3.015625, + 4.46875, + 0.279296875, + 8.9375, + 1.984375, + -0.055908203125, + 4.0, + -1.125, + 1.59375, + -0.451171875, + -0.609375, + 0.98828125, + -0.5234375, + -1.109375, + 1.7890625, + 0.8203125, + -0.25390625, + -0.9921875, + 3.953125, + -1.9375, + -1.59375, + -0.796875, + 3.1875, + 2.4375, + -1.875, + -1.8984375, + 1.4765625, + -3.28125, + 0.55078125, + 0.83203125, + -9.875, + -0.70703125, + 5.0, + 3.671875, + 0.6328125, + -0.33203125, + -0.216796875, + -1.40625, + 1.734375, + -0.60546875, + 2.28125, + 1.125, + 0.2216796875, + -2.828125, + -1.8515625, + -0.10986328125, + 2.484375, + 1.1953125, + -6.53125, + 0.333984375, + -0.75, + 1.5, + -0.12255859375, + 0.65234375, + -1.609375, + -1.3359375, + 1.46875, + 1.375, + -1.484375, + -0.033935546875, + -0.515625, + -5.375, + -1.21875, + -2.234375, + -1.75, + -1.0546875, + -2.0625, + -2.6875, + 1.1953125, + 1.0234375, + 0.52734375, + 0.427734375, + 0.423828125, + -0.1484375, + 0.0, + -3.21875, + 0.31640625, + 0.173828125, + -1.5, + -1.3203125, + -3.1875, + 0.291015625, + 0.203125, + -1.5390625, + 0.044189453125, + 0.046142578125, + 2.3125, + -0.5859375, + 1.046875, + -3.765625, + 2.5, + -0.7109375, + 0.98828125, + 0.48046875, + 0.390625, + -4.6875, + -0.7421875, + 1.859375, + 4.03125, + -2.46875, + -0.1240234375, + -1.59375, + 0.271484375, + -0.2265625, + -2.25, + -0.515625, + -0.96484375, + 0.84765625, + 0.09326171875, + 2.09375, + 3.359375, + 1.4609375, + 0.70703125, + -1.9453125, + -0.671875, + -2.03125, + 0.2060546875, + -1.078125, + -2.65625, + 3.203125, + -1.59375, + -0.52734375, + -0.036865234375, + 0.326171875, + 2.75, + 12.4375, + -0.455078125, + -0.1689453125, + 1.671875, + 0.0908203125, + -2.15625, + 0.064453125, + -4.65625, + -3.421875, + 3.953125, + 1.3828125, + -1.3203125, + 1.859375, + 5.03125, + -1.5078125, + -0.2314453125, + -0.255859375, + 1.671875, + 1.40625, + 0.6796875, + 0.65625, + 1.3828125, + -1.21875, + -2.109375, + 0.486328125, + -0.083984375, + -2.515625, + -1.953125, + 0.68359375, + -1.59375, + -0.6796875, + -4.09375, + -1.453125, + 1.9921875, + 1.21875, + 1.5078125, + -1.7578125, + 2.46875, + 1.265625, + 0.4765625, + -0.796875, + -0.83203125, + 2.53125, + -0.1396484375, + 0.23828125, + 0.87890625, + 1.7578125, + -0.4140625, + 2.046875, + -0.205078125, + 0.5390625, + -0.310546875, + -0.04052734375, + 1.953125, + -2.046875, + -0.94140625, + 2.125, + -1.1171875, + 0.51953125, + -0.69140625, + 1.140625, + 0.78125, + 1.7890625, + -0.28515625, + 0.96484375, + 5.28125, + -4.4375, + -2.453125, + -0.1923828125, + 0.61328125, + -0.490234375, + 1.25, + -0.2001953125, + 0.9296875, + 0.51171875, + -0.515625, + 0.474609375, + 0.1337890625, + 1.1953125, + -1.25, + 3.609375, + -1.859375, + 0.99609375, + 0.310546875, + -0.8515625, + -2.140625, + 2.578125, + 2.484375, + 1.4453125, + 0.060302734375, + -0.32421875, + 4.375, + 1.171875, + -1.6328125, + 3.828125, + -1.0078125, + -0.466796875, + -2.21875, + 0.48046875, + 0.33984375, + -0.55859375, + 1.1875, + -2.796875, + 3.1875, + 0.400390625, + 2.3125, + 0.054931640625, + -4.90625, + 1.3515625, + -0.0137939453125, + 1.125, + -1.6484375, + -1.4140625, + -2.4375, + -0.2099609375, + -0.451171875, + -1.8046875, + 0.88671875, + 3.203125, + 0.53515625, + -1.9375, + 3.03125, + -2.484375, + -0.283203125, + 0.1904296875, + -2.34375, + 0.63671875, + -3.265625, + -0.85546875, + -0.1279296875, + 2.25, + -4.0625, + 2.4375, + -1.265625, + 0.0, + -1.0234375, + 0.287109375, + 0.310546875, + 2.21875, + -1.796875, + -2.328125, + 2.484375, + -2.09375, + 2.78125, + 1.1328125, + -1.8203125, + -2.09375, + -1.0859375, + -2.4375, + -2.0625, + -1.328125, + 0.26953125, + -1.2890625, + 2.984375, + 2.125, + 0.84765625, + -0.78515625, + -1.1875, + 0.388671875, + -2.828125, + 1.5546875, + 2.25, + 1.03125, + 0.828125, + 2.28125, + -3.125, + -1.078125, + -1.4765625, + -0.23046875, + 2.453125, + -4.59375, + 1.6640625, + 0.8671875, + 0.17578125, + 2.359375, + 0.9375, + -2.390625, + -0.79296875, + 5.0625, + 1.46875, + 0.796875, + 0.11328125, + -0.004730224609375, + 2.3125, + 1.0546875, + 0.2734375, + -0.042724609375, + -0.138671875, + 4.5625, + -1.21875, + -0.1923828125, + -1.4453125, + -1.421875, + -0.44140625, + 0.138671875, + -1.9921875, + -0.94140625, + -2.484375, + 0.3515625, + 3.171875, + -1.5, + -0.93359375, + 1.0625, + 4.8125, + -2.078125, + 0.026611328125, + -0.2890625, + 4.625, + -4.21875, + 0.52734375, + 1.6328125, + -0.08984375, + -0.8828125, + 0.69140625, + 2.59375, + -2.40625, + 1.75, + 0.68359375, + 0.9296875, + 0.1328125, + -1.015625, + 1.1953125, + -0.98828125, + 2.484375, + -0.3359375, + 3.703125, + 1.4453125, + 1.28125, + -0.984375, + -0.5703125, + 4.5, + 0.578125, + 4.9375, + -0.1572265625, + -1.1640625, + -4.09375, + -0.181640625, + 1.2734375, + -0.15234375, + -2.171875, + -2.46875, + 1.328125, + 0.55859375, + -2.34375, + -0.486328125, + 0.1572265625, + 1.3828125, + -2.0, + -0.75390625, + 0.04638671875, + -2.296875, + -0.6484375, + 0.443359375, + 3.015625, + -0.484375, + -2.75, + -0.87109375, + -0.62109375, + -0.490234375, + -0.298828125, + -0.1708984375, + 1.5859375, + 2.28125, + 0.6171875, + 0.9296875, + 1.296875, + 1.8671875, + 2.765625, + -4.03125, + -2.609375, + -1.7578125, + 0.470703125, + -2.8125, + -0.890625, + -1.3515625, + 2.53125, + -2.234375, + -2.4375, + -1.7890625, + 0.6171875, + -2.75, + -2.90625, + 1.4453125, + -2.234375, + 1.34375, + -0.56640625, + -1.3828125, + 0.66796875, + -1.0546875, + -1.3203125, + -1.453125, + -0.71484375, + 0.314453125, + 0.875, + 1.1328125, + -0.181640625, + 2.3125, + -0.126953125, + -2.65625, + 1.6171875, + -1.0234375, + 0.359375, + 0.023681640625, + -3.59375, + -1.2421875, + -0.81640625, + 0.388671875, + -0.828125, + -0.57421875, + -0.91796875, + -2.859375, + 0.11669921875, + -0.5703125, + -5.28125, + -0.62109375, + -2.6875, + -2.59375, + 1.171875, + -3.359375, + 0.640625, + -0.392578125, + 0.57421875, + 0.8984375, + 1.421875, + -0.265625, + -0.396484375, + 1.578125, + 1.3125, + 2.09375, + -1.140625, + -2.46875, + -1.421875, + 1.2890625, + -1.3359375, + -0.71484375, + -0.19140625, + 1.3359375, + -0.625, + 1.0703125, + -1.328125, + 0.208984375, + -0.3046875, + 0.86328125, + -0.5234375, + 0.28125, + -2.78125, + -0.796875, + 1.640625, + -1.4296875, + 1.265625, + 0.39453125, + -0.1484375, + -1.6953125, + -2.828125, + -0.0296630859375, + -0.8515625, + -3.734375, + 1.28125, + -1.09375, + -0.609375, + -0.08251953125, + -2.0, + 1.2890625, + -3.359375, + 0.267578125, + 2.890625, + -6.0, + -1.8359375, + -1.515625, + 0.5078125, + 0.73828125, + 2.90625, + -1.8515625, + -0.5390625, + 1.5078125, + -0.734375, + -0.6328125, + 0.388671875, + -2.09375, + -1.40625, + 1.3046875, + 3.125, + 2.765625, + 2.3125, + 2.40625, + 2.078125, + -5.6875, + -0.00140380859375, + -1.1953125, + -1.7265625, + -2.265625, + -0.2177734375, + -0.58203125, + 3.046875, + -1.921875, + -10.8125, + 0.421875, + -0.423828125, + -1.8828125, + -0.08349609375, + 1.9609375, + -2.46875, + 0.9921875, + -2.484375, + 0.953125, + 3.8125, + -1.5625, + 1.546875, + -2.171875, + 2.4375, + 0.15234375, + 0.73828125, + 2.390625, + 1.375, + -0.60546875, + 0.287109375, + 2.71875, + 0.90234375, + -1.03125, + -0.92578125, + 0.765625, + -1.765625, + 1.515625, + -2.78125, + -3.625, + -0.9140625, + 1.453125, + 0.23046875, + 0.423828125, + -0.796875, + 0.7265625, + 2.8125, + -0.22265625, + 1.484375, + -1.40625, + 1.46875, + -3.5, + -0.1220703125, + -1.640625, + 2.484375, + 0.2890625, + -1.78125, + -3.140625, + -1.4609375, + -0.66796875, + 1.484375, + 4.28125, + 2.515625, + 0.265625, + 2.171875, + -1.1328125, + -1.1953125, + -1.0234375, + 1.0078125, + -2.015625, + -1.0, + -0.94140625, + -0.8203125, + 0.41015625, + -1.9296875, + 3.21875, + 2.421875, + -0.71875, + -0.88671875, + 1.28125, + 0.126953125, + -2.5625, + 0.95703125, + 1.3125, + -2.40625, + -2.375, + 2.5, + -0.01904296875, + -0.208984375, + -0.9609375, + 0.93359375, + 1.3984375, + -0.9609375, + 0.44921875, + 6.1875, + 1.4296875, + 2.828125, + -2.0625, + -0.94140625, + 0.466796875, + -0.89453125, + -1.53125, + 1.09375, + -3.1875, + 0.85546875, + 0.9375, + 1.5546875, + -0.74609375, + 2.453125, + -0.19921875, + -2.75, + 2.015625, + -0.33203125, + 6.09375, + -0.333984375, + 3.171875, + 2.03125, + 0.29296875, + 3.6875, + 0.1591796875, + -1.25, + 0.53515625, + 3.703125, + -3.609375, + -1.3203125, + 0.91015625, + 1.765625, + 2.984375, + -1.28125, + -2.609375, + -1.4453125, + -1.046875, + 0.051513671875, + 0.1298828125, + -2.4375, + -0.83984375, + 0.6484375, + -0.49609375, + -1.0390625, + 2.25, + 0.32421875, + 2.640625, + 2.09375, + 0.423828125, + 1.4375, + 0.83203125, + 0.81640625, + 2.25, + 0.546875, + -0.322265625, + 2.5625, + -1.53125, + -2.359375, + 1.3203125, + -0.29296875, + 2.109375, + 0.51953125, + 4.0625, + -1.140625, + 0.67578125, + 0.78515625, + -1.375, + 1.53125, + -0.30078125, + -0.2177734375, + 3.171875, + -2.75, + 2.703125, + 0.1953125, + -1.453125, + 5.9375, + -0.6484375, + -1.4296875, + 0.640625, + 0.1298828125, + 0.796875, + 0.99609375, + -2.65625, + 1.578125, + -0.1865234375, + 0.7109375, + 0.412109375, + 0.97265625, + -1.0625, + -2.46875, + -1.3203125, + 0.95703125, + -2.71875, + 1.0078125, + -1.796875, + 1.5390625, + -2.203125, + -1.40625, + -1.78125, + 1.8828125, + 2.734375, + -0.5703125, + 1.5, + -1.1953125, + 0.57421875, + 1.453125, + -2.921875, + 1.5546875, + -0.84375, + 0.490234375, + 0.3828125, + -0.8046875, + 0.353515625, + -0.8359375, + -3.890625, + 0.69140625, + -0.859375, + -0.31640625, + 0.98828125, + -3.265625, + -1.7109375, + -7.46875, + 2.234375, + -0.333984375, + -0.4921875, + -1.359375, + 0.361328125, + 0.060302734375, + -1.1875, + 1.8359375, + 1.8125, + -1.8984375, + -0.1923828125, + -3.15625, + -1.4765625, + 3.90625, + -0.984375, + 0.73828125, + -2.34375, + -2.0625, + -4.59375, + -0.47265625, + 0.0, + 3.6875, + -0.0615234375, + -1.8515625, + 2.359375, + 2.578125, + -1.5859375, + 0.5078125, + 2.046875, + 0.62890625, + -0.65234375, + 1.328125, + -1.4765625, + -0.953125, + -8.0, + -0.7265625, + 0.1796875, + 0.494140625, + 2.53125, + -0.12060546875, + 1.8046875, + -0.08056640625, + 3.390625, + -1.046875, + 0.44921875, + -1.78125, + -1.125, + -1.7109375, + -0.6171875, + -1.9296875, + -2.15625, + -0.302734375, + -3.359375, + 2.078125, + -1.359375, + 0.625, + 3.171875, + -0.5703125, + -1.9921875, + -0.042236328125, + -4.03125, + -0.76171875, + -1.078125, + 0.54296875, + -0.94921875, + 0.455078125, + 2.765625, + 0.349609375, + 0.9609375, + -0.7734375, + 0.333984375, + -1.3515625, + 0.890625, + -1.375, + -1.7109375, + 2.796875, + 0.04296875, + -2.25, + 3.265625, + 1.703125, + 1.7421875, + 3.40625, + 0.1103515625, + -0.400390625, + -1.8203125, + 3.0625, + -3.453125, + 3.734375, + -4.5, + 2.203125, + -0.36328125, + -0.81640625, + 6.09375, + -1.96875, + -5.0625, + 0.318359375, + 1.1640625, + 2.9375, + 3.40625, + 1.3203125, + -1.09375, + 1.6875, + -2.609375, + -2.828125, + -1.078125, + -0.51953125, + 1.8046875, + 0.06787109375, + 1.859375, + -0.58984375, + -2.125, + -1.15625, + -0.2734375, + 1.2265625, + 0.0576171875, + 0.150390625, + 2.078125, + -2.53125, + -2.390625, + 2.65625, + 0.2119140625, + 2.859375, + -6.09375, + -1.8203125, + -0.7890625, + -2.171875, + -2.515625, + 0.21875, + -1.0078125, + 1.546875, + -1.75, + 1.21875, + 2.75, + 1.3671875, + -0.4609375, + 2.140625, + -0.6640625, + -0.056884765625, + -1.0390625, + 2.265625, + 0.7890625, + 0.7265625, + 3.46875, + -2.296875, + -1.71875, + -0.75390625, + -2.53125, + -1.734375, + -0.53515625, + -1.90625, + 4.40625, + -0.064453125, + 1.15625, + 2.015625, + 1.1640625, + 1.3671875, + 1.0625, + 1.375, + -0.08447265625, + -2.484375, + -0.349609375, + -15.0, + 1.5, + -0.91015625, + 4.34375, + -1.1171875, + 2.5, + 3.5, + -2.34375, + 0.83203125, + -0.1748046875, + 3.21875, + 0.546875, + 1.1953125, + 2.21875, + 0.69921875, + -4.625, + 1.0234375, + -0.024169921875, + 0.94921875, + -0.259765625, + -0.232421875, + 1.0, + -1.0703125, + 1.28125, + 0.80859375, + -1.46875, + 1.5, + 0.3828125, + -2.640625, + -3.453125, + 3.921875, + -1.359375, + 1.9765625, + -3.8125, + 1.0625, + -1.671875, + -0.51171875, + -1.421875, + -0.75, + 3.0625, + -0.08642578125, + 0.75, + -0.6015625, + -0.90234375, + 1.0859375, + 1.8125, + -1.8359375, + 0.353515625, + -2.515625, + -0.408203125, + -0.1708984375, + 0.130859375, + 0.494140625, + -0.03515625, + 0.28515625, + -1.2578125, + -1.5078125, + -6.25, + -3.1875, + 0.255859375, + 2.4375, + 2.234375, + 3.25, + 0.423828125, + -2.328125, + 2.421875, + 1.1484375, + -0.1669921875, + -0.87109375, + 2.5, + 1.796875, + 0.515625, + 1.9140625, + 2.28125, + 0.0, + -2.125, + -2.296875, + 2.75, + 0.1416015625, + -0.439453125, + 1.3125, + -1.2265625, + -0.251953125, + 1.09375, + -0.96484375, + 1.0234375, + -0.494140625, + 2.046875, + -0.8046875, + -0.8125, + 2.15625, + 0.30078125, + -5.0625, + 3.796875, + 0.6796875, + 0.2197265625, + -1.1328125, + 0.12158203125, + -1.5546875, + -1.0234375, + 0.232421875, + -0.91796875, + 2.78125, + 1.421875, + 2.265625, + 2.734375, + 0.79296875, + -0.40234375, + 2.203125, + 2.9375, + -1.015625, + -1.53125, + 1.0234375, + 0.46484375, + -0.8359375, + -2.125, + -1.5546875, + 0.31640625, + -1.0859375, + 0.37109375, + 2.46875, + -1.625, + -1.75, + -0.0654296875, + -0.0947265625, + 2.984375, + -1.5, + 3.015625, + 0.53515625, + 3.921875, + -2.234375, + 0.75390625, + -1.453125, + -1.1328125, + -2.5, + 3.734375, + -3.828125, + 0.302734375, + 0.1611328125, + -0.6484375, + -2.078125, + -1.9375, + -0.341796875, + 1.3359375, + -0.25, + -2.953125, + 2.234375, + -2.375, + 0.49609375, + -3.59375, + 0.08837890625, + 8.0625, + -0.625, + -0.95703125, + 0.8671875, + 0.2119140625, + 3.078125, + 0.95703125, + 3.421875, + 0.05029296875, + 2.109375, + -2.796875, + -1.8359375, + -1.3046875, + -2.078125, + -0.98828125, + -1.0390625, + -1.1875, + 0.07470703125, + 0.08056640625, + -1.8671875, + 1.453125, + 3.09375, + -0.71875, + 1.046875, + 3.640625, + 0.54296875, + -0.69921875, + 1.2109375, + 5.84375, + 0.8828125, + -0.3828125, + 0.35546875, + -0.068359375, + -1.2109375, + -1.015625, + 0.94140625, + 0.330078125, + -1.25, + 2.171875, + 0.59765625, + 0.490234375, + 0.95703125, + -1.4140625, + 0.78515625, + 2.234375, + -2.46875, + -0.2275390625, + 0.55859375, + -3.796875, + -1.671875, + -2.828125, + -2.015625, + 0.326171875, + 3.3125, + -0.94921875, + 0.042236328125, + 0.671875, + -2.53125, + -1.1328125, + 1.453125, + -0.6328125, + -0.5546875, + -0.357421875, + -0.9453125, + 0.3125, + 1.1484375, + -0.28125, + 3.28125, + 3.0, + -0.11279296875, + -0.412109375, + 1.421875, + -0.412109375, + 1.8203125, + 0.33203125, + 2.078125, + -1.296875, + -3.84375, + 0.78125, + -0.6953125, + -1.0234375, + 0.396484375, + 1.0625, + -0.21875, + 1.390625, + 0.014404296875, + 3.15625, + 0.42578125, + -0.1796875, + 0.384765625, + 1.25, + 1.96875, + 0.9375, + -1.9609375, + 0.06298828125, + 0.1337890625, + -4.3125, + -0.1767578125, + -1.09375, + -1.640625, + -0.4296875, + 1.375, + 3.59375, + -2.671875, + 1.7578125, + 1.1875, + 2.640625, + -1.4296875, + -0.1640625, + 1.9375, + -1.6953125, + 0.6015625, + 1.296875, + 0.734375, + 0.79296875, + -0.8671875, + 0.361328125, + -3.421875, + -1.8984375, + 4.6875, + 0.57421875, + 2.09375, + 2.953125, + -2.5, + 0.12890625, + -1.71875, + 1.1875, + 2.59375, + -0.65625, + 2.859375, + 0.7890625, + -1.9921875, + -3.625, + -1.609375, + -2.671875, + -0.53515625, + 1.9609375, + 3.109375, + 1.6171875, + -1.9609375, + -1.34375, + -1.0859375, + -1.2734375, + -1.65625, + 2.890625, + -0.482421875, + 1.5, + -3.390625, + -0.0771484375, + -0.52734375, + -0.189453125, + -3.40625, + 0.09912109375, + 0.75390625, + -1.3125, + 1.71875, + 0.2314453125, + 1.421875, + -1.0703125, + -2.234375, + 2.828125, + -1.734375, + -0.75, + 1.921875, + 1.8984375, + -1.28125, + -2.859375, + 0.796875, + 4.53125, + 3.203125, + 3.21875, + 1.828125, + 3.0, + 5.0625, + 4.03125, + 0.30859375, + -0.66015625, + 0.66015625, + -1.609375, + -1.671875, + -1.7578125, + 2.390625, + -0.5, + -0.52734375, + -1.2265625, + 0.72265625, + 1.3828125, + -0.2021484375, + 1.9453125, + 1.046875, + -0.482421875, + -0.69140625, + 3.65625, + 1.6953125, + -0.89453125, + 3.71875, + -1.1640625, + -0.2265625, + -1.0, + 4.34375, + -0.890625, + -0.263671875, + -0.515625, + -1.578125, + -1.7265625, + -0.45703125, + -2.921875, + 0.365234375, + 1.46875, + 0.62890625, + 1.7265625, + -1.3671875, + -0.77734375, + 1.4375, + 0.412109375, + -2.921875, + -1.0390625, + -2.0625, + 0.59375, + -0.3203125, + -0.703125, + -1.2734375, + 0.5859375, + 0.51171875, + 2.828125, + 4.5, + 3.5625, + 6.875, + 1.5390625, + -0.162109375, + 1.8515625, + 0.025390625, + 1.0859375, + 1.15625, + 0.041259765625, + 2.171875, + 5.15625, + -2.46875, + -2.0, + -0.83984375, + 3.140625, + 2.59375, + 0.400390625, + 2.125, + 0.05908203125, + -2.703125, + -1.328125, + 0.8046875, + -0.80859375, + 0.97265625, + -0.66015625, + 2.96875, + -0.034912109375, + 1.0078125, + -0.25390625, + -0.19921875, + 1.375, + -6.625, + -0.2216796875, + -1.7578125, + -0.9765625, + 0.7578125, + -0.08642578125, + -0.3828125, + 2.3125, + 3.453125, + -5.0, + -3.140625, + 1.7109375, + 0.234375, + 0.73046875, + 4.28125, + -0.14453125, + 1.578125, + 0.625, + 0.11474609375, + 1.1015625, + 2.984375, + -0.08203125, + 1.3828125, + 3.875, + -2.8125, + 3.078125, + -0.77734375, + -3.203125, + -0.0576171875, + -4.34375, + -0.640625, + -0.58203125, + -5.78125, + -2.015625, + -3.4375, + -0.392578125, + 0.41015625, + -1.1328125, + -0.51953125, + -0.12060546875, + 0.060302734375, + 0.5078125, + 0.703125, + 0.224609375, + -0.458984375, + 3.203125, + 0.298828125, + -0.6484375, + 0.8125, + 2.796875, + 0.455078125, + -2.34375, + -0.6796875, + 2.609375, + -0.427734375, + 2.3125, + -1.8359375, + -1.1484375, + -0.3125, + -3.234375, + -3.390625, + -0.412109375, + 3.703125, + -3.484375, + 1.40625, + -1.3671875, + 2.921875, + -0.1162109375, + -2.375, + -0.78515625, + -1.1484375, + 1.9140625, + 0.9765625, + -2.015625, + 0.421875, + -0.5625, + 1.6328125, + 0.55859375, + 1.9765625, + -2.53125, + -1.5546875, + 1.5, + 0.04931640625, + 1.03125, + -1.96875, + -2.640625, + 2.625, + 0.44921875, + 0.068359375, + -1.390625, + -0.34375, + -2.328125, + -6.15625, + 0.37109375, + -1.5703125, + 0.302734375, + -0.671875, + 0.462890625, + -1.4765625, + -1.5078125, + 2.3125, + 0.0147705078125, + 0.25, + -3.453125, + 1.96875, + 2.0, + -0.6875, + 1.3984375, + 0.11669921875, + -3.40625, + 0.49609375, + 3.03125, + -3.203125, + 1.9140625, + 1.4296875, + -1.53125, + 0.53125, + -0.0517578125, + 1.21875, + 1.328125, + 0.031982421875, + 2.796875, + 1.1875, + 2.0, + 7.90625, + 1.7265625, + -3.328125, + 0.73828125, + -0.2578125, + -2.859375, + -2.203125, + 0.349609375, + 1.3125, + -1.6484375, + 1.0390625, + 2.203125, + 1.4609375, + -3.390625, + -0.39453125, + -0.5234375, + 2.0625, + -1.5625, + -4.59375, + -1.1875, + -1.359375, + -1.1953125, + 2.359375, + -0.94140625, + 2.21875, + 1.078125, + 1.796875, + 0.07470703125, + -1.28125, + 1.4453125, + -1.859375, + -1.296875, + -0.57421875, + -2.25, + 0.236328125, + -2.296875, + -0.91796875, + -2.390625, + -0.287109375, + 1.75, + 1.8125, + -3.1875, + -0.11181640625, + 4.15625, + -1.15625, + 2.828125, + 0.1357421875, + -0.76953125, + -1.296875, + 1.28125, + -0.028076171875, + 1.4296875, + 2.9375, + 0.84765625, + 1.1640625, + -0.1708984375, + -3.078125, + -0.302734375, + 2.03125, + -1.6171875, + 0.09130859375, + -2.6875, + -1.6015625, + -1.546875, + -5.0, + -4.15625, + 2.890625, + 0.60546875, + 0.345703125, + 1.265625, + 1.3359375, + -1.2734375, + -1.921875, + -0.875, + -2.46875, + 1.671875, + -1.59375, + 1.359375, + -2.59375, + 1.625, + -0.56640625, + 4.4375, + -1.953125, + -2.546875, + -1.7734375, + -3.15625, + 0.76171875, + -1.8515625, + -0.65234375, + -1.09375, + -0.88671875, + 0.0712890625, + 0.69140625, + 4.5, + 0.6171875, + 1.078125, + -2.484375, + -2.859375, + -0.3515625, + -2.078125, + -1.46875, + 1.1640625, + -2.75, + 0.66796875, + -1.9375, + -0.291015625, + -5.96875, + -0.14453125, + -2.15625, + 0.71875, + 0.333984375, + -0.12158203125, + 1.3203125, + -1.4375, + 1.640625, + -0.1728515625, + -0.60546875, + -1.46875, + 0.01422119140625, + 0.44140625, + 1.84375, + -0.060546875, + -3.1875, + -0.24609375, + -0.048828125, + -0.2265625, + 1.9296875, + -1.84375, + -3.46875, + -0.93359375, + -0.384765625, + 0.86328125, + -1.296875, + -4.8125, + 0.2890625, + -0.1083984375, + 2.78125, + 2.484375, + 2.234375, + 0.076171875, + -3.59375, + 3.125, + 1.8203125, + -0.76953125, + -1.8671875, + 2.609375, + -3.390625, + -2.140625, + -3.796875, + -1.1171875, + -0.0322265625, + -1.3046875, + 0.0169677734375, + 4.25, + -3.109375, + -0.427734375, + -1.390625, + 1.5625, + 1.4921875, + -1.9921875, + -3.421875, + 2.484375, + 2.640625, + 2.953125, + 0.00445556640625, + -0.451171875, + 1.0703125, + 0.0186767578125, + 0.40234375, + -4.34375, + -1.8203125, + -1.546875, + -2.375, + 1.0078125, + -2.375, + 1.140625, + 1.7578125, + -1.0078125, + -1.359375, + 0.44921875, + -6.125, + -3.640625, + -3.59375, + -0.1923828125, + 3.96875, + -1.0234375, + -1.1015625, + -2.5, + -1.4921875, + -4.34375, + -0.1123046875, + -2.328125, + -0.2294921875, + 1.640625, + -2.09375, + -0.31640625, + -1.015625, + -5.0, + -0.73828125, + 1.046875, + 0.625, + -1.1796875, + -0.4921875, + 1.875, + -1.8671875, + -0.7890625, + -1.421875, + 2.953125, + 5.625, + 0.61328125, + 0.8046875, + 3.625, + -0.053466796875, + -0.7109375, + 2.890625, + 1.3515625, + -1.8125, + -0.018310546875, + -0.76953125, + 1.640625, + -2.203125, + 1.46875, + 1.6484375, + 2.75, + 1.296875, + 2.640625, + -3.1875, + 2.0, + 1.7578125, + 0.83203125, + 2.171875, + -0.4140625, + 2.421875, + -0.76953125, + -4.6875, + 0.9296875, + -0.19140625, + -1.8125, + 0.296875, + -0.51953125, + 4.40625, + -0.408203125, + -3.265625, + -4.09375, + 1.734375, + -1.21875, + -1.7578125, + -0.99609375, + 2.671875, + -1.0859375, + 0.77734375, + 1.09375, + 0.2021484375, + 0.0, + -3.046875, + 0.232421875, + -0.75, + -1.015625, + 0.1279296875, + -1.8984375, + -2.59375, + 1.1484375, + -1.1015625, + 0.98828125, + 0.72265625, + 1.078125, + 1.4921875, + 1.3828125, + -1.4296875, + -0.462890625, + -0.1484375, + 1.53125, + 0.546875, + 0.91015625, + 1.8984375, + 2.6875, + 1.4296875, + 0.045654296875, + -3.84375, + 2.3125, + -0.703125, + 1.609375, + -0.85546875, + -3.953125, + 2.109375, + 1.7265625, + -7.84375, + -0.46484375, + 0.0255126953125, + -2.328125, + -1.59375, + 3.09375, + 1.0078125, + 3.546875, + 0.62109375, + -2.84375, + 0.92578125, + 2.046875, + -2.90625, + 2.015625, + 0.54296875, + -0.89453125, + -1.296875, + -2.125, + 4.625, + 1.5234375, + 0.8515625, + -2.59375, + -1.0390625, + -1.3359375, + -0.63671875, + 5.46875, + -0.5078125, + 1.890625, + -1.7265625, + 0.05078125, + 0.55859375, + 0.1806640625, + 0.5625, + 0.11865234375, + -0.546875, + 0.84765625, + -1.2421875, + 0.2099609375, + -2.71875, + 0.77734375, + 1.2109375, + 1.65625, + -2.234375, + 2.859375, + -1.8671875, + 0.71484375, + -0.69921875, + -3.734375, + -0.90625, + -0.1513671875, + -3.25, + 0.2216796875, + 0.447265625, + -1.953125, + 0.55859375, + -1.3203125, + 0.734375, + 4.5, + -1.1875, + -0.25, + -0.95703125, + 1.5078125, + -0.91015625, + 3.78125, + 0.50390625, + -0.314453125, + 1.1484375, + 3.046875, + -2.34375, + -0.1689453125, + 1.0859375, + -3.546875, + -0.3515625, + 4.34375, + -2.28125, + 0.5703125, + 0.07568359375, + 1.96875, + 2.046875, + 0.3828125, + 1.359375, + -1.1875, + 2.796875, + -2.3125, + -0.0189208984375, + -0.8203125, + -0.68359375, + 1.6015625, + 2.265625, + 1.6640625, + 1.4140625, + -0.4921875, + 1.453125, + -0.69921875, + -1.1484375, + 0.6328125, + -1.2109375, + -0.66015625, + -1.1171875, + 3.8125, + 0.1845703125, + -1.6875, + 0.2138671875, + 0.7421875, + 0.32421875, + -0.0732421875, + 0.87890625, + 1.1328125, + 0.357421875, + 0.275390625, + -2.578125, + -4.59375, + 3.890625, + -0.44921875, + -0.458984375, + -0.3125, + 0.408203125, + 0.9765625, + -0.89453125, + 0.337890625, + 0.5625, + -0.70703125, + 2.5625, + 2.203125, + 4.59375, + -1.984375, + 0.87109375, + -0.14453125, + 1.609375, + -4.09375, + 4.4375, + -0.58203125, + -1.453125, + 3.640625, + -2.0, + 1.0546875, + 1.7109375, + -0.076171875, + -0.5390625, + -1.390625, + -1.53125, + 2.59375, + -0.06591796875, + 2.21875, + 1.140625, + 1.96875, + 3.6875, + 1.9296875, + -2.34375, + -1.75, + 0.25, + -1.4609375, + 2.953125, + -0.46484375, + 0.54296875, + -2.609375, + -0.515625, + -0.130859375, + 0.5859375, + -0.0556640625, + -0.423828125, + 3.578125, + -0.07421875, + -1.8828125, + 0.2578125, + 0.6328125, + 0.326171875, + -0.2734375, + -0.609375, + -0.06396484375, + -2.4375, + -0.8671875, + 0.80859375, + -4.4375, + 1.8828125, + -4.65625, + -1.7109375, + -0.0380859375, + -0.93359375, + 0.1591796875, + 1.8984375, + 1.5234375, + 2.671875, + 0.41015625, + 1.453125, + 0.34375, + -0.0230712890625, + 0.81640625, + -0.5078125, + 0.26953125, + 0.6796875, + -0.1875, + -2.796875, + -0.11279296875, + -2.75, + 0.2890625, + -8.375, + -1.2890625, + -0.8359375, + 0.1552734375, + 1.234375, + -2.09375, + -3.796875, + 1.0859375, + -1.6953125, + 0.09375, + -0.458984375, + -1.8984375, + -0.48046875, + -0.8359375, + -0.75, + 1.4609375, + -2.328125, + -2.1875, + -0.6328125, + -0.35546875, + 1.4296875, + 2.140625, + -0.2373046875, + 1.59375, + -2.890625, + -11.25, + 0.494140625, + 2.125, + -2.859375, + -0.9296875, + 1.0, + 0.640625, + 2.0, + -3.296875, + -0.27734375, + 0.2109375, + -0.78125, + -0.65625, + -1.328125, + 0.0830078125, + 0.3515625, + 2.546875, + -0.48046875, + 1.84375, + -0.9765625, + -0.92578125, + 1.71875, + 3.046875, + -1.109375, + 3.5, + 0.462890625, + 7.09375, + -1.28125, + -3.3125, + -1.8046875, + -0.37890625, + -2.09375, + -1.8203125, + 4.21875, + -2.078125, + 1.7734375, + -3.15625, + -0.255859375, + -1.5, + 3.046875, + -1.5234375, + -1.1796875, + 1.9609375, + -2.0625, + -3.71875, + -0.56640625, + 1.390625, + -2.109375, + 0.82421875, + -3.703125, + -2.125, + 0.1279296875, + 0.37890625, + 3.234375, + 2.59375, + 1.46875, + 1.453125, + 0.33203125, + 4.21875, + 0.181640625, + 0.375, + -2.078125, + 0.5234375, + -0.1875, + 1.4296875, + 2.671875, + 2.375, + -1.140625, + 1.3828125, + -0.8046875, + 0.287109375, + -0.90625, + 1.890625, + -0.306640625, + 1.6015625, + 0.921875, + 2.453125, + 0.04931640625, + 2.671875, + -0.54296875, + 0.90625, + -3.34375, + -0.039306640625, + 2.015625, + -1.390625, + 2.59375, + -2.734375, + -1.5703125, + 1.421875, + -1.1015625, + 0.640625, + 0.52734375, + -1.953125, + 0.51953125, + 1.859375, + -1.2421875, + 0.36328125, + 4.375, + 3.375, + 1.4921875, + 0.72265625, + -0.79296875, + -0.2001953125, + 0.09912109375, + 1.125, + -0.64453125, + 3.09375, + 0.058349609375, + -1.359375, + 1.7734375, + -1.3203125, + 3.015625, + -1.1484375, + -0.049560546875, + -0.349609375, + 1.78125, + 1.546875, + -2.765625, + 1.9296875, + -1.203125, + 0.55859375, + 1.21875, + 0.498046875, + -4.15625, + 0.62109375, + 1.0859375, + 1.640625, + 0.97265625, + -2.09375, + 0.60546875, + 0.6953125, + -1.4765625, + -2.0625, + -1.5625, + 0.671875, + -0.2578125, + -1.9609375, + 0.734375, + -2.609375, + 0.484375, + 0.3671875, + -1.6796875, + 2.90625, + 0.28515625, + 0.453125, + -0.2109375, + 1.6015625, + 1.5078125, + -2.46875, + 1.109375, + -2.0625, + 0.0186767578125, + 1.5625, + -0.09521484375, + 0.349609375, + -6.8125, + 3.265625, + 2.546875, + -1.125, + 0.515625, + -1.4453125, + 3.265625, + 0.478515625, + -0.984375, + -0.90625, + -1.8125, + -2.0, + 1.6953125, + 1.7578125, + -1.6953125, + -0.2099609375, + 1.7421875, + -0.08203125, + -1.1015625, + -0.69921875, + -1.296875, + -0.15234375, + -1.7109375, + -0.023193359375, + -1.765625, + -0.59375, + 0.76953125, + -0.375, + 3.125, + -2.296875, + 1.046875, + 0.5390625, + -1.28125, + 0.04833984375, + 2.21875, + -1.7890625, + -0.53125, + -0.07568359375, + -0.5, + 0.22265625, + -0.453125, + -0.48828125, + -0.671875, + -1.5625, + -1.9453125, + -0.359375, + 1.078125, + 1.8828125, + -1.2109375, + -0.57421875, + 1.1953125, + -1.296875, + -1.671875, + 0.84765625, + -0.494140625, + 3.78125, + -0.69921875, + -0.84765625, + -1.9140625, + -1.6171875, + -0.369140625, + -0.138671875, + -0.11474609375, + 2.21875, + 3.140625, + -0.1318359375, + 0.66015625, + -0.90234375, + 0.322265625, + -1.296875, + 1.2421875, + -0.8046875, + 1.3359375, + 0.052978515625, + 1.6640625, + 12.9375, + 0.7265625, + -0.427734375, + 0.33203125, + -0.984375, + -2.03125, + 2.234375, + -1.4140625, + -1.640625, + -0.94140625, + -2.21875, + 0.7734375, + 0.4765625, + -1.078125, + -1.3828125, + -1.0390625, + -3.546875, + -0.0250244140625, + 1.875, + 1.921875, + -1.859375, + 0.08642578125, + 2.0625, + -2.78125, + 5.28125, + -0.734375, + 1.9765625, + 2.3125, + 1.4921875, + 3.34375, + 0.014892578125, + -0.33984375, + -0.93359375, + -2.625, + 3.796875, + -1.4375, + 4.0, + -0.9765625, + 1.6484375, + -1.46875, + -2.015625, + 0.94921875, + -2.390625, + -0.07275390625, + -0.60546875, + 0.97265625, + 0.53515625, + -4.125, + -2.640625, + 0.953125, + -2.75, + 1.6484375, + -1.5, + 2.34375, + -1.21875, + -0.39453125, + 0.197265625, + 1.1171875, + 2.46875, + 0.439453125, + 0.703125, + -1.078125, + -0.72265625, + -2.453125, + -1.5625, + -2.0, + -1.9296875, + -0.30859375, + 0.36328125, + -1.453125, + 2.328125, + -0.76171875, + -1.015625, + -0.74609375, + -2.71875, + 1.3359375, + 1.015625, + -3.109375, + 1.5546875, + -3.703125, + -0.474609375, + 1.171875, + -2.78125, + 3.34375, + -1.21875, + 2.40625, + -1.7578125, + -3.671875, + -4.09375, + 0.443359375, + -0.6875, + -1.84375, + 0.302734375, + -0.2373046875, + -1.28125, + 1.625, + -2.203125, + -1.015625, + 0.8203125, + -4.5, + 1.6875, + -1.6875, + -0.44140625, + -0.06494140625, + 0.0703125, + -1.2421875, + -2.84375, + -3.09375, + 1.28125, + 4.21875, + -2.578125, + 1.125, + 0.302734375, + -0.4609375, + 3.515625, + 0.15625, + 5.21875, + 1.78125, + 0.027587890625, + 0.75, + -1.3515625, + 0.09326171875, + 0.322265625, + -1.2578125, + 0.93359375, + 2.515625, + 0.447265625, + -0.0191650390625, + 0.7265625, + -2.34375, + 0.32421875, + -4.46875, + 3.28125, + 0.890625, + -1.9296875, + 1.4375, + 0.06005859375, + -3.515625, + -2.703125, + 1.9453125, + -0.3984375, + 1.171875, + -0.412109375, + 1.8125, + 0.037841796875, + 1.296875, + 2.5625, + 0.6640625, + 0.0087890625, + 2.171875, + 2.015625, + 0.953125, + -1.7890625, + -0.490234375, + -1.0390625, + 1.21875, + 2.171875, + -2.828125, + 0.267578125, + 0.1064453125, + -1.5859375, + 1.265625, + 2.84375, + 2.734375, + -1.921875, + 2.21875, + -0.59375, + -0.76953125, + 0.34765625, + -2.375, + 1.2421875, + -4.4375, + -1.515625, + -2.390625, + 1.5390625 + ], + "index": 0, + "object": "embedding", + "raw_output": null + } + ], + "model": "accounts/fireworks/models/qwen3-embedding-8b", + "object": "list", + "usage": { + "prompt_tokens": 5, + "total_tokens": 5, + "completion_tokens": 0 + }, + "perf_metrics": null + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/f701ad342bd8.json b/tests/integration/recordings/responses/f701ad342bd8.json new file mode 100644 index 000000000..25b46c4cc --- /dev/null +++ b/tests/integration/recordings/responses/f701ad342bd8.json @@ -0,0 +1,56 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "messages": [ + { + "role": "user", + "content": "Which planet do humans live on?" + } + ], + "stream": false + }, + "endpoint": "/v1/chat/completions", + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "0fd60cd7-dc72-45b7-808c-4da91de80093", + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "Humans live on a planet called Earth.", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": null + } + } + ], + "created": 1758920388, + "model": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": null, + "usage": { + "completion_tokens": 9, + "prompt_tokens": 17, + "total_tokens": 26, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/models-7d9446738fd7-d5d684a3.json b/tests/integration/recordings/responses/models-7d9446738fd7-d5d684a3.json new file mode 100644 index 000000000..a76f0ba8f --- /dev/null +++ b/tests/integration/recordings/responses/models-7d9446738fd7-d5d684a3.json @@ -0,0 +1,527 @@ +{ + "request": { + "method": "POST", + "url": "https://api.fireworks.ai/inference/v1/v1/models", + "headers": {}, + "body": {}, + "endpoint": "/v1/models", + "model": "" + }, + "response": { + "body": [ + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/flux-1-dev-fp8", + "created": 1729532889, + "object": "model", + "owned_by": "fireworks", + "kind": "FLUMINA_BASE_MODEL", + "supports_chat": false, + "supports_image_input": false, + "supports_tools": false + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/tvergho-87e44d/models/debatecards-70b-ft-3epoch-dpo-v2", + "created": 1743381121, + "object": "model", + "owned_by": "tvergho-87e44d", + "kind": "HF_PEFT_ADDON", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/flux-kontext-max", + "created": 1750714611, + "object": "model", + "owned_by": "fireworks", + "kind": "FLUMINA_BASE_MODEL", + "supports_chat": true, + "supports_image_input": true, + "supports_tools": false + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/flux-kontext-pro", + "created": 1750488264, + "object": "model", + "owned_by": "fireworks", + "kind": "FLUMINA_BASE_MODEL", + "supports_chat": true, + "supports_image_input": true, + "supports_tools": false + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/sentientfoundation-serverless/models/dobby-mini-unhinged-plus-llama-3-1-8b", + "created": 1748467427, + "object": "model", + "owned_by": "sentientfoundation-serverless", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/deepseek-v3", + "created": 1735576668, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/sentientfoundation/models/dobby-unhinged-llama-3-3-70b-new", + "created": 1739563474, + "object": "model", + "owned_by": "sentientfoundation", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/gpt-oss-120b", + "created": 1754345600, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct", + "created": 1753211090, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 262144 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-30b-a3b-thinking-2507", + "created": 1753916446, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507", + "created": 1753124424, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 262144 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-235b-a22b-thinking-2507", + "created": 1753455434, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 262144 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-embedding-8b", + "created": 1755707090, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 40960 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/deepseek-v3-0324", + "created": 1742827220, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 163840 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/deepseek-v3p1-terminus", + "created": 1758586241, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 163840 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/kimi-k2-instruct", + "created": 1752259096, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/gpt-oss-20b", + "created": 1754345466, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/llama4-maverick-instruct-basic", + "created": 1743878495, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": true, + "supports_tools": true, + "context_length": 1048576 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-coder-30b-a3b-instruct", + "created": 1754063588, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 262144 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/llama-v3p3-70b-instruct", + "created": 1733442103, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen2p5-vl-32b-instruct", + "created": 1743392739, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": true, + "supports_tools": false, + "context_length": 128000 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-235b-a22b", + "created": 1745885249, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/glm-4p5-air", + "created": 1754089426, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/deepseek-r1", + "created": 1737397673, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 163840 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/llama-v3p1-8b-instruct", + "created": 1721692808, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/deepseek-r1-basic", + "created": 1742306746, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 163840 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/deepseek-v3p1", + "created": 1755758988, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 163840 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/flux-1-schnell-fp8", + "created": 1729535376, + "object": "model", + "owned_by": "fireworks", + "kind": "FLUMINA_BASE_MODEL", + "supports_chat": false, + "supports_image_input": false, + "supports_tools": false + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/glm-4p5", + "created": 1753809636, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/kimi-k2-instruct-0905", + "created": 1757018994, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 262144 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/llama-v3p1-405b-instruct", + "created": 1721428386, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/llama4-scout-instruct-basic", + "created": 1743878279, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": true, + "supports_tools": true, + "context_length": 1048576 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-30b-a3b", + "created": 1745878133, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/llama-v3p1-70b-instruct", + "created": 1721287357, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 131072 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/deepseek-r1-0528", + "created": 1748456377, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 163840 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/mixtral-8x22b-instruct", + "created": 1713375508, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": true, + "context_length": 65536 + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "accounts/fireworks/models/qwen3-30b-a3b-instruct-2507", + "created": 1753808388, + "object": "model", + "owned_by": "fireworks", + "kind": "HF_BASE_MODEL", + "supports_chat": true, + "supports_image_input": false, + "supports_tools": false, + "context_length": 262144 + } + } + ], + "is_streaming": false + } +} diff --git a/tests/integration/suites.py b/tests/integration/suites.py index 860b8c6ba..d8c283a0a 100644 --- a/tests/integration/suites.py +++ b/tests/integration/suites.py @@ -127,9 +127,8 @@ SETUP_DEFINITIONS: dict[str, Setup] = { name="fireworks", description="Fireworks provider with a text model", defaults={ - "text_model": "accounts/fireworks/models/llama-v3p1-8b-instruct", - "vision_model": "accounts/fireworks/models/llama-v3p2-90b-vision-instruct", - "embedding_model": "nomic-ai/nomic-embed-text-v1.5", + "text_model": "fireworks/accounts/fireworks/models/llama-v3p1-8b-instruct", + "embedding_model": "fireworks/accounts/fireworks/models/qwen3-embedding-8b", }, ), }