diff --git a/adala/skills/collection/entity_extraction.py b/adala/skills/collection/entity_extraction.py
index 202716dc..f08f215e 100644
--- a/adala/skills/collection/entity_extraction.py
+++ b/adala/skills/collection/entity_extraction.py
@@ -13,6 +13,33 @@
logger = logging.getLogger(__name__)
+def validate_output_format_for_ner_tag(df: InternalDataFrame, input_field_name: str, output_field_name: str):
+ '''
+ The output format for Labels is:
+ {
+ "start": start_idx,
+ "end": end_idx,
+ "text": text,
+ "labels": [label1, label2, ...]
+ }
+ Sometimes the model cannot populate "text" correctly, but this can be fixed deterministically.
+ '''
+ for i, row in df.iterrows():
+ if row.get("_adala_error"):
+ logger.warning(f"Error in row {i}: {row['_adala_message']}")
+ continue
+ text = row[input_field_name]
+ entities = row[output_field_name]
+ for entity in entities:
+ corrected_text = text[entity["start"]:entity["end"]]
+ if entity.get("text") is None:
+ entity["text"] = corrected_text
+ elif entity["text"] != corrected_text:
+ # this seems to happen rarely if at all in testing, but could lead to invalid predictions
+ logger.warning(f"text and indices disagree for a predicted entity")
+ return df
+
+
def extract_indices(
df,
input_field_name,
diff --git a/adala/skills/collection/label_studio.py b/adala/skills/collection/label_studio.py
index 20518511..8097350a 100644
--- a/adala/skills/collection/label_studio.py
+++ b/adala/skills/collection/label_studio.py
@@ -1,6 +1,6 @@
import logging
import pandas as pd
-from typing import Optional, Type
+from typing import Type, Iterator
from functools import cached_property
from adala.skills._base import TransformSkill
from pydantic import BaseModel, Field, model_validator
@@ -12,7 +12,7 @@
from label_studio_sdk.label_interface.control_tags import ControlTag
from label_studio_sdk._extensions.label_studio_tools.core.utils.json_schema import json_schema_to_pydantic
-from .entity_extraction import extract_indices
+from .entity_extraction import extract_indices, validate_output_format_for_ner_tag
logger = logging.getLogger(__name__)
@@ -29,13 +29,14 @@ class LabelStudioSkill(TransformSkill):
# TODO: implement postprocessing to verify Taxonomy
- def has_ner_tag(self) -> Optional[ControlTag]:
+ def ner_tags(self) -> Iterator[ControlTag]:
# check if the input config has NER tag ( + ), and return its `from_name` and `to_name`
interface = LabelInterface(self.label_config)
for tag in interface.controls:
+ #TODO: don't need to check object tag because at this point, unusable control tags should have been stripped out of the label config, but confirm this - maybe move this logic to LSE
if tag.tag == 'Labels':
- return tag
-
+ yield tag
+
@model_validator(mode='after')
def validate_response_model(self):
@@ -79,10 +80,11 @@ async def aapply(
instructions_template=self.instructions,
response_model=ResponseModel,
)
- ner_tag = self.has_ner_tag()
- if ner_tag:
+ for ner_tag in self.ner_tags():
input_field_name = ner_tag.objects[0].value.lstrip('$')
output_field_name = ner_tag.name
quote_string_field_name = 'text'
- output = extract_indices(pd.concat([input, output], axis=1), input_field_name, output_field_name, quote_string_field_name)
+ df = pd.concat([input, output], axis=1)
+ output = validate_output_format_for_ner_tag(df, input_field_name, output_field_name)
+ output = extract_indices(output, input_field_name, output_field_name, quote_string_field_name)
return output
diff --git a/tests/cassettes/test_label_studio_skill/test_label_studio_skill_valid_predictions.yaml b/tests/cassettes/test_label_studio_skill/test_label_studio_skill_valid_predictions.yaml
new file mode 100644
index 00000000..fd4a24c4
--- /dev/null
+++ b/tests/cassettes/test_label_studio_skill/test_label_studio_skill_valid_predictions.yaml
@@ -0,0 +1,66416 @@
+interactions:
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBC9+yumuuzFCckm2TS5lLZQNtAWcmkLpQRFmtjalTVCGic1S/69WPHa
+ WbqFXnR4b97jvRk9ZQDCaLEGoUrJqvJ29H6rvuvP24/L7Sf/1Z2aH49f7upvx238cHs3F3mroP0D
+ Kn5WjRVV3iIbchdaBZSMret0OZusJsvV21kiKtJoW1nheTQbL0Zchz2NJtPbRacsySiMYg0/MwCA
+ p/S2GZ3G32INk/wZqTBGWaBY90MAIpBtESFjNJGlY5EPpCLH6FLse7SW3sDmpoKHOjJIOJrAtbTQ
+ K3OIBBvQ5G4YSnlEOCBa44qYw77mpC0xIDBBidZDQzWcDJcgXcOlcUVCHKIewz2dQEkHm84/UUxa
+ Nu+uEwY81FG2G3K1tR1+7itbKnygfez4Hj8YZ2K5CygjubZeZPIisecM4Fdabf1iW8IHqjzvmB7R
+ tYbT+cVODMccyNmiI5lY2gGfr/JX3HYaWRobr04jlFQl6kE53FHW2tAVkV11/jvMa96X3sYV/2M/
+ EEqhZ9Q7H1Ab9bLwMBaw/er/Gut3nAKL2ETGancwrsDgg0mfLZ3ynP0BAAD//wMAqEOHiGsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6374c4a78e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:23 GMT
+ Server:
+ - cloudflare
+ Set-Cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ path=/; expires=Wed, 06-Nov-24 16:16:23 GMT; domain=.api.openai.com; HttpOnly;
+ Secure; SameSite=None
+ - _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000;
+ path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '703'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_86c99225f487b4d74188c80025d21052
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPcuB40dt65bm0hZI0ByaxqkLgSbXMhu+QlJoHcP/HlBSJNlx
+ gOpAEDs7s7vD1T4hBASHjADb0sCUlYOrO/YT76f89mH99HL992XyoL5M1rNv+u7H9S2kkWHWf5CF
+ N9YFM8pKDMLoGmYOacCoejkbDxfD2WI+qQBlOMpIK2wYjC+mg1C6tRkML0fThrk1gqGHjPxKCCFk
+ X52xR83xH2RkmL5FFHpPC4SsTSIEnJExAtR74QPVAdIOZEYH1LFtXUrZA4IxMmdUyq5w/e17984o
+ KmU+X17N5s/L74/qHh/HfGnZ12cdStGrV0vvbNXQptSsNaiHt/HspBghoKmquDe7m8q39DSBuqJU
+ qENsG/arxr3RCrIVfJYlruAAR5xDcu7+u2eFw03pqWw8auKH1nRpCuvM2p94CBuhhd/mDqmvZgEf
+ jK1rxzpVBSiP3gusM8qGPJgn1FFwNB3XetDtU4d+arBgApV90iI9I5dzDFRU79muEKNsi7yjdqtE
+ Sy5MD0h6Q79v5px2PbjQxf/IdwBjaAPy3Drkgh0P3KU5jH/bR2mtyVXD4Hc+oMo3QhforBPtvieH
+ 5BUAAP//AwAq2Hq07gMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637556c75e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '273'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_d37aa229a97e7745d8ebc9472b2e3f7d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOZMVC0mz4ZZW2o9DtGorbbptKuSYCXjX2K5t1I2i/PfKwAJJ
+ U6kcLGvevDczz8MhIAR4DikBVlLHKi0my89sjY/3D3wpprf2k/jCXm4/RtPy6S3+toTQM9T2BZl7
+ Z10xVWmBjivZwswgdehVr+dJtIjmi5tpA1QqR+FphXaT5Go2cbXZqkl0Hc86Zqk4Qwsp+REQQsih
+ OX2PMsc3SEkUvkcqtJYWCGmfRAgYJXwEqLXcOiodhAPIlHQofduyFmIEOKVExqgQQ+H2O4zug1FU
+ iGz7/Ovma5ysy9lvXD2/zmWSPMk1+z6q10rvddPQrpasN2iE9/H0rBghIGnVcFf7VeNbeJ5ATVFX
+ KJ1vGw6bzr14A+kG7gyi3MARTkjH4NL958gLg7vaUtGZ1MWPvetCFdqorT0zEXZccltmBqlthgHr
+ lG5r+zpNBahPHgy0UZV2mVOvKL1gPEtaPRgWakA/dJhTjooxaRFekMtydJQ3D9rvEKOsxHygDrtE
+ 65yrERCMhv67mUva7eBcFv8jPwCMoXaYZ9pgztnpwEOaQf+7/SutN7lpGOzeOqyyHZcFGm14v/DB
+ MfgDAAD//wMAPTYSSO8DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637584fc5e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '280'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_af3a9826537b2de2dc6934e8f575f06f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPcuBH5FT6xagQNq0TttLjKAuBIpaSWz4KkkhNQz/e0DJkWTH
+ BaoDQezszO4OV/uIEOAFpARYTT2TRkxuf7BN+Ufldpbbx/uXh2/P35dJnc8/ff74cA1xYOj8NzL/
+ xrpiWhqBnmvVwcwi9RhUZzeL6Wp6s/qQtIDUBYpAq4yfLK6SiW9srifT2Tw5MmvNGTpIyc+IEEL2
+ 7Rl6VAX+hZRM47eIROdohZD2SYSA1SJEgDrHnafKQzyATCuPKrStGiFGgNdaZIwKMRTuvv3oPhhF
+ hcieyvXXRN3lcrO+fqzv5caLp5cvSzWq10nvTNtQ2SjWGzTC+3h6VowQUFS23PVu3foWnydQWzUS
+ lQ9tw357dG++hXQLdxZRbeEAJ6RDdOn+a+SFxbJxVBxNOsYPvetCV8bq3J2ZCCVX3NWZReraYcB5
+ bbraoU5bAZqTBwNjtTQ+8/oZVRCcJ4tOD4aFGtDlEfPaUzEmreILclmBnvL2QfsdYpTVWAzUYZdo
+ U3A9AqLR0O+buaTdDc5V9T/yA8AYGo9FZiwWnJ0OPKRZDL/bv9J6k9uGwe2cR5mVXFVojeX9wkeH
+ 6BUAAP//AwA2Ty1X7wMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6375ada97e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '243'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_016d4d5636a62ac0b14bdd12742fb8ac
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q9+wUJyFL47d1Y2vL2lLaMshSjCKfba2ypErn0RDy34ft1HbS
+ DOYHIe6777u7T+dtwBjIFGIGouAkSqtGn+/Fz2z59uNi/FKON7d0jUv1JK4my2j+5xHCmmHWv1HQ
+ O+tMmNIqJGl0CwuHnLBWHc+n0SKaL85nDVCaFFVNyy2NpmezEVVubUbReDLbMwsjBXqI2a+AMca2
+ zVn3qFN8g5hF4XukRO95jhB3SYyBM6qOAPdeeuKaIOxBYTShrtvWlVIDgIxRieBK9YXbbzu490Zx
+ pZJvr5dPD+sHd3X76i+vL77e3dv0rjj/MqjXSm9s01BWadEZNMC7eHxUjDHQvGy4N5ubxrfwOIG7
+ vCpRU902bFd79yYriFfw3SHqFezggLQLTt2fB144zCrP1d6kfXzXua5Mbp1Z+yMTIZNa+iJxyH0z
+ DHgytq1d12kqQHXwYGCdKS0lZF5Q14KT2bTVg36hevTTHiNDXA1Ji/CEXJIicdk8aLdDgosC057a
+ 7xKvUmkGQDAY+mMzp7TbwaXO/0e+B4RAS5gm1mEqxeHAfZrD+nf7V1pnctMw+I0nLJNM6hyddbJb
+ +GAX/AUAAP//AwCIPTVU7wMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6375d6d78e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '320'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_22957b8c6aef49d6862086a87fc188c0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW/bMAy9+1cIPDuF6yTt4tsG7LBD1g4B1qHLYMgyY2uVJU2isRpB/vvgj9pO
+ lgHzQRD4+B7JJ/oYMAYyh4SBKDmJyqrF+y/iqfDVk2xW28/F7tvXbfwYNeWv7ZKKDMKWYbKfKOiN
+ dSNMZRWSNLqHhUNO2Kre3i+jTXS/eXfXAZXJUbW0wtJiebNeUO0ys4hu4/XALI0U6CFh3wPGGDt2
+ Z9ujzvEVEhaFb5EKvecFQjImMQbOqDYC3HvpiWuCcAKF0YS6bVvXSs0AMkalgis1Fe6/4+w+GcWV
+ Snn1KfPPD7R7iVcfd8vXh+ffj7Tym1m9XrqxXUOHWovRoBk+xpOLYoyB5lXH3TbbzrfwMoG7oq5Q
+ U9s2HPeDe/Eekj18UDXu4QRnnFNw7f5jZoXDQ+25Gjwa4qfRdGUK60zmLzyEg9TSl6lD7rtZwJOx
+ fe22TlcB6rP3AutMZSkl84K6FYzXy14Ppn2a0LsBI0NczUmb8IpcmiNx2b3nuEKCixLziTqtEq9z
+ aWZAMBv672auafeDS138j/wECIGWME+tw1yK84GnNIft3/avtNHkrmHwjSes0oPUBTrr5LjvwSn4
+ AwAA//8DAOUcKK/uAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637602845e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:26 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '268'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_59c3cd4ab86752f744354f360224e8b6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSPW/bMBTc9SteuWSxAjmWncRLESRDvCVTh6IQGPJJYkvxEeQTEiHwfw/0EUtG
+ WqALh7t3h7sD3xMAYbTYg1C1ZNV4m949qx/V5qF8o2f3tO4eNvdBH7ZPTK3xr2LVK+jlNyr+VF0q
+ arxFNuRGWgWUjL3r+nqT3WbXtze7gWhIo+1llec0p/Qqu8rT7CbNdpOwJqMwij38TAAA3oe3j+g0
+ vok9ZKtPpMEYZYVifzoCEIFsjwgZo4ksHYvVTCpyjG5I/YjW0jc4XDRQY0CQTkNAqTtgghqtv4RH
+ egUlHRxgNIOOWmDSsvu+NA1YtlH2nVxr7YQfTyktVT7QS5z4E14aZ2JdBJSRXJ8oMnkxsMcE4New
+ RntWUPhAjeeC6Q+63nCdj3Zinn9B7iaSiaWd8c204LlboZGlsXGxplBS1ahn5Ty9bLWhBZEsOn8N
+ 8zfvsbdx1f/Yz4RS6Bl14QNqo84Lz2cB+8/5r7PTxkNgEbvI2BSlcRUGH8z4P0pf5FtVbnONEkVy
+ TD4AAAD//wMAgdrI6SgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63762daf3e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1106'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_4aa72d610209ec714a160a295eac4b01
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW+cMBC98yusOUMFhGR3uSU9tFWbqlGrpGq3Qo4ZwFlje22jdLPa/17xEWC3
+ W6kcLGvevDczz8PeIwR4DikBVlHHai2C6zv2UGH0+dvLx3ohtrnYvr9+ebvZhJ/C5wfwW4Z6fELm
+ XllvmKq1QMeV7GFmkDpsVaPFRbgKF6vlogNqlaNoaaV2QaKCOIyTIFwG4dVArBRnaCElPz1CCNl3
+ Z9uizPE3pCT0XyM1WktLhHRMIgSMEm0EqLXcOiod+BPIlHQo265lI8QMcEqJjFEhpsL9t5/dJ5+o
+ ENkdi+6x/v7uw/NT8uWm3H5V98si+SFm9Xrpne4aKhrJRn9m+BhPT4oRApLWHfd2d9vZ5p8mUFM2
+ NUrXtg379eBevIZ0DTeiwTUc4Ihz8M7df82sMFg0lorBoyF+GE0XqtRGPdoTD6HgktsqM0htNwtY
+ p3Rfu63TVYDm6L1AG1Vrlzm1QdkKxpdxrwfTOk3o1YA55aiYk5b+GbksR0d5957jCjHKKswn6rRK
+ tMm5mgHebOi/mzmn3Q/OZfk/8hPAGGqHeaYN5pwdDzylGWx/tn+ljSZ3DYPdWYd1VnBZotGGd/sO
+ hc6iy1W+vEgixsA7eH8AAAD//wMAuJwA7fgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6376adb7be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '263'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_304b432339c0dd846425fdc276338410
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXYvbMBB8968Q+2wXx5dcHL/d0etBadoUCmnTFKOT17buZElIctsQ8t+LP852
+ 0hTqByF2dmZ3R+ujRwjwDBICrKSOVVoEd5/Zlt/L6tfhp363+PR1+eHh28PH9dvN7vD8CH7DUE/P
+ yNwr6w1TlRbouJIdzAxSh43qbHkTrsLlKo5boFIZioZWaBfMVRCF0TwI4yC87Yml4gwtJOS7Rwgh
+ x/ZsWpQZ/oaEhP5rpEJraYGQDEmEgFGiiQC1lltHpQN/BJmSDmXTtayFmABOKZEyKsRYuPuOk/vo
+ ExUi3T7e5cVuXu7k9stSqcV79rLJ6Caf1OukD7ptKK8lG/yZ4EM8uShGCEhatdz1Yd3a5l8mUFPU
+ FUrXtA3Hfe9etIdkD/eixj2c4Ixz8q7df0ysMJjXloreoz5+GkwXqtBGPdkLDyHnktsyNUhtOwtY
+ p3RXu6nTVoD67L1AG1Vplzr1grIRjBZRpwfjOo3obY855aiYkmL/ilyaoaO8fc9hhRhlJWYjdVwl
+ WmdcTQBvMvTfzVzT7gbnsvgf+RFgDLXDLNUGM87OBx7TDDY/27/SBpPbhsEerMMqzbks0GjD232H
+ XKezxSqLb+YzxsA7eX8AAAD//wMAF0Su1/gDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6376d5dfce24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '224'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_2d7fb348a49b7ddb4442cb8605270883
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT246bMBB95yuseYaKsGRDeNtqpVaV0HZ7226bCjlmIO4a27WNtGmUf6+4LJA0
+ lcqDZc2Zc2bmeDh4hAAvICXAdtSxWovg5p498HirV19+qWf+rvnw1b35+DbGVXZ7cw9+y1Dbn8jc
+ C+sVU7UW6LiSPcwMUoet6mJ1Fa7D1TpJOqBWBYqWVmkXxCqIwigOwiQIrwfiTnGGFlLy3SOEkEN3
+ ti3KAp8hJaH/EqnRWlohpGMSIWCUaCNAreXWUenAn0CmpEPZdi0bIWaAU0rkjAoxFe6/w+w++USF
+ yOvmMbtdfnqs1N3iM/1m3j9lD9vf7m5Wr5fe666hspFs9GeGj/H0rBghIGndcbN91tnmnydQUzU1
+ Ste2DYfN4F60gXQDr0WDGzjCCefoXbr/mFlhsGwsFYNHQ/w4mi5UpY3a2jMPoeSS211ukNpuFrBO
+ 6b52W6erAM3Je4E2qtYud+oJZSsYLaNeD6Z1mtDrAXPKUTEnJf4FubxAR3n3nuMKMcp2WEzUaZVo
+ U3A1A7zZ0H83c0m7H5zL6n/kJ4Ax1A6LXBssODsdeEoz2P5s/0obTe4aBru3Duu85LJCow3v9h1K
+ nS+W6yK5iheMgXf0/gAAAP//AwBMu5gu+AMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6376ff92ae24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '249'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_86470f86ef5f24e9c9e5a669c012a664
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPUuFLDmJrVudFghapGkLpE8XAk2tZKZ8laSaGIb/vdAjkuy6
+ QHUgiJ2d2d3hah8QAryAjADbUs+kEdHLD+zzwzdJ+ebdxziNTblK727eSzFXyO4gbBh684DMP7Ne
+ MC2NQM+16mBmkXpsVGdXabyMr5aLZQtIXaBoaJXx0VxHSZzMo3gRxZc9cas5QwcZ+R4QQsi+PZsW
+ VYFPkJE4fI5IdI5WCNmQRAhYLZoIUOe481R5CEeQaeVRNV2rWogJ4LUWOaNCjIW7bz+5jz5RIfLr
+ 159W14/V/dvfWLx68yv98nUh7dPN46ReJ70zbUNlrdjgzwQf4tlJMUJAUdlyb3e3rW3haQK1VS1R
+ +aZt2K9795I1ZGtYiRrXcIAjziE4d/8xscJiWTsqeo/6+GEwXejKWL1xJx5CyRV329wide0s4Lw2
+ Xe2mTlsB6qP3AmO1ND73+ieqRjC5SDo9GNdpRC97zGtPxZS0CM/I5QV6ytv3HFaIUbbFYqSOq0Tr
+ gusJEEyG/ruZc9rd4FxV/yM/Aoyh8VjkxmLB2fHAY5rF5mf7V9pgctswuJ3zKPOSqwqtsbzddyhN
+ PrtYFot0PmMMgkPwBwAA//8DABpAE5H4AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637726b86e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '274'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_4af1f327b3808ab5583b25ff16e5669d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwW7bMAy9+ysEnpNBSdMm8W3roRiGdk13yKEZDFWiHXWyJEh0sSDIvw+2U9vJ
+ UqA+CAIf3yP5RO8TxkArSBnIrSBZejP+upLrV8ndI63f+O0ab+0Dn7m5qJDWP2BUM9zLK0p6Z32R
+ rvQGSTvbwjKgIKxVJ/MrvuTz5WLZAKVTaGpa4Wk8c+Mpn87GfDHmN0fi1mmJEVL2nDDG2L456xat
+ wr+QMj56j5QYoygQ0i6JMQjO1BEQMepIwhKMelA6S2jrrm1lzAAg50wmhTF94fbbD+69T8KYjC+/
+ Py1W/HG+uqM39St/qO5+TuhJDeq10jvfNJRXVnb+DPAunp4VYwysKBvu/e6+sW10niBCUZVoqW4b
+ 9puje9MNpBv4ZircwAFOOIfk0v33wIqAeRWFOXp0jB86040rfHAv8cxDyLXVcZsFFLGZBSI539au
+ 6zQVoDp5L/DBlZ4ycn/Q1oLT62mrB/069ejNESNHwgxJi9EFuUwhCd28Z7dCUsgtqp7ar5KolHYD
+ IBkM/X8zl7TbwbUtPiPfA1KiJ1SZD6i0PB24TwtY/2wfpXUmNw1D3EXCMsu1LTD4oJt9h9xnk+ul
+ WlzNJlJCckj+AQAA//8DACdjM7P4AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637750e40e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '331'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_e218ce90a7c43027e769e7945d9f050c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBTc9RWvXLpYgRw5NewlyGI0QIcUGZyiKASKfJLYUHwE+YTWCPzvBWXX
+ UtAUyMLh7t3h7sCXDEAYLbYgVCdZ9d7md1/V/vmx9Xfh2373ZB7MbvdQfLl5+vWIdRCLpKD6Jyr+
+ q7pS1HuLbMidaBVQMibX5bosNsV6sylGoieNNslaz/kq5yHUlF8X16u8WOXF5qzuyCiMYgvfMwCA
+ l/FNOZ3G32ILo9eI9BijbFFsL0cAIpBNiJAxmsjSsVhMpCLH6Mbon9Fa+gD3H3voMCAwQYfWw4GG
+ K9h3kkFJB/egCRoKCQYmLQ+3c7+AzRBl6uQGa8/48RLQUusD1fHMX/DGOBO7KqCM5FKYyOTFyB4z
+ gB/jEMOrbsIH6j1XTM/okuFydbIT0/wzcn0mmVjaCS+XizfcKo0sjY2zIYWSqkM9KafV5aANzYhs
+ 1vnfMG95n3ob177HfiKUQs+oKx9QG/W68HQWMH3O/51dNh4Di3iIjH3VGNdi8MGcvkbjqxtdl0X5
+ qWwakR2zPwAAAP//AwDLJY9bKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63778fa7de24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:30 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '645'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_e88e8700cb1697018bacf0868e41c67b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7TMBC95yusOTco23S3JLcFDlTLChCsFomiyHUmqXcd29iOlrbqvyM7IUlL
+ kcjBsubNezPzPDlEhAAvISfAttSxRov49jN7fP60FJne8KfFw91r++6bNuxW702zgplnqM0TMveH
+ 9YqpRgt0XMkOZgapQ696tUyTLFlmWRKARpUoPK3WLl7ErjUbFc+T+SJOFnGS9eyt4gwt5OR7RAgh
+ h3D6PmWJvyAnQStEGrSW1gj5kEQIGCV8BKi13DoqHcxGkCnpUPrWZSvEBHBKiYJRIcbC3XeY3Eez
+ qBDF7upxv7df3qZfX+z7Fb17Wf1cmg8f60m9TnqnQ0NVK9lg0gQf4vlZMUJA0iZw73f3wbvZeQI1
+ ddugdL5tOKx79+ZryNfwRrS4hiOccI7RpfuPiRUGq9ZS0XvUx4+D6ULV2qiNPfMQKi653RYGqQ2z
+ gHVKd7V9nVAB2pP3Am1Uo13h1DNKLzi/Tjs9GHdqRG96zClHxZSUzS7IFSU6ysN7DivEKNtiOVLH
+ VaJtydUEiCZD/93MJe1ucC7r/5EfAcZQOywLbbDk7HTgMc2g/+P+lTaYHBoGu7MOm6LiskajDQ/7
+ DpUurstNmqQ3aVVBdIx+AwAA//8DAMGGiO79AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6377dc85de24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '494'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_c11ee538bcb9e9314d82a3adcb26e570
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTYvbMBC9+1eIOcfF+doQ37q0UMqGttDdHjbFKNLYUStLQhqHhJD/XvyxtpOm
+ UB+EmDfvzczT+BwxBkpCykDsOYnS6fj9N/FDf345COfERu5w8RGPh+9GfLCKljCpGXb3CwW9sd4J
+ WzqNpKxpYeGRE9aq09U8WSer9XraAKWVqGta4ShexFT5nY1nyWwRJ4s4WXfsvVUCA6TsNWKMsXNz
+ 1n0aiUdIWTJ5i5QYAi8Q0j6JMfBW1xHgIahA3BBMBlBYQ2jq1k2l9Qgga3UmuNZD4fY7j+6DWVzr
+ 7Hl6fCL58ig9//opL+RBrw6npy/Po3qt9Mk1DeWVEb1JI7yPpzfFGAPDy4a7OW0a7ya3CdwXVYmG
+ 6rbhvO3cm20h3cKjrnALF7jiXKJ7958jKzzmVeC686iLX3rTtS2ct7tw4yHkyqiwzzzy0MwCgaxr
+ a9d1mgpQXb0XOG9LRxnZ32hqwdly3urBsFMD+tBhZInrMWk9uSOXSSSumvfsV0hwsUc5UIdV4pVU
+ dgREo6H/buaedju4MsX/yA+AEOgIZeY8SiWuBx7SPNZ/3L/SepObhiGcAmGZ5coU6J1Xzb5D7rKl
+ 3M2T+cM8zyG6RH8AAAD//wMAy27GIv0DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63781eda9e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '538'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ddf0925bdb48a522e30662c8134d2b01
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnEPFhmyicOtWqnJYtKm2UqQ2K+TYA7gxttc2bdMo/14BWSBp
+ VioHy5o3783M83AMCAHBISHASupZZWT48QvbVKvZ7m6z+ZN+ft1Ej/65WD3yVTpnzzBpGHr3A5l/
+ Y31gujISvdCqg5lF6rFRvVvE0TJaLJfTFqg0R9nQCuPDWehru9PhNJrOwmgWRsszu9SCoYOEfA8I
+ IeTYnk2fiuNvSEg0eYtU6BwtEJI+iRCwWjYRoM4J56nyMBlAppVH1bSuailHgNdaZoxKORTuvuPo
+ PphFpcz2T+Un9u2J6a/lr3S93r/O1xwX65+jep30wbQN5bVivUkjvI8nV8UIAUWrlpse0ta7yXUC
+ tUVdofJN23Dcnt2bbiHZwoOscQsnuOCcglv3l5EVFvPaUXn26Bw/9aZLXRird+7KQ8iFEq7MLFLX
+ zgLOa9PVbuq0FaC+eC8wVlfGZ17vUTWC0/u404NhpwZ0fsa89lSOScvJDbmMo6eifc9+hRhlJfKB
+ OqwSrbnQIyAYDf1vM7e0u8GFKv5HfgAYQ+ORZ8YiF+xy4CHNYvPHvZfWm9w2DO7gPFZZLlSB1ljR
+ 7jvkJrvnuziK53GeQ3AK/gIAAP//AwAw9mGN/QMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637871b9be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '943'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ea40f591c0e50ba177ca1a77166220ae
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOYeKhXwUbruVWlVqmu6h3e02FXLMQNwa27JNtVGU/74ysEDS
+ VCoHy5o3783M83AMCAFeQEaA7aljtRbh7T17kGtObza3as0f0wV9kptPtv7w5ZmXMPMMtfuFzL2y
+ 3jBVa4GOK9nBzCB16FVvVkmURqs0TVqgVgUKT6u0C+eha8xOhXEUz8NoHkZpz94rztBCRn4EhBBy
+ bE/fpyzwGTISzV4jNVpLK4RsSCIEjBI+AtRabh2VDmYjyJR0KH3rshFiAjilRM6oEGPh7jtO7qNZ
+ VIi8cBv+8eHz2+jr6s/jIX769v5++f1Ov5vU66QPum2obCQbTJrgQzy7KEYISFq33PVh3Xo3u0yg
+ pmpqlM63Dcdt7168hWwLd6LBLZzgjHMKrt1/TqwwWDaWit6jPn4aTBeq0kbt7IWHUHLJ7T43SG07
+ C1indFfb12krQHP2XqCNqrXLnfqN0gvGi6TTg3GnRnTZY045KqakdHZFLi/QUd6+57BCjLI9FiN1
+ XCXaFFxNgGAy9N/NXNPuBuey+h/5EWAMtcMi1wYLzs4HHtMM+j/uX2mDyW3DYA/WYZ2XXFZotOHt
+ vkOp80WxS6JkmZQlBKfgBQAA//8DAB2voiT9AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6378e0b41e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '620'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_486fbeb688d07c6c1ae2efe796d801f3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7TMBC95yusOTcoNN22ya0ghARU7B5Y0FIUuc4kMTgey3YQVdV/XyXpJmkp
+ EjlY1rx5b2aeJ8eAMZA5pAxExb2ojQo3D+IruW+8Wr/7+PT0qf7yuXl7v9rKx/to9RtmLYP2P1H4
+ F9YrQbVR6CXpHhYWucdW9fUqjpJolSSLDqgpR9XSSuPDRegbu6dwHs0XYbQIo+TMrkgKdJCy7wFj
+ jB27s+1T5/gHUhbNXiI1OsdLhHRIYgwsqTYC3DnpPNceZiMoSHvUbeu6UWoCeCKVCa7UWLj/jpP7
+ aBZXKjts6g/iMSK/3j+sV0tSFMn36005qddLH0zXUNFoMZg0wYd4elWMMdC87rjbw7bzbnadwG3Z
+ 1Kh92zYcd2f35jtId/BGNbiDE1xwTsGt+4+JFRaLxnF19ugcPw2mKyqNpb278hAKqaWrMovcdbOA
+ 82T62m2drgI0F+8FxlJtfObpF+pWcH4X93ow7tSILs+YJ8/VlJTMbshlOXouu/ccVkhwUWE+UsdV
+ 4k0uaQIEk6H/buaWdj+41OX/yI+AEGg85pmxmEtxOfCYZrH94/6VNpjcNQzu4DzWWSF1idZY2e07
+ FCa7y/dxFC/jooDgFDwDAAD//wMAtG0uGP0DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63792b85de24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '903'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ba4224b60373bceb75d06b788d67cee0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevnBJUDabss1eUKEHioRKT5VAKPLaL4lL4mfZL4Kl2n9HTrab
+ rSgSFx9m3oxnnv2YAAijxRaE6iSrwfXZ1Z26d6r79Dlv5fX1+vcH9b67+3JbfS2vxluRRgXtHlDx
+ k+qNosH1yIbsTCuPkjG6rjbrvMo3VXUxEQNp7KOsdZyVlA3GmqzIizLLN9nq8qjuyCgMYgvfEgCA
+ x+mMOa3GX2ILefqEDBiCbFFsT0MAwlMfESFDMIGlZZEupCLLaKfoN68HeBgDg4RYYGT04Dy1Xg4p
+ 7EaGONChR5BWg0ep98AEHfYO9jS+go/0E5S0cAPzVREFJi33786v9NiMQcbaduz7I344deipdZ52
+ 4cif8MZYE7raowxkY97A5MTEHhKA79Ouxmf1hfM0OK6ZfqCNhqtythPLCy1kURxJJpb9gq/fpi+4
+ 1RpZmj6c7VooqTrUi3J5GDlqQ2dEctb57zAvec+9jW3/x34hlELHqGvnURv1vPAy5jH+33+NnXY8
+ BRZhHxiHujG2Re+8mX9P4+rmopKXq7LYNCI5JH8AAAD//wMAKui96ksDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637995ffbe24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '544'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_0d8a0a154bed4bce899e30b1fc256c77
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOUMFNGwSbpvs9tAqK3W71UptVsgxA3FrbMs2baMo/73iY4Fk
+ U6kcLGvevDczz8PRIwR4DikBtqeOVVoEt5/Zs34U31ZaPeH6/u5jcvNl9Zx8vVMztga/YajdD2Tu
+ lfWOqUoLdFzJDmYGqcNGNZq/D5fhfLlMWqBSOYqGVmoXzFRQccmDOIxnQTgPokXP3ivO0EJKvnuE
+ EHJsz6ZPmeMfSEnov0YqtJaWCOmQRAgYJZoIUGu5dVQ68EeQKelQNq3LWogJ4JQSGaNCjIW77zi5
+ j2ZRITL56eE+f7z9ECUytNH61+Zh8Xuxw6dJvU76oNuGilqywaQJPsTTi2KEgKRVy90cNq13/mUC
+ NWVdoXRN23Dc9u7FW0i3sBI1buEEZ5yTd+3+MrHCYFFbKnqP+vhpMF2oUhu1sxceQsElt/vMILXt
+ LGCd0l3tpk5bAeqz9wJtVKVd5tRPlI1gnMSdHow7NaI3PeaUo2JKWvhX5LIcHeXtew4rxCjbYz5S
+ x1Widc7VBPAmQ79t5pp2NziX5f/IjwBjqB3mmTaYc3Y+8JhmsPnj/pU2mNw2DPZgHVZZwWWJRhve
+ 7jsUOgt3NMyjeFZE4J28vwAAAP//AwBkfx5c/QMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6379d9d37e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '243'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_b562867b6228bf3534afe4ba5be081a5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwW7bMAy9+ysEnuPBcdMm8a1pgRy2AN0uxbAMhiLTthpZUiUaaBDk3wfbqe1k
+ GTAfBIGP75F8oo8BYyAzSBiIkpOorAofv4vXd6MWFD1+Xa0/+Obw/rz+xn9u8vJuBZOGYXZvKOiT
+ 9UWYyiokaXQHC4ecsFGdzu+iZTRfLh9aoDIZqoZWWApnJqyklmEcxbMwmofTxZldGinQQ8J+BYwx
+ dmzPpk+d4QckLJp8Rir0nhcISZ/EGDijmghw76UnrgkmAyiMJtRN67pWagSQMSoVXKmhcPcdR/fB
+ LK5U6u9dtF89Leh1Srvyx4ver1/sm92N6nXSB9s2lNda9CaN8D6eXBVjDDSvWu7msGm9m1wncFfU
+ FWpq2obj9uxevIVkCytV4xZOcME5Bbfuv0dWOMxrz9XZo3P81JuuTGGd2fkrDyGXWvoydch9Owt4
+ Mrar3dRpK0B98V5gnakspWT2qBvB+D7u9GDYqQF9OGNkiKsxaTG5IZdmSFy279mvkOCixGygDqvE
+ 60yaERCMhv67mVva3eBSF/8jPwBCoCXMUuswk+Jy4CHNYfPH/SutN7ltGPzBE1ZpLnWBzjrZ7jvk
+ No12PMqm8SyfQnAK/gAAAP//AwB3FVgI/QMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6379fffbce24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '225'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_62dcaa00213d8d85ee6ad320c87a57a5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT246bMBB95yuseYaK0Gyy4W131fum2l6klXZTIWMPxImxXdtITaP8ewVkgaSp
+ VB4sa86cMzPHwz4gBASHlABbU88qI6ObL+zx56f3T78/vM1n9buFWz54/1FtPs/YmysIG4bON8j8
+ C+sV05WR6IVWHcwsUo+N6mT+Ol7E88Vi1gKV5igbWml8NNVRJZSIkjiZRvE8mlwf2WstGDpIyXNA
+ CCH79mz6VBx/QUri8CVSoXO0REj7JELAatlEgDonnKfKQziATCuPqmld1VKOAK+1zBiVcijcffvR
+ fTCLSpmpu+Lb081Xebudbh/u59vN/V2efBd8VK+T3pm2oaJWrDdphPfx9KwYIaBo1XKXu2XrXXie
+ QG1ZV6h80zbsV0f3khWkK7iVNa7gACecQ3Dp/mNkhcWidlQePTrGD73pUpfG6tydeQiFUMKtM4vU
+ tbOA89p0tZs6bQWoT94LjNWV8ZnXW1SNYHKVdHow7NSAzo6Y157KMek6vCCXcfRUtO/ZrxCjbI18
+ oA6rRGsu9AgIRkP/3cwl7W5wocr/kR8AxtB45JmxyAU7HXhIs9j8cf9K601uGwa3cx6rrBCqRGus
+ aPcdCpPFOY35JJkWEwgOwR8AAAD//wMA4hEL7/0DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637a28a75e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '217'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_915d7f8ab61a60ce7b70402db5836805
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q9xwPx82axG/tOgor3SiBZstSjCKfHW2yTkgyNIT892I7tZ0s
+ hflBiPvu++7u03kfMAYyg4SB2HIvSqPCmyextHT/YBbFYnUVP2s5/f60HH+1P+jmF4xqBm3+oPDv
+ rE+CSqPQS9ItLCxyj7XqeHoVzaPpfD5tgJIyVDWtMD6cUFhKLcM4iidhNA3HsyN7S1Kgg4T9Dhhj
+ bN+cdZ86w1dIWDR6j5ToHC8Qki6JMbCk6ghw56TzXHsY9aAg7VHXretKqQHgiVQquFJ94fbbD+69
+ WVypdLuIVrm9v/tCdPdt+YoPt8+zVXz9c1Cvld6ZpqG80qIzaYB38eSsGGOgedlwH3ePjXej8wRu
+ i6pE7eu2Yb8+uhevIVnDrapwDQc44RyCS/eXgRUW88pxdfToGD90pisqjKWNO/MQcqml26YWuWtm
+ AefJtLXrOk0FqE7eC4yl0vjU01/UtWD8OW71oN+pHr0+Yp48V0PSbHRBLs3Qc9m8Z7dCgostZj21
+ XyVeZZIGQDAY+t9mLmm3g0td/I98DwiBxmOWGouZFKcD92kW6z/uo7TO5KZhcDvnsUxzqQu0xspm
+ 3yE3abThUTaOJ/kYgkPwBgAA//8DAC/zxjz9AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637a4ac82e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:37 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '241'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_902d49d4fecaf673786f5967cc2e951b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXYvbMBB8968Q+2wXx0kvF7/1IBQKablrjxSaYhR5bSuVJVWS2/hC/nvxx9lO
+ mkL9IMTOzuzuaH3yCAGeQkyAFdSxUovg3SPbmvnTcZ3P6afDz21RPBywdNvj+uVDCH7DUPsDMvfK
+ esNUqQU6rmQHM4PUYaM6W87DVbhcrZYtUKoURUPLtQsWKii55EEURosgXAaz+55dKM7QQky+eYQQ
+ cmrPpk+Z4hFiEvqvkRKtpTlCPCQRAkaJJgLUWm4dlQ78EWRKOpRN67ISYgI4pUTCqBBj4e47Te6j
+ WVSIZP1Sf1k9/c62z/Xzx19f95XcvKef7x4n9TrpWrcNZZVkg0kTfIjHV8UIAUnLlrupN613/nUC
+ NXlVonRN23Da9e5FO4h38CAq3MEZLjhn79b9+8QKg1llqeg96uPnwXShcm3U3l55CBmX3BaJQWrb
+ WcA6pbvaTZ22AlQX7wXaqFK7xKkfKBvB6G3U6cG4UyN612NOOSqmpHv/hlySoqO8fc9hhRhlBaYj
+ dVwlWqVcTQBvMvTfzdzS7gbnMv8f+RFgDLXDNNEGU84uBx7TDDZ/3L/SBpPbhsHW1mGZZFzmaLTh
+ 7b5DppNwT8N0Fi2yGXhn7w8AAAD//wMASd2tJf0DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637a7af90e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:37 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '455'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_d464ade181160f1abc89c01e1a59d0d0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBDd9RVXLllkw65jpPYSeChgL20ztUBRCDR5kphQPJY8JVUD/3shWpEc
+ NAW6cHjv3sN7d3zOAITRYgtC1ZJV4+1sd6e+Rv7yDXd3e/3z00dZdqvPqtG/rd9VIu8VdLxHxS+q
+ uaLGW2RD7kyrgJKxd13erBabxc1m8yERDWm0vazyPFvN1zNuw5Fmi+X79aCsySiMYgvfMwCA5/T2
+ GZ3GX2ILi/wFaTBGWaHYjkMAIpDtESFjNJGlY5FPpCLH6FLsPVpL7+Bw1cB9GxkkPJrArbQwKnOI
+ BAfQ5K4YavmIUCJa46qYw7HlpK0xIDBBjdZDRy08Ga5Buo5r46qEOEQ9hz09gZIODoN/opi07G4v
+ EwYs2yj7DbnW2gE/jZUtVT7QMQ78iJfGmVgXAWUk19eLTF4k9pQB/EirbV9tS/hAjeeC6QFdb7i8
+ PtuJ6ZgTuVoPJBNLO+HXm/wNt0IjS2PjxWmEkqpGPSmnO8pWG7ogsovOf4d5y/vc27jqf+wnQin0
+ jLrwAbVRrwtPYwH7r/6vsXHHKbCIXWRsitK4CoMPJn22dMpT9gcAAP//AwA3bHACawMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637ab6b6de24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '675'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_59bee8c6879bd0a17d24bc0947e9c732
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXW/bMAx8968Q+JwUSbqsi99WdF2HrVsToGuBujAUiXGUyZImyVg+kP9eyHZs
+ J22B+cEQeLwjeaJ2ESEgOMQE2JJ6lhvZ/zxlD269esxGH67w2+rm77+tu7yb3N/8mv3w0AsMPV8h
+ 8wfWGdO5keiFVhXMLFKPQXV4cT6YDC4mk08lkGuOMtAy4/vnZ+O+L+xc9wfD0bhmLrVg6CAmTxEh
+ hOzKf+hRcVxDTAa9QyRH52iGEDdJhIDVMkSAOiecp6rqtwaZVh5VaFsVUnYAr7VMGZWyLVx9u865
+ NYpKmV7Ppl/urub3j2v8TtdcTH//dNfbh22nXiW9MWVDi0KxxqAO3sTjk2KEgKJ5yb3d3Ja+9U4T
+ qM2KHJUPbcMuqd0bJRA/JTBDnkAvga8WUZWnS1lgAs97ONLZR2+dnzv2WFwUjsratzq+by5C6sxY
+ PXcnvsJCKOGWqUXqyvnAeW2q2qFOWQGKozsEY3VufOr1H1RBcDQeV3rQ7liLDuttAK89lR3WxwPr
+ SC/l6KkoL7nZK0bZEnlLbfeLFlzoDhB1pn7dzVva1eRCZf8j3wKMofHIU2ORC3Y8cZtmMTzB99Ia
+ l8uGwW2cxzxdCJWhNVY0jyDaRy8AAAD//wMAd8jdrwMEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637b07999e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '407'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_ff3dbd410a29b2d325a2e86818b8144d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q9+yUxMHN7LemZR0b7ZYxKKQuRpEutjZZUiUZGkL++7Cd2E7W
+ Qf1gxH33fXf36bQPCAHBISXASupZZeTkZsWe/FovOV9H+vX2vnxNrumPtXtaPX6LIWwYevMbmT+x
+ rpiujEQvtOpgZpF6bFRni/k0mS6SJGmBSnOUDa0wfjK/iie+ths9mc6iozArtWDoICXPASGE7Nt/
+ 06Pi+AYpmYanSIXO0QIh7ZMIAatlEwHqnHCeKg/hADKtPKqmbVVLOQK81jJnVMqhcPftR+fBKCpl
+ vq5leTePq2X0ZXHz/fPjV1x9erstf43qddI70za0rRXrDRrhfTy9KEYIKFq13IfdQ+tbeJlAbVFX
+ qHzTNuyzo3tRBulzBj+RZxBmcG8RVXtayhozeDnAmc4heO/8MrLH4rZ2VB59O8YP/UVIXRirN+7C
+ V9gKJVyZW6SunQ+c16ar3dRpK0B9dodgrK6Mz73+g6oRjOK404NhxwZ0dtwG8NpTOWJdn1hnejlH
+ T0V7yf1eMcpK5AN12C9ac6FHQDCa+t9u3tPuJheq+Ij8ADCGxiPPjUUu2PnEQ5rF5gn+L613uW0Y
+ 3M55rPKtUAVaY0X/CIJD8BcAAP//AwCUc6VkAwQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637b47dc9e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '324'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_58aa7ccf42598c49dbc33e7bcc45b1a3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPduB7MBOqpvTAgla+NAempcCgabWMl2KJPhA/YD/vSClSLKb
+ AtVBIHZ2ZneHy2NCCPASMgJsQx2rtRgvvrNH/zndzh8fdu52cbP9Wt75wxO9f5JzAaPAUKstMvfO
+ umKq1gIdV7KBmUHqMKhObq7TT+ltmqYRqFWJItAq7cbXV7Ox82alxulkOmuZG8UZWsjIa0IIIcf4
+ Dz3KEneQkagTIzVaSyuErEsiBIwSIQLUWm4dlQ5GPciUdChD29ILMQCcUqJgVIi+cPMdB+feKCpE
+ sbc/fy/48nCYr3bTL8++omLy7eH5ZVCvkd7r2NDaS9YZNMC7eHZRjBCQtI7c5X4ZfRtdJlBT+Rql
+ C23DMW/dm+aQvebwA8scRjncG0QZT3fCYw5vJzjTOSUfnd8G9hhce0tF61sbP3UXIVSljVrZC19h
+ zSW3m8IgtXE+sE7ppnaoEyuAP7tD0EbV2hVO/UIZBKezWaMH/Y716KTdBnDKUTFgzd9ZZ3pFiY7y
+ eMndXjHKNlj21H6/qC+5GgDJYOq/u/lIu5mcy+p/5HuAMdQOy0IbLDk7n7hPMxie4L/SOpdjw2D3
+ 1mFdrLms0GjDu0eQnJI/AAAA//8DAIpKp+EDBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637b7797be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:40 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '373'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_d2698d05b13c7d01549a47d6de607fb7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW/bMAy9+1cIPCeF487r6tu+EGCAD+uwblhdGIpMO8pkSZDkIWmQ/15Idm0n
+ 64D5YAh8fI/kE3WMCAFeQUaAbaljrRbL91/Zj263zxNl8qdvT38+16qh+Y6L2+/7ChaeoTY7ZO6F
+ dcVUqwU6rmQPM4PUoVdd3VzHt/G7OI4D0KoKhac12i2vr9Kl68xGLeNVkg7MreIMLWTkISKEkGP4
+ +x5lhXvISNAJkRatpQ1CNiYRAkYJHwFqLbeOSgeLCWRKOpS+bdkJMQOcUqJkVIipcP8dZ+fJKCpE
+ mX+5v/m0+fUxWd/n8d3qJ0dxWKfxm1m9XvqgQ0N1J9lo0Awf49lFMUJA0jZw80MefFtcJlDTdC1K
+ 59uGYzG4lxSQPRRwh1UBiwLWBlGG0wfRYQGPJzjTOUWvnR9n9hisO0vF4NsQP40XIVSjjdrYC1+h
+ 5pLbbWmQ2jAfWKd0X9vXCRWgO7tD0Ea12pVO/UbpBZM07fVg2rEJXQ3bAE45Kmasty+sM72yQkd5
+ uORxrxhlW6wm6rRftKu4mgHRbOq/u3lNu5+cy+Z/5CeAMdQOq1IbrDg7n3hKM+if4L/SRpdDw2AP
+ 1mFb1lw2aLTh4yOITtEzAAAA//8DAOKeIG4DBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637badd32e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:40 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '380'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_76eebd648402a8257f50fa1de372ffb4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW+bMBB+51dY90wqSMSy8bZJUautnbR20yqVCjnmAG/Gdm0TLYry3ysDAZJ1
+ 0nhA1n33fXf3+XwICAFeQEqA1dSxRovFx2/s5+7Hpri93XCTPJb78mGzvtfq8/XuO0LoGWr7C5k7
+ sa6YarRAx5XsYWaQOvSq8XoVfYjeR1HcAY0qUHhapd1idZUsXGu2ahHFy2Rg1ooztJCSp4AQQg7d
+ 3/coC/wDKYnCU6RBa2mFkI5JhIBRwkeAWsuto9JBOIFMSYfSty1bIWaAU0rkjAoxFe6/w+w8GUWF
+ yF/My3670+vm602NpVI3Xx75w24Vz+r10nvdNVS2ko0GzfAxnl4UIwQkbTru3f6u8y28TKCmahuU
+ zrcNh2xwb5lB+pTBPRYZhBlcG0TZnT6JFjN4PsKZzjF46/w8s8dg2VoqBt+G+HG8CKEqbdTWXvgK
+ JZfc1rlBarv5wDql+9q+TlcB2rM7BG1Uo13u1G+UXnCZJL0eTDs2ofGwDeCUo2LGendinenlBTrK
+ u0se94pRVmMxUaf9om3B1QwIZlP/3c1b2v3kXFb/Iz8BjKF2WOTaYMHZ+cRTmkH/BP+VNrrcNQx2
+ bx02ecllhUYbPj6C4Bi8AgAA//8DAD5niGEDBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637bdf87de24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '334'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_1e6f313cd320a724ed825312075862b0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSPW/bMBTc9SteuXSxAjmR08RLUWRojAxGpqIJCoEmnyQmFB9BPiUxAv/3Qh+x
+ ZLQFunC4e3e4O/A9ARBGizUIVUtWjbfpt3v14+Xthr/rh+3DzUYHv/qpd7vt3fb1+kUsOgXtnlDx
+ h+pMUeMtsiE30CqgZOxcl18usuvsKsuWPdGQRtvJKs9pTul5dp6n2VWaXY7CmozCKNbwmAAAvPdv
+ F9FpfBNryBYfSIMxygrF+ngEIALZDhEyRhNZOhaLiVTkGF2f+hatpU+w+dxAjQFBOg0Bpd4DE9Ro
+ /Rnc0iso6WADgxnsqQUmLfdf56YByzbKrpNrrR3xwzGlpcoH2sWRP+KlcSbWRUAZyXWJIpMXPXtI
+ AH71a7QnBYUP1HgumJ7RdYbLfLAT0/wz8nIkmVjaCb8YFzx1KzSyNDbO1hRKqhr1pJyml602NCOS
+ Wec/w/zNe+htXPU/9hOhFHpGXfiA2qjTwtNZwO5z/uvsuHEfWMR9ZGyK0rgKgw9m+B+lL/KVKle5
+ RokiOSS/AQAA//8DAAFWWEMoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637c14bd5e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '365'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_e92b4d6f608d0bd083196741a6afe28d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW+bMBB+51dY90wmSJO05W1rp66qUm3ttGkqFXLNQZwY27HN2ijKf58wKZAs
+ k8YDsu6777u77+xtQAjwHBICbEEdq7QYffzGfr6uF+tXNa/vf4tiFV+t5nf46zy+u76GsGGolyUy
+ 9876wFSlBTquZAszg9Rhoxqfn0WX0UUUjT1QqRxFQyu1G03UaByNJ6PoYhTN9sSF4gwtJOQpIISQ
+ rf83Lcoc3yAhUfgeqdBaWiIkXRIhYJRoIkCt5dZR6SDsQaakQ9l0LWshBoBTSmSMCtEXbr/t4Nz7
+ RIXIHr9ubr9Ejw839z/K75/nej2tbpebq+WgXiu90b6hopas82eAd/HkqBghIGnlufPN3NsWHidQ
+ U9YVSte0Ddt07944heQphQfMUwhTuDGI0p8+iRpTeN7Bgc4uOHV+HthjsKgtFXvf9vFdtwihSm3U
+ iz3yFQouuV1kBqn184F1Sre1mzq+AtQHOwRtVKVd5tQKZSM4nk5bPeivWI/G8R50ylExYM1m4Qm9
+ LEdHuV9yd68YZQvMe2p/v2idczUAgsHUf3dzSrudnMvyf+R7gDHUDvNMG8w5O5y4TzPYvMB/pXUu
+ +4bBbqzDKiu4LNFow/0jgEJn8fQyvzibxIxBsAv+AAAA//8DAGsUgAoNBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637c4783fe24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1170'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_7d40cbbcbd46e5b500f8b557552a7c00
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT226cMBB95yuseWYrs7cmvKXqVc02Sqq2UkOEHDOAW2NbtpGyWe2/V5gNsNut
+ VB6QNWfOmZkz9i4iBEQBKQFeM88bI2dXt/zH0/Xt80eK0vr3Vz8/Lz9dfy3r0jU3G4g7hn78hdy/
+ sF5x3RiJXmjVw9wi89ipJq8X9JJeULoIQKMLlB2tMn621LM5nS9n9GJG1wdirQVHBym5jwghZBf+
+ XYuqwCdICY1fIg06xyqEdEgiBKyWXQSYc8J5pjzEI8i18qi6rlUr5QTwWsucMynHwv23m5xHn5iU
+ +Y24Q/2NJm+rZ1p/t+t38ss2WXI5qddLb01oqGwVH/yZ4EM8PSlGCCjWBO5muwm2xacJzFZtg8p3
+ bcMuO7g3zyC9z+AOiwziDD5YRBVOb2SLGTzs4UhnH507P0zssVi2jsmDb4f4fliE1JWx+tGd+Aql
+ UMLVuUXmwnzgvDZ97a5OqADt0Q7BWN0Yn3v9G1UnOF+tej0Yr9iIJskB9NozOWGt1/EZvbxAz0RY
+ 8nCvOOM1FiN1vF+sLYSeANFk6r+7OafdTy5U9T/yI8A5Go9FbiwWgh9PPKZZ7F7gv9IGl0PD4LbO
+ Y5OXQlVojRXhEUBp8mR1WVwslgnnEO2jPwAAAP//AwAmbTxUDQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637cd6b99e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '470'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_9c1f3eedeefd757fb839d6069dc7cf92
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXW/bMAx8968Q+OwMzmcTv7VAtw5YOqxrkBV1Yagy4yiTJUGSt6ZB/vtgObWd
+ NAXmB0Pg8Y7kUdoFhADPICbA1tSxQove5Q+23F5F8mG5WdwuN1Hxa7F8+Xo9fHiVi88QVgz1vEHm
+ 3lifmCq0QMeVrGFmkDqsVPsXw2gWTaNo5IFCZSgqWq5db6R6g2gw6kXTXjQ5ENeKM7QQk8eAEEJ2
+ /l+1KDN8gZhE4VukQGtpjhA3SYSAUaKKALWWW0elg7AFmZIOZdW1LIXoAE4pkTIqRFu4/nadc+sT
+ FSK9i26+3wvzl81uLv7MX6+Xtz+/bdzlsFOvlt5q39CqlKzxp4M38fikGCEgaeG58+3c2xaeJlCT
+ lwVKV7UNu+Tg3iCB+DGBO8wSCBP4YhClP12JEhN42sORzj44d37q2GNwVVoqDr4d4vtmEULl2qhn
+ e+IrrLjkdp0apNbPB9YpXdeu6vgKUB7tELRRhXapU79RVoKD8bjWg/aKtWi/fwCdclR0WJNJeEYv
+ zdBR7pfc3CtG2RqzltreL1pmXHWAoDP1+27OadeTc5n/j3wLMIbaYZZqgxlnxxO3aQarF/hRWuOy
+ bxjs1jos0hWXORptuH8EsNJpfzzLpsNRnzEI9sE/AAAA//8DAKfUqkoNBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637d12fa5e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '424'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_8dedb1de8a9001ae0319087af46ed8d2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTYvbMBC9+1eIOTvF+dzEt+3upocS2C6Fwq4Xo0gTRxtZEpIMSUP+e7GctZ00
+ hfpgxLx5b2beSMeIEBAcUgJsSz0rjRzc/2C/Drv5no+exxP7enhZfiz2iik+FfYnxDVDrz+Q+U/W
+ F6ZLI9ELrRqYWaQea9Xh3ThZJPMkmQSg1BxlTSuMH0z0YJSMJoNkPkhmZ+JWC4YOUvIWEULIMfzr
+ FhXHPaQkiT8jJTpHC4S0TSIErJZ1BKhzwnmqPMQdyLTyqOquVSVlD/Bay5xRKbvCzXfsnTufqJT5
+ b7fEO189rh++qyWt7lePT+5599qv10gfTGhoUynW+tPD23h6VYwQULQM3NVhFWyLrxOoLaoSla/b
+ hmN2dm+UQfqWwQvyDOIMvllEFU5fZYUZvJ/gQucU3Tq/9+yxuKkclWffzvFTuwipC2P12l35Chuh
+ hNvmFqkL84Hz2jS16zqhAlQXOwRjdWl87vUOVS04mk4bPeiuWIcOh2fQa09ljzWbxTf0co6eirDk
+ 9l4xyrbIO2p3v2jFhe4BUW/qv7u5pd1MLlTxP/IdwBgajzw3FrlglxN3aRbrF/ivtNbl0DC4g/NY
+ 5huhCrTGivAIYGPy4XTB5+PJkDGITtEfAAAA//8DAPNVkUoNBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637d51c4ce24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '487'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_5961b5f8b2b48f5b0ec709f5f9c8a095
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXW/bMAx8968Q+OwMjpukjd+2dQgwLMPafWRDXRiKzNjqZEmVZCxZkP8+WE5t
+ J8uA+cEQeLwjeZT2ASHAc0gIsJI6Vmkxen3HVr+f5d3yU/xcT5a/RLy4vy0M1ovV+ymEDUOtn5C5
+ F9Yrpiot0HElW5gZpA4b1fH1VTSPbqJo6oFK5SgaWqHdaKJGcRRPRtHNKJodiaXiDC0k5CEghJC9
+ /zctyhy3kJAofIlUaC0tEJIuiRAwSjQRoNZy66h0EPYgU9KhbLqWtRADwCklMkaF6Au3335w7n2i
+ QmTXH9j889eoXD6Vb9dfvs1Wtz/efdx+3w7qtdI77Rva1JJ1/gzwLp6cFSMEJK08d7lbetvC8wRq
+ irpC6Zq2YZ8e3YtTSB5SuMc8hTCFhUGU/vRG1JjC4wFOdA7BpfPjwB6Dm9pScfTtGD90ixCq0Eat
+ 7ZmvsOGS2zIzSK2fD6xTuq3d1PEVoD7ZIWijKu0yp36ibATj6bTVg/6K9eh4fASdclQMWLNZeEEv
+ y9FR7pfc3StGWYl5T+3vF61zrgZAMJj6724uabeTc1n8j3wPMIbaYZ5pgzlnpxP3aQabF/ivtM5l
+ 3zDYnXVYZRsuCzTacP8IYKOz8XSe31xNxoxBcAj+AAAA//8DAOLU1ykNBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637da3ab8e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '448'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_351e18e30e69da418f22bafbc416fd72
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBS8+ytedeklXpw4yXZzKS0UGmihPXV3SzGy9GyrK+sJ6Rk2LPn3Iicb
+ e+kWetFh5s0wM+gpAxBGix0I1UlWvbf5h+/qtrC3q7t6fx+/bOjjw3qz+bRdxcev99/EIimo/o2K
+ n1VXinpvkQ25E60CSsbkurwui5viXVFsR6InjTbJWs/5Ouch1JSvitU6L9Z5cXNWd2QURrGDnxkA
+ wNP4ppxO46PYQbF4RnqMUbYodpcjABHIJkTIGE1k6VgsJlKRY3Rj9M9oLb2B/dseOgwITNCh9XCg
+ 4Qp+dJJBSQd70AQNhQQDk5aH93O/gM0QZerkBmvP+PES0FLrA9XxzF/wxjgTuyqgjORSmMjkxcge
+ M4Bf4xDDi27CB+o9V0wP6JLhcn2yE9P8M/L6TDKxtBNeLhevuFUaWRobZ0MKJVWHelJOq8tBG5oR
+ 2azz32Fe8z71Nq79H/uJUAo9o658QG3Uy8LTWcD0Of91dtl4DCziITL2VWNci8EHc/oaja82ui6L
+ cls2jciO2R8AAAD//wMAxQS8oCgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637de1eebe24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '708'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_8456e02b000fe65953530c145316b624
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPUuF/E50a1qkDzQpXCBpmigQaGolM6FIgqTSGIb/vRBlS7Kb
+ AtVBIHZ2ZneHy21ACPAcEgJsTR2rtIjeL9ndSN/eXJZLe//x9+vzwtRfxbeX66fPykDYMNTqCZk7
+ sN4xVWmBjivZwswgddiojhaT+Dw+i+OFByqVo2hopXbRNHK1WaloHI+nUTyN4vM9e604QwsJeQgI
+ IWTr/02fMsdXSEgcHiIVWktLhKRLIgSMEk0EqLXcOiodhD3IlHQom9ZlLcQAcEqJjFEh+sLttx2c
+ e7OoEFnuvvMvP6/P4pvFy91mfH97uZz/utAfBvVa6Y32DRW1ZJ1JA7yLJyfFCAFJK8+92lx578LT
+ BGrKukLpmrZhm+7dG6eQPKTwA/MUwhQ+GUTpTxeixhQed3CkswveOj8O7DFY1JaKvW/7+K67CKFK
+ bdTKnvgKBZfcrjOD1Pr5wDql29pNHV8B6qM7BG1UpV3m1DPKRnA8m7V60O9Zj4722wBOOSoGrPmB
+ daSX5ego95fc7RWjbI15T+33i9Y5VwMgGEz9dzdvabeTc1n+j3wPMIbaYZ5pgzlnxxP3aQabZ/iv
+ tM5l3zDYjXVYZQWXJRptuH8EUOhslq8m8WQ+KQoIdsEfAAAA//8DAEZEkRoSBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637e35d53e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '614'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_4909281a7450c8ddab1559902f0a719d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT72vbMBD97r9C3Od4OL/axd/aDQLd0rExmtC6GFk6O2pkSUjyWBfyvxfbie1k
+ HcwfjLh3793d02kfEAKCQ0yAbalnpZHhzXe2GW+m5tvDgt6r9eOXBzl36NYb8fnrTxjVDJ29IPMn
+ 1gemSyPRC61amFmkHmvV8fU0WkQfo+i6AUrNUda0wvhwFvrKZjqcRJNZGM3CaHFkb7Vg6CAmTwEh
+ hOybf92n4vgbYhKNTpESnaMFQtwlEQJWyzoC1DnhPFUeRj3ItPKo6tZVJeUA8FrLlFEp+8Lttx+c
+ e7OolOnd6tenu2J3v/ujlvxlSfPHrLy9ydaDeq30q2kayivFOpMGeBePL4oRAoqWDXf1umq8G10m
+ UFtUJSpftw375OjeJIH4KYEfyBMYJbC0iKo53coKE3g+wJnOIXjv/Dywx2JeOSqPvh3jh+4ipC6M
+ 1Zm78BVyoYTbphapa+YD57Vpa9d1mgpQnd0hGKtL41Ovd6hqwcl83upBv2c9Oj5uA3jtqRywrk6s
+ M72Uo6eiueRurxhlW+Q9td8vWnGhB0AwmPrvbt7TbicXqvgf+R5gDI1HnhqLXLDzifs0i/Uz/Fda
+ 53LTMLhX57FMc6EKtMaK5hFAbtI5z6bR9Gqa5xAcgjcAAAD//wMA3Ku50xIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637e84a7ae24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1739'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_103acdd36d9ffbd5fdec6fcdc2eb2bed
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW/bMAy9+1cIPMeDE+dj8S3bYesh6zYMXYe6MBSZdtTIkiDJaLMg/32wnNhO
+ 1gL1wRD4+B7JJ+oQEAI8h4QA21LHKi3C1Q92H8+e7yT7bW/0wmo+VYubX7uXb9F8DKOGoTZPyNyZ
+ 9YGpSgt0XMkWZgapw0Z1vIijZfQxipYeqFSOoqGV2oXT0NVmo8JJNJmG0TSMlif2VnGGFhLyEBBC
+ yMH/mz5lji+QkGh0jlRoLS0Rki6JEDBKNBGg1nLrqHQw6kGmpEPZtC5rIQaAU0pkjArRF26/w+Dc
+ m0WFyMa7zyJ+/ru6xXv+ffXVxuJu/XT7Zzqo10rvtW+oqCXrTBrgXTy5KkYISFp57nq/9t6NrhOo
+ KesKpWvahkN6cm+SQvKQwk/MUxil8MUgSn/6JGpM4fEIFzrH4LXz48Aeg0VtqTj5doofu4sQqtRG
+ beyVr1Bwye02M0itnw+sU7qt3dTxFaC+uEPQRlXaZU7tUDaCk9ms1YN+z3p0fNoGcMpRMWDNz6wL
+ vSxHR7m/5G6vGGVbzHtqv1+0zrkaAMFg6v+7eU27nZzL8j3yPcAYaod5pg3mnF1O3KcZbJ7hW2md
+ y75hsHvrsMoKLks02nD/CKDQ2SzfxFE8j4sCgmPwDwAA//8DALnLu3kSBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637f5196fe24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '564'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ae3d811f54727424d9c7e34df1d291c2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOYeKhHwtt+xhm0u0aauqlZYVcswA7hrbso2UKMp/rzBZINmt
+ VA7Imjfvzczz+BwQAjyHhACrqGO1FuHmG/s93z/bxWO8W6rjbLUu3Fv0a/sU/TgKmLQMdfiDzL2z
+ vjBVa4GOK9nBzCB12KpOV3H0EK2jaeSBWuUoWlqpXTgPXWMOKpxFs3kYzcPo4cquFGdoISEvASGE
+ nP2/7VPmeISEeC0fqdFaWiIkfRIhYJRoI0Ct5dZR6WAygExJh7JtXTZCjACnlMgYFWIo3H3n0Xkw
+ iwqRbX/aTTPfLna2iqr1fvW8EU9iz+yoXid90r6hopGsN2mE9/HkrhghIGntubvTzns3uU+gpmxq
+ lK5tG87p1b1ZCslLCt8xT2GSwleDKP3pUTSYwusFbnQuwWfn15E9BovGUnH17Rq/9BchVKmNOtg7
+ X6HgktsqM0itnw+sU7qr3dbxFaC5uUPQRtXaZU69oWwFZ4tFpwfDng3o9LoN4JSjYsRavrNu9LIc
+ HeX+kvu9YpRVmA/UYb9ok3M1AoLR1B+7+Uy7m5zL8n/kB4Ax1A7zTBvMObudeEgz2D7Df6X1LvuG
+ wZ6swzoruCzRaMP9I4BCZ4v8EEfxMi4KCC7BXwAAAP//AwDhmxNyEgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de637f99e29e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '857'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_63a48ac98e0bd29cba8632b071f56581
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q9xwPJ07S1W/pNrYxutJS1rK6GEU6O1plSUjyWAj578NyYjtZ
+ C/ODEffd993dp9MuIgQEh4wA21DPaiPj1S17XCQ+WS3uPhktxM3XbfPtB51+ufm+NDBpGXr9C5k/
+ st4xXRuJXmjVwcwi9diqTi/S5DJ5n0ynAag1R9nSKuPjeewbu9bxLJnN42QeJ5cH9kYLhg4y8hQR
+ Qsgu/Ns+Fcc/kJFkcozU6BytELI+iRCwWrYRoM4J56nyMBlAppVH1bauGilHgNdaFoxKORTuvt3o
+ PJhFpSxeWPP4ML9NP6x/ri7S3x83fisf7ld8VK+T3prQUNko1ps0wvt4dlaMEFC0Dtzr7XXwbnKe
+ QG3V1Kh82zbs8oN7sxyypxzukOcwyeGzRVThdCUbzOF5Dyc6++i18/PIHotl46g8+HaI7/uLkLoy
+ Vq/dma9QCiXcprBIXZgPnNemq93WCRWgOblDMFbXxhdev6BqBWeLRacHw54N6PSwDeC1p3LEWh5Z
+ J3oFR09FuOR+rxhlG+QDddgv2nChR0A0mvrfbl7T7iYXqvof+QFgDI1HXhiLXLDTiYc0i+0zfCut
+ dzk0DG7rPNZFKVSF1lgRHgGUpljwdZqky7QsIdpHfwEAAP//AwDOxmXUEgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638005e35e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '719'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_4ea70fdc2c6ea26bd22e7c1a7bfbd86e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTW/UMBC951cMvvSSoCS7Ype9VBwqQU/AqQihyLEnidvYY9kTwVLtf0fOfmQr
+ isTFst+b9zxv7OcMQBgtdiDUIFlZPxYfvqiHd/X96tu9s/3WWa3ar3e15N+fNw9S5ElB7SMqPqve
+ KrJ+RDbkjrQKKBmTa7VZle/LbVnVM2FJ45hkvediTYU1zhR1Wa+LclNU25N6IKMwih18zwAAnuc1
+ 9ek0/hI7KPMzYjFG2aPYXYoARKAxIULGaCJLxyJfSEWO0c2tf7qx8DhFBgk+UB+kzaGdGBI+YECQ
+ TkNAqffABAOOHvY0vYGP9BNkSxOn42063sS0DaDlHnoyrr+9vjJgN0WZYrtpHE/44ZJhpN4HauOJ
+ v+CdcSYOTUAZyaV+I5MXM3vIAH7Ms5pexBc+kPXcMD2hS4bV+mgnlhdayPpMMrEcF3y1zV9xazSy
+ NGO8mrVQUg2oF+XyMHLShq6I7Crz38285n3MbVz/P/YLoRR6Rt34gNqol4GXsoDp//6r7DLjuWER
+ 95HRNp1xPQYfzPH3dL4pW1nqql53lcgO2R8AAAD//wMAknwRe0sDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63807fee4e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '424'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_87b98e58d90bdc3a0a309b8fa33e857d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOUMFZPPFrRv147Jqu+2hm2WFHDMQN8Z2bbO7UZT/XgFZIGkq
+ lQOy5s17M/PGPniEAM8hIcC21LFKi+D9N/ZzfrtaL/Ifz+H9y/r77y+aT1yRf46rGfgNQ21+IXNv
+ rHdMVVqg40p2MDNIHTaq0XwSLsNFGE1aoFI5ioZWahfcqKDikgdxGN8E4TyIFif2VnGGFhLy6BFC
+ yKH9N33KHF8hIaH/FqnQWloiJH0SIWCUaCJAreXWUenAH0CmpEPZtC5rIUaAU0pkjAoxFO6+w+g8
+ mEWFyHaT/dditbhbf1i9bpa5+fgsHl525mFUr5Pe67ahopasN2mE9/HkohghIGnVcu/2d613/mUC
+ NWVdoXRN23BIT+7FKSSPKdxjnoKfwieDKNvTragxhacjnOkcvWvnp5E9BovaUnHy7RQ/9osQqtRG
+ beyFr1Bwye02M0htOx9Yp3RXu6nTVoD6bIegjaq0y5zaoWwE4+m004Phng1oFJ1ApxwVI9Zs5l/R
+ y3J0lLdL7u8Vo2yL+UAd7hetc65GgDea+u9urml3k3NZ/o/8ADCG2mGeaYM5Z+cTD2kGm2f4r7Te
+ 5bZhsHvrsMoKLks02vD2EUChs+VmvtjMIjaNwTt6fwAAAP//AwD5Nzh9EgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6380ccbd5e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '568'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4e144124c97023aca3571c1c671c49e0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXY/TMBB8z6+w9jlBSehn3gAJhFDpcUhwcDlFrrNN3Tq2ZTtAqPrfUZJekpYi
+ kYfI2tmZ3Z21jx4hwHNICLAddazUInj1iT0s9urNl/lm9ZndfVi/vf9Rv2fztTw8HMBvGGqzR+ae
+ WS+YKrVAx5XsYGaQOmxUo/nLcBkuwmjSAqXKUTS0QrtgooKSSx7EYTwJwnkQLc7sneIMLSTk0SOE
+ kGP7b/qUOf6ChIT+c6REa2mBkPRJhIBRookAtZZbR6UDfwCZkg5l07qshBgBTimRMSrEULj7jqPz
+ YBYVIrub5m7J4n39cfrz61J8X3+L5Ur+jkb1Oulatw1tK8l6k0Z4H0+uihECkpYtd1WvWu/86wRq
+ iqpE6Zq24Zie3YtTSB5TuMc8BT+FdwZRtqfXosIUnk5woXPybp2fRvYY3FaWirNv5/ipX4RQhTZq
+ Y698hS2X3O4yg9S284F1Sne1mzptBagudgjaqFK7zKkDykYwnk47PRju2YBG0Rl0ylExYs1m/g29
+ LEdHebvk/l4xynaYD9ThftEq52oEeKOp/+7mlnY3OZfF/8gPAGOoHeaZNphzdjnxkGaweYb/Sutd
+ bhsGW1uHZbblskCjDW8fAWx1ttzMF5tZxKYxeCfvDwAAAP//AwCN15bKEgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63811e956e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '550'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_3c2c53aefe1efcf7c35b51446a935f1a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT226cMBB95yuseYYKNnvlLYmaqo2iNlWlRAoR8poB3BrbtU2bzWr/veISYLdb
+ qTwga86cMzNn7L1HCPAMYgKspI5VWgSX9+xx8y3HurjYPJrPosSPD78df7l5/1Dfgt8w1PY7MvfG
+ esdUpQU6rmQHM4PUYaMarS7CTbgOo0ULVCpD0dAK7YK5CioueTALZ/MgXAXRumeXijO0EJMnjxBC
+ 9u2/6VNm+AIxCf23SIXW0gIhHpIIAaNEEwFqLbeOSgf+CDIlHcqmdVkLMQGcUiJlVIixcPftJ+fR
+ LCpEGn26vny9/il+0fL2ZhEul/fR/Issrib1OumdbhvKa8kGkyb4EI9PihECklYt925313rnnyZQ
+ U9QVSte0Dfukd2+WQPyUwFfMEvAT+GAQZXu6EjUm8HyAI52Dd+78PLHHYF5bKnrf+vhhWIRQhTZq
+ a098hZxLbsvUILXtfGCd0l3tpk5bAeqjHYI2qtIudeoHykZwtlh0ejDesxGNoh50ylExYS2X/hm9
+ NENHebvk4V4xykrMRup4v2idcTUBvMnUf3dzTrubnMvif+RHgDHUDrNUG8w4O554TDPYPMN/pQ0u
+ tw2D3VmHVZpzWaDRhrePAHKdbrar9XYZscUMvIP3BwAA//8DAPUSL18SBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638170f3ce24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '464'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_edf8748ebe4a501a4ed057df94485b20
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT247TMBB9z1dY85ygJNtr3hbERaAFFrYFabOKXGeaGhzbtR1BVfXfUS6bpKVI
+ 5CGy5sw5M3PGPnqEAM8hIcB21LFSi+D2nn1f5l/XC2b2y8/Lye2nD4fZPb5aTzbv9uDXDLX5gcw9
+ s14wVWqBjivZwswgdVirRvObcBkuwmjaAKXKUdS0QrtgooKSSx7EYTwJwnkQLTr2TnGGFhLy6BFC
+ yLH5133KHH9DQkL/OVKitbRASPokQsAoUUeAWsuto9KBP4BMSYeybl1WQowAp5TIGBViKNx+x9F5
+ MIsKkbny22uz/vVmFdto71YP/H28im4ePo7qtdIH3TS0rSTrTRrhfTy5KEYISFo23LvDXeOdf5lA
+ TVGVKF3dNhzTzr04heQxhS+Yp+Cn8NYgyub0UlSYwtMJznRO3rXz08geg9vKUtH51sVP/SKEKrRR
+ G3vhK2y55HaXGaS2mQ+sU7qtXddpKkB1tkPQRpXaZU79RFkLxtNpqwfDPRvQKOpApxwVI9Zs5l/R
+ y3J0lDdL7u8Vo2yH+UAd7hetcq5GgDea+u9urmm3k3NZ/I/8ADCG2mGeaYM5Z+cTD2kG62f4r7Te
+ 5aZhsAfrsMy2XBZotOHNI4Ctzpab+WIzi9g0Bu/k/QEAAP//AwAk0myNEgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6381aebc8e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '380'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ad4b777749170b74d644173095510351
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW+bQBC98ytWc4YKnPiLm9s0qarmkKiSrYYIrZcBb7Nf2l2kpJb/ewQ4gF1X
+ Kge0mjfvzcyb3X1ACPACUgJsRz2TRkSrB7ZZqfVa3jqk7ma7/PVSvj5ublZ3i3oKYcPQ29/I/Afr
+ E9PSCPRcqw5mFqnHRjWZX8XLeBEnsxaQukDR0Crjo2sdSa54NIkn11E8j5LFkb3TnKGDlDwFhBCy
+ b/9Nn6rAV0hJHH5EJDpHK4S0TyIErBZNBKhz3HmqPIQDyLTyqJrWVS3ECPBai5xRIYbC3bcfnQez
+ qBC5u51u1l///HDJ1RzlQyLn33+uvtVfRvU66TfTNlTWivUmjfA+np4VIwQUlS33/u2+9S48T6C2
+ qiUq37QN++zo3iSD9CmDRywyCDO4s4iqPX0WNWbwfIATnUNw6fw8ssdiWTsqjr4d44d+EUJXxuqt
+ O/MVSq642+UWqWvnA+e16Wo3ddoKUJ/sEIzV0vjc6xdUjeBkOu30YLhnA5okR9BrT8WINZuFF/Ty
+ Aj3l7ZL7e8Uo22ExUIf7ReuC6xEQjKb+u5tL2t3kXFX/Iz8AjKHxWOTGYsHZ6cRDmsXmGf4rrXe5
+ bRjcm/Mo85KrCq2xvH0EUJp8uZ0vtrOETScQHIJ3AAAA//8DAP0z4KMSBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6381e680be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '393'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_f39dde00f1bed097baf7ac85f3bf4e3d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBDd9RVXLllkQ6rtpvFSpOgQd8vQIkARCDR5lphSPIY8OXUD/3shWpEc
+ NAW6cHjv3sN7d3zOAITRYg1CNZJV6+3s+lbdfX78bZZfr8u78KHFx2/F9/2XW9+srBJ5r6DtAyp+
+ Uc0Vtd4iG3InWgWUjL1rebkoroqPRXmZiJY02l5We54t5qsZd2FLs6J8vxqUDRmFUazhRwYA8Jze
+ PqPT+EusochfkBZjlDWK9TgEIALZHhEyRhNZOhb5RCpyjC7FvkFr6R1sLlp46CKDhL0J3EkLozKH
+ SLABTe6CoZF7hB2iNa6OOWw7TtoGAwITNGg9HKiDJ8MNSHfgxrg6IQ5Rz+GGnkBJB5vBP1FMWh4+
+ nScMuOui7DfkOmsH/DhWtlT7QNs48CO+M87EpgooI7m+XmTyIrHHDOA+rbZ7tS3hA7WeK6af6HrD
+ cnmyE9MxJ3KxGkgmlnbCl1f5G26VRpbGxrPTCCVVg3pSTneUnTZ0RmRnnf8O85b3qbdx9f/YT4RS
+ 6Bl15QNqo14XnsYC9l/9X2PjjlNgEQ+Rsa12xtUYfDDps6VTHrM/AAAA//8DACv8hdtrAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63822dd45e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '802'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_913d5ac579d61ffc2a833cff4f5cf43e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwYrbMBC9+yvEnJ0lTtgm61t3YWFL03RLaQN1MYo0dtTKkiqN6YaQfy+2s7aT
+ plAfjJg3783MG+kQMQZKQspA7DiJyunJ22exeag/Pj/92jzPH78WQQX+4LbLxy3dc4gbht3+QEGv
+ rBthK6eRlDUdLDxywkY1Wcynd9PlNFm2QGUl6oZWOprMb24nVPutnUyT2e2JubNKYICUfYsYY+zQ
+ /psejcQXSNk0fo1UGAIvEdI+iTHwVjcR4CGoQNwQxAMorCE0Tdum1noEkLU6F1zroXD3HUbnwSiu
+ df5uL5MvM77cfKDk/eLzm6fNem1nv19G9TrpvWsbKmojeoNGeB9PL4oxBoZXLXe1X7W+xZcJ3Jd1
+ hYaatuGQndybZZBmcK9rzCDOIOy4xHXxCWUbX3FvrcngCGdqx+ja+fvIJI9FHbg+uXeKH/t1aFs6
+ b7fhwl0olFFhl3vkoZ0SAlnX1W7qtBWgPtskOG8rRznZn2gawdli2enBcNMGNJmfQLLE9Yh1l8RX
+ 9HKJxFW76v52CS52KAfqcMt4LZUdAdFo6r+7uabdTa5M+T/yAyAEOkKZO49SifOJhzSPzUP8V1rv
+ ctswhH0grPJCmRK986p/CtEx+gMAAP//AwBc7AfyCQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638290be3e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '404'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_e2d14751af722095adabe7e424e170a9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXW/bMAx8968Q+OwUToKmqd+27qNrEQxJ0WzAPBiKRNvaZEmV5K1pkP8+2E5t
+ J8uA+cEQeLwjeZR2ASEgOMQEWEE9K40cvVmyrzfPq+zTcvUB2f0T/e0ebjd3s9X6/e0LhDVDb34g
+ 86+sC6ZLI9ELrVqYWaQea9Xx1TS6jubReN4ApeYoa1pu/Gh6cTnyld3oUTSeXB6YhRYMHcTkW0AI
+ IbvmX/eoOD5DTKLwNVKiczRHiLskQsBqWUeAOiecp8pD2INMK4+qbltVUg4Ar7VMGZWyL9x+u8G5
+ N4pKmb7LZo93v2ZfPsoVfbp54WsxedD3y/WgXiu9NU1DWaVYZ9AA7+LxSTFCQNGy4S62i8a38DSB
+ 2rwqUfm6bdglB/cmCcQJvJUVJhAm4ArK8XO2Qt7EF9RqrRLYw5HaPjh3/j4wyWJWOSoP7h3i+24d
+ UufG6o07cRcyoYQrUovUNVOC89q0tes6TQWojjYJxurS+NTrn6hqwcnVvNWD/qb16Hh6AL32VA5Y
+ 1+PwjF7K0VPRrLq7XYyyAnlP7W8ZrbjQAyAYTP13N+e028mFyv9HvgcYQ+ORp8YiF+x44j7NYv0Q
+ /5XWudw0DG7rPJZpJlSO1ljRPYVgH/wBAAD//wMAXnHTkQkEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6382cc803e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '426'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_78ef9a8f105e9053dfc014c278de7569
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTYvbMBC9+1eIOTuLnRCS+NaPQyGblt22bJa6GEUaO9qVJaEP2BDy34vtrO2k
+ KdQHI+bNezPzRjpGhIDgkBFge+pZbeTkwwPbfv6x/f4pSZKn+fIxvIU00a+bhyld3EPcMPTuBZl/
+ Z90xXRuJXmjVwcwi9diopotZskqWSbpqgVpzlA2tMn4yu5tPfLA7PUnS6fzM3GvB0EFGfkWEEHJs
+ /02PiuMbZCSJ3yM1OkcrhKxPIgSslk0EqHPCeao8xAPItPKomrZVkHIEeK1lwaiUQ+HuO47Og1FU
+ ymI7+7l+Lo1Yluuvz09f1HrL8SXc16N6nfTBtA2VQbHeoBHex7OrYoSAonXL3Rw2rW/xdQK1VahR
+ +aZtOOZn96Y5ZDl8lAFziHNwe8rxW/mIvI1vqNVa5XCCC7VTdOv8e2SSxTI4Ks/uneOnfh1SV8bq
+ nbtyF0qhhNsXFqlrpwTntelqN3XaChAuNgnG6tr4wutXVI3gdLHs9GC4aQOazs6g157KEWuVxjf0
+ Co6einbV/e1ilO2RD9ThltHAhR4B0Wjqv7u5pd1NLlT1P/IDwBgaj7wwFrlglxMPaRabh/ivtN7l
+ tmFwB+exLkqhKrTGiv4pRKfoDwAAAP//AwB7t8jrCQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638304bb9e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:46:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '392'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_deadf7b22c11532a93bc577550d1dda1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q95wUO1nWxm/Z6NY9pCVlhcJcjCxdHCWypEkyNIT892E5s500
+ g/nBiPvu++7uO+kQEQKCQ0qAbahnlZHjxYq93m+Nx+Vu9/n36/Zldf/18dtcLGY/TQGjhqGLLTL/
+ l3XDdGUkeqFVCzOL1GOjmtxO43l8F0/iAFSao2xopfHj6c1s7Gtb6HGcTGYn5kYLhg5S8isihJBD
+ +Dc9Ko7vkJKgEyIVOkdLhLRLIgSslk0EqHPCeao8jHqQaeVRNW2rWsoB4LWWOaNS9oXb7zA490ZR
+ KfP354fvhq/Q/tj6ySJ5iJNi8fhUfBrUa6X3JjS0rhXrDBrgXTy9KEYIKFoF7nK/DL6NLhOoLesK
+ lW/ahkN2cm+SQZrBF1ljBqMM3IZyfFo/Iw/xJbVaqwyOcKZ2jK6d3wYmWVzXjsqTe6f4sVuH1KWx
+ unAX7sJaKOE2uUXqwpTgvDZt7aZOqAD12SbBWF0Zn3u9Q9UITm7vWj3ob1qPJtMT6LWncsCaJ6Mr
+ ejlHT0VYdXe7GGUb5D21v2W05kIPgGgw9cdurmm3kwtV/o98DzCGxiPPjUUu2PnEfZrF5iH+K61z
+ OTQMbu88VvlaqBKtsaJ7CtEx+gMAAP//AwC7rCdBCQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638339f4be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '660'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_b994f1ad3eca8a658f1b160d47f42429
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/TMBC951dYc25X/VDZbW5dhHaBLWX3gBYIiqbOJDE4tmU7K0rV/47ilCQt
+ RSKHyJo3783MG3sfMQYig5gBL9Hzysjx6pE/v7l/RQ8CX28e8NN7xF93t1/E4l39eQ2jhqG334n7
+ P6wrrisjyQutWphbQk+N6vR6PllObiazSQAqnZFsaIXx4/nVYuxru9XjyXS2ODJLLTg5iNnXiDHG
+ 9uHf9Kgy+gkxCzohUpFzWBDEXRJjYLVsIoDOCedReRj1INfKk2raVrWUA8BrLVOOUvaF228/OPdG
+ oZQpVuJl8fT2ZXn/YXX3/NGuxNQ+yo0Y1GuldyY0lNeKdwYN8C4enxVjDBRWgbverYNvo/MEtEVd
+ kfJN27BPju7NEogTuJU1JTBKwJWY0SZ/oizE12i1Vgkc4ETtEF06fxuYZCmvHcqje8f4oVuH1IWx
+ euvO3IVcKOHK1BK6MCU4r01bu6kTKkB9skkwVlfGp17/INUIzq5vWj3ob1qPTudH0GuPcsBaTkcX
+ 9NKMPIqw6u52ceQlZT21v2VYZ0IPgGgw9d/dXNJuJxeq+B/5HuCcjKcsNZYywU8n7tMsNQ/xX2md
+ y6FhcDvnqUpzoQqyxoruKUSH6DcAAAD//wMATLv0wwkEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638389cb4e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '641'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_efe5df6b852439e0639a5e8618fddd66
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBS8+ytedeklXuwk3Sa5lKVQslDotuRQKMVopRdbrawnpGe6Ycm/F9ne
+ 2KEt9KLDzJthZtBzBiCMFjsQqpGsWm/zu8/q6wfz5fCxDsHE/fvNYfvw5D6Zh9X+7iAWSUGPP1Dx
+ i+pGUestsiE30CqgZEyu5dtVsS02xbLsiZY02iSrPedrypfFcp0Xm7y4HYUNGYVR7OBbBgDw3L8p
+ otP4JHZQLF6QFmOUNYrd5QhABLIJETJGE1k6FouJVOQYXZ96j9bSK7h/3UKDAUE6DQGlPgETNGj9
+ DezpFyjp4B4GMzhRB0xant7NTQMeuyhTJ9dZO+LnS0pLtQ/0GEf+gh+NM7GpAspILiWKTF707DkD
+ +N6v0V0VFD5Q67li+okuGZbrwU5M88/I25FkYmknfDUueO1WaWRpbJytKZRUDepJOU0vO21oRmSz
+ zn+G+Zv30Nu4+n/sJ0Ip9Iy68gG1UdeFp7OA6XP+6+yycR9YxFNkbKujcTUGH8zwP46+Kt9s9Wa1
+ LpUS2Tn7DQAA//8DAKacAgUoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6383d8aa9e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '446'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_ca758d0bd8d59542c97c7623b1248dc5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW+bMBB+51dY90wmIGlLeNsydZOiruo6bVHGhFz7IG6NjWyzDUX57xOQAsky
+ aTwg+777vrv7bO89QkBwSAiwHXWsrOTs7QPbfKDfnrcvD1/v4/CjEavHNQ95fJu/fwS/ZeinZ2Tu
+ lfWG6bKS6IRWPcwMUoetangzD5ZBHERRB5Sao2xpReVmCz2LgmgxC+JZcH0k7rRgaCEh3z1CCNl3
+ /7ZFxfE3JCTwXyMlWksLhGRIIgSMlm0EqLXCOqoc+CPItHKo2q5VLeUEcFrLjFEpx8L9t5+sR5+o
+ lNnqdrv6Umzr5tNyHm6ui5/Nulj/2jxO6vXSTdU1lNeKDf5M8CGenBUjBBQtO+5dc9fZ5p8nUFPU
+ JSrXtg379OhelEKSwmfkKfgp2B3leJ932ySFd7UpasWbFA5wInfwLq1/TFwymNeWyqN9x/hhOA+p
+ i8roJ3tmL+RCCbvLDFLbjQnW6aqv3dbpKkB9cpRQGV1WLnP6BVUrGN1c9Xow3rQRDRdH0GlH5YQV
+ L/0LehlHR0V31sP1YpTtkI/U8ZrRmgs9AbzJ1H93c0m7n1yo4n/kR4AxrBzyrDLIBTudeEwz2D7E
+ f6UNLncNg22swzLLhSrQVEZ0bwHyKguvljyeL0LGwDt4fwAAAP//AwBNd9reFAQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638414e9be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '580'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_cee94e5dc64df39c261516c7e442f8f9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOZOKkOwuy61S25yi7fdGWyrk2AM4NbZrm6rZKP+9ArJA0lQq
+ B2TPm/dm5tk+BISA4JASYBX1rDZy9voD26ze/3p83pX+06pK1rdftlGy31D5+ecWwpahtztk/oX1
+ iunaSPRCqx5mFqnHVnV+t4juoySK4w6oNUfZ0krjZ0s9i6N4OYuSWXR7IlZaMHSQkm8BIYQcun/b
+ ouL4G1IShS+RGp2jJUI6JBECVss2AtQ54TxVHsIRZFp5VG3XqpFyAnitZc6olGPh/jtM1qNPVMqc
+ P+0e7UPxtamLzap8TtZvzeLdm+enSb1eem+6hopGscGfCT7E04tihICidcdd79edbeFlArVlU6Py
+ bdtwyE7uxRmkGXxEnkGYgasox4ei26YZrKnVWmVwhDOxY3Bt/X3ikcWicVSezDvFj8NpSF0aq7fu
+ wlwohBKuyi1S1w0JzmvT127rdBWgOTtIMFbXxude/0DVCsZ3N70ejPdsROeLE+i1p3LCSpLwil7O
+ 0VPRnfRwuRhlFfKROl4y2nChJ0Awmfrvbq5p95MLVf6P/AgwhsYjz41FLtj5xGOaxfYZ/ittcLlr
+ GNzeeazzQqgSrbGiewlQmHx+c8+TxXLOGATH4A8AAAD//wMACBps1BIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638466c25e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '522'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_09ada478d68ab66357974a02ddf212e6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnElFSLLLcmukStU2UZUeut0tFfLaA7hrbMs2UqIo/14BWSBp
+ KpUDsufNezPzbB8DQkBwSAmwinpWGzn7uGM/Pj/P+aLYbL74l7VQ6311XyfP6yexgrBl6NffyPw7
+ 6wPTtZHohVY9zCxSj63q/H4RPURJFC86oNYcZUsrjZ8t9SyO4uUsSmbR3ZlYacHQQUp+BoQQcuz+
+ bYuK4x5SEoXvkRqdoyVCOiQRAlbLNgLUOeE8VR7CEWRaeVRt16qRcgJ4rWXOqJRj4f47TtajT1TK
+ fLM/7JLN4z66+1R8F/GG7d7qx/opmdTrpQ+ma6hoFBv8meBDPL0qRggoWnfc7WHb2RZeJ1BbNjUq
+ 37YNx+zsXpxBmsE35BmEGbiKcvxadNs0gy21WqsMTnAhdgpurX9NPLJYNI7Ks3nn+Gk4DalLY/Wr
+ uzIXCqGEq3KL1HVDgvPa9LXbOl0FaC4OEozVtfG512+oWsH4ftXrwXjPRnS+OINeeyonrCQJb+jl
+ HD0V3UkPl4tRViEfqeMlow0XegIEk6n/7uaWdj+5UOX/yI8AY2g88txY5IJdTjymWWyf4b/SBpe7
+ hsEdnMc6L4Qq0RorupcAhcnnqweeLJZzxiA4BX8AAAD//wMAy7We7RIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6384ad98ee24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:04 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '494'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_a4e3a13c568a1f09ec4b503cc016395e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW/TMBB+z6+w7jlFSdpuWd4mTWIwOhgSCEZQ5NqX1MyxLduBlar/HSXpkrQU
+ iTxE9n33fXf32d4FhIDgkBFgG+pZbeTs+oF9efP5+Sb+9XNxd/OUfPgq7x+9f/370wrnELYMvf6B
+ zL+wXjFdG4leaNXDzCL12KrGl/PoKkqjZNEBteYoW1pl/GyhZ0mULGZROosuDsSNFgwdZORbQAgh
+ u+7ftqg4PkNGovAlUqNztELIhiRCwGrZRoA6J5ynykM4gkwrj6rtWjVSTgCvtSwYlXIs3H+7yXr0
+ iUpZ3EX31+XtY5Oub99dOFU2D5ytlvrtpF4vvTVdQ2Wj2ODPBB/i2UkxQkDRuuOutqvOtvA0gdqq
+ qVH5tm3Y5Qf3khyyHD4izyHMwW0ox/dlt81yWFGrtcphD0di++Dc+vvEI4tl46g8mHeI74fTkLoy
+ Vq/diblQCiXcprBIXTckOK9NX7ut01WA5uggwVhdG194/YSqFUwul70ejPdsROP5AfTaUzlhpWl4
+ Rq/g6KnoTnq4XIyyDfKROl4y2nChJ0Awmfrvbs5p95MLVf2P/AgwhsYjL4xFLtjxxGOaxfYZ/itt
+ cLlrGNzWeayLUqgKrbGiewlQmiJeXvF0vogZg2Af/AEAAP//AwCisPyrEgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638500ef7e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:04 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '474'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_448811898e22ae8fb3d845ac3376f18f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOZMKSGhYblEv1arRKqse+sEKOfYA3jU2a5ttoyj/vQKyQNJU
+ Kgdkz5v3ZubZPnqEgOCQEmAVdaxu5GKzY9/uwzAWrHCf1Nv++5dXvnl82f4I4ucI/I6h98/I3Dvr
+ A9N1I9EJrQaYGaQOO9VwvQzugiSI4h6oNUfZ0crGLVZ6EQXRahEki+DjmVhpwdBCSn56hBBy7P9d
+ i4rjb0hJ4L9HarSWlgjpmEQIGC27CFBrhXVUOfAnkGnlUHVdq1bKGeC0ljmjUk6Fh+84W08+USnz
+ t88Pyf2G4pK+7oL110T/Mrt4U9FZvUH60PQNFa1ioz8zfIynV8UIAUXrnrs9bHvb/OsEasq2RuW6
+ tuGYnd2LMkgzeESegZ+BrSjHh6LfphlsqdFaZXCCC7GTd2v9NPPIYNFaKs/mneOn8TSkLhuj9/bK
+ XCiEErbKDVLbDwnW6Wao3dXpK0B7cZDQGF03Lnf6BVUnGK3jQQ+mezah4fIMOu2onLGSxL+hl3N0
+ VPQnPV4uRlmFfKJOl4y2XOgZ4M2m/rubW9rD5EKV/yM/AYxh45DnjUEu2OXEU5rB7hn+K210uW8Y
+ 7ME6rPNCqBJNY0T/EqBo8jC+48lyFTIG3sn7AwAA//8DADebCfESBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63854cc26e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:05 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '478'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_b3199097f2d82911dd5bbaf79d07217e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBC95ysGX7hsquxmS9u9VAgJKLfSA5UQirz2JHHX8Rh7Iliq/XfkZLtJ
+ RZF68eG9eU/vjecxAxBGiw0I1UpWnbf5+1t1/+VP7AsMdztjLr/6h0/+9sPu58dldycWSUHbB1T8
+ pDpT1HmLbMiNtAooGZPr8qIsrorLYnU+EB1ptEnWeM7XOfdhS/mqWK3zYp0XV0d1S0ZhFBv4ngEA
+ PA5vyuk0/hYbKBZPSIcxygbF5jQEIALZhAgZo4ksHYvFRCpyjG6I/hmtpTdw87aDFgMCE7RoPeyp
+ P4NvrWRQ0sENjD4Jhl+GW2DScn89Nw1Y91GmYq639ogfTiktNT7QNh75E14bZ2JbBZSRXEoUmbwY
+ 2EMG8GPYRv+soPCBOs8V0w5dMlyuRzsx/cGMvDiSTCzthJfLxQtulUaWxsbZNoWSqkU9KafVy14b
+ mhHZrPO/YV7yHnsb17zGfiKUQs+oKx9QG/W88DQWMF3o/8ZOOx4Ci7iPjF1VG9dg8MGM91H76lxv
+ y6J8V9a1yA7ZXwAAAP//AwC/Kl2QLQMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638591949e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '737'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_529a782ac84dd9be4a4e5971ffd9ee0e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q92wPx3HaxG/LRmEppWvZ2Ng8jCKdba2yJCQZGkL++7CT2k6W
+ wfxgpPvu++7uk7QPCAHBISPAaupZY2T0/ol9v7/DO7pZzrxeqI+vqUw//ajvP2xwA2HH0NvfyPwb
+ 6x3TjZHohVZHmFmkHjvV2e08XsXLOLnpgUZzlB2tMj5KI9/arY6SOEmjOI3i1Ylda8HQQUZ+BoQQ
+ su//XZ+K4ytkJA7fIg06RyuEbEgiBKyWXQSoc8J5qjyEI8i08qi61lUr5QTwWsuCUSnHwsdvP1mP
+ ZlEpi3Wtt5+fFqZN1l+r9mX9WH15/oa7eFLvKL0zfUNlq9hg0gQf4tlFMUJA0abnPuweeu/CywRq
+ q7ZB5bu2YZ+f3EtyyHJ4Rp5DmIOrKcfHst9mOaxbW7WK73I4wJncIbi2/jVxyWLZOipP9p3ih+E8
+ pK6M1Vt3YS+UQglXFxap68cE57U51u7q9BWgPTtKMFY3xhdev6DqBJPb5VEPxus2orP0BHrtqZyw
+ Vkl4Ra/g6Knoz3q4XoyyGvlIHa8ZbbnQEyCYTP13N9e0j5MLVf2P/AgwhsYjL4xFLtj5xGOaxe41
+ /ittcLlvGNzOeWyKUqgKrbGifwtQmmLBt/N4fjMvSwgOwR8AAAD//wMAvwZsKxkEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6385ebf8be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '761'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_77c41f1caf3127de85460eeadd8a7d0c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/TMBC991dYc05QmnZpm1vhhMQu2oJggaDItSeJF8eO/CEaqv53lKSbpKVI
+ 5BBZ8+a9mXljH2eEgOCQEGAldayqZbh9ZE/vv/5+OsTxY6M+4y9dLv3uzs8Pzw8fIWgZev+MzL2w
+ XjFd1RKd0KqHmUHqsFWdrxbRJlpH8aoDKs1RtrSiduEydN7sdRhH8TKMlmG0ObNLLRhaSMj3GSGE
+ HLt/26fieICERMFLpEJraYGQDEmEgNGyjQC1VlhHlYNgBJlWDlXbuvJSTgCntcwYlXIs3H/HyXk0
+ i0qZ8e0XnW931SL/tMsf7Ld1s373thSHSb1euqm7hnKv2GDSBB/iyVUxQkDRquPeN/edd8F1AjWF
+ r1C5tm04pmf34hSSFN5IjykEKdiScvyQ75D3cW8Kr3iTwgku9E6zW+cfE5sM5t5SefbvHD8NC5G6
+ qI3e2yt/IRdK2DIzSG03J1in6752W6erAP5il1AbXdUuc/onqlYwXq17PRjv24jOl2fQaUflhLWJ
+ gxt6GUdHRbfs4X4xykrkI3W8Z9RzoSfAbDL1393c0u4nF6r4H/kRYAxrhzyrDXLBLice0wy2z/Ff
+ aYPLXcNgG+uwynKhCjS1Ed1jgLzO7vh+ES1eL/IcZqfZHwAAAP//AwDh7nCEGgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638649edbe24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:10 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2667'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_9b30b9d087869bb50e92948a8b8a4a7c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT247aMBB9z1dY80yqwIYl8FakXqSypbdVaZsqMvYkMevYlu2oixD/XiWhJFAq
+ NQ+RNWfOmZkz9iEgBASHBQFWUs8qI8OXH9lmPZ2uTPL68euXaPnNv0W+ksn3N7tfUxg1DL3dIfN/
+ WC+YroxEL7TqYGaRemxUx7O7aB4l0V3UApXmKBtaYXwYh762Wx1OokkcRnEYzU/sUguGDhbkR0AI
+ IYf23/SpOD7DgrRabaRC52iBsDgnEQJWyyYC1DnhPFUeRj3ItPKomtZVLeUA8FrLjFEp+8Lddxic
+ e7OolNlu9u5p+eGxfD/exGIti+LVpl7Z/POgXie9N21Dea3Y2aQBfo4vrooRAopWLfdh/9B6N7pO
+ oLaoK1S+aRsO6cm9SQqLFJayxhRGKbiSclznn5B38doWteL7FI5woXcMbp1/DmyymNeOypN/p/jx
+ vBCpC2P11l35C7lQwpWZReraOcF5bbraTZ22AtQXuwRjdWV85vUTqkZwMks6PejvW4+O4xPotady
+ wJpPRjf0Mo6einbZ5/vFKCuR99T+ntGaCz0AgsHUf3dzS7ubXKjif+R7gDE0HnlmLHLBLifu0yw2
+ z/FfaWeX24bB7Z3HKsuFKtAaK9rHALnJ+JQn8X0yv0cIjsFvAAAA//8DAIDFjRUaBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638766a3be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '910'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_5d41ed400077dc5a210861eec2777956
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAAwAAAP//jFPBjtMwEL3nK6w5JyhtyrbNbRfEAbbAghBIBEWuPUm8dWzLdqSWqv+O
+ knSTtBSJHCJ73rw3M8/2MSAEBIeUAKuoZ7WR0f0T+/F5ta9/v3+avWVfvzVUFJvZYyJtIwSELUNv
+ n5H5F9Yrpmsj0QutephZpB5b1dkyidfxKk5mHVBrjrKllcZHi8g3dqujeTxfRPEiitdndqUFQwcp
+ +RkQQsix+7d9Ko57SEkcvkRqdI6WCOmQRAhYLdsIUOeE81R5CEeQaeVRta2rRsoJ4LWWOaNSjoX7
+ 7zhZj2ZRKXP55ntVfbhXj/Hu8O55t68f7jxbmo+Ter30wXQNFY1ig0kTfIinV8UIAUXrjrs5bDrv
+ wusEasumRuXbtuGYnd2bZ5Bm8AV5BmEGrqIcPxXdNs3gobFlo/ghgxNcyJ2CW+tfE5csFo2j8mzf
+ OX4azkPq0li9dVf2QiGUcFVukbpuTHBem752W6erAM3FUYKxujY+93qHqhWcL1e9HozXbURnizPo
+ tadywlrPwxt6OUdPRXfWw/VilFXIR+p4zWjDhZ4AwWTqv7u5pd1PLlT5P/IjwBgajzw3FrlglxOP
+ aRbb1/ivtMHlrmFwB+exzguhSrTGiu4tQGHy13ybxMldUhQQnII/AAAA//8DAFPi1ioZBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6387d29c3e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3230'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_f3ed68ff36a0361fea5e78007f91645b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOScVC9km4Zaol20btbvqYaVSIccewLvGtmxTlUb57xUfCyRN
+ pXJA9rx5b2ae7VNACAgOCQFWUs8qI5e7R/b87eeHXdkcmpf488PrM292a+TF4+bBw6Jl6OMLMv/G
+ esd0ZSR6oVUPM4vUY6t6t47DbbgJ4/sOqDRH2dIK45erpa/tUS+jMFotw9Uy3A7sUguGDhLyPSCE
+ kFP3b/tUHH9BQsLFW6RC52iBkIxJhIDVso0AdU44T1Xf8wAyrTyqtnVVSzkDvNYyY1TKqXD/nWbr
+ ySwqZaZ/72mo6mfLN0/R6uMnYb7uK7/Zz+r10o3pGsprxUaTZvgYT66KEQKKVh330Bw67xbXCdQW
+ dYXKt23DKR3ci1JIUnhCnsIiBVdSjl/ybpuksK9tUSvepHCGC7lzcGv9Y+aSxbx2VA72DfHzeB5S
+ F8bqo7uyF3KhhCszi9R1Y4Lz2vS12zpdBagvjhKM1ZXxmdevqFrBaL3p9WC6bhN6txpArz2VM9Y2
+ WtzQyzh6KrqzHq8Xo6xEPlGna0ZrLvQMCGZT/93NLe1+cqGK/5GfAMbQeOSZscgFu5x4SrPYvsZ/
+ pY0udw2Da5zHKsuFKtAaK7q3ALnJ7vkxDuP3cZ5DcA7+AAAA//8DAKy5vH8ZBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638924a09e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:15 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '899'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ede7ac409e097b67bac7d5de45cb962e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vPQiFfKjtuNL0KKHGj20BVqkQFEIFLmWGFNcQlzVcQP/e0DZ
+ sRQkAXrhYWZnMLPL+wRAGC3WIFQtWTXeZh++q18//y1v3dcbjR+/yS9/+ZOvd5u7H4v6INKooPIW
+ FT+q3ilqvEU25E60alEyRtfJcpZf5at8tuiJhjTaKKs8Z3PKGuNMNs2n8yxfZpPVWV2TURjEGn4n
+ AAD3/RtzOo13Yg15+og0GIKsUKwvQwCiJRsRIUMwgaVjkQ6kIsfo+uibtw1oMq6CPVqbAtfS7cIb
+ +Ex7kCV1DAfqruGmlgxKOthAjdZHEPaGa2DS8nA9Nm9x2wUZC7rO2jN+vKS1VPmWynDmL/jWOBPq
+ okUZyMVkgcmLnj0mAH/6rXRPigrfUuO5YNqhi4aT+clODLcYkaszycTSDvhsmr7gVmhkaWwYbVUo
+ qWrUg3I4gey0oRGRjDo/D/OS96m3cdX/2A+EUugZdeFb1EY9LTyMtRh/6mtjlx33gUU4BMam2BpX
+ Yetbc/onW19clctVuZio91ORHJMHAAAA//8DAKoNnb01AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63898c971e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '492'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_a0d722206bc2e3a4ad18e150bdeadc7c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT72+bMBD9zl9h3WeYgKZLy7esmyYt67pO+9FtTMixD+LU2J5tpEZR/vcJSIFk
+ mTQ+IOvevXd37+xdQAgIDhkBtqae1UZGi3v28KXmv2+ad8uNuvxRLj5vHsxd+vUtrxIIW4ZebZD5
+ Z9YLpmsj0QutephZpB5b1WR+EV/HV/HFyw6oNUfZ0irjo5mOaqFElMbpLIrnUXJ1YK+1YOggIz8D
+ QgjZdf+2T8XxCTISh8+RGp2jFUI2JBECVss2AtQ54TxVHsIRZFp5VG3rqpFyAnitZcGolGPh/ttN
+ zqNZVMpi8Xr5fnHzeF8uP+KbSol58uHboq6/T+r10lvTNVQ2ig0mTfAhnp0UIwQUrTvu7fa28y48
+ TaC2ampUvm0bdvnBvTSHLIdXssEcwhzcmnK8Kz8h7+ONrRrFtzns4UhvH5w7/5rYZLFsHJUH/w7x
+ /bAQqStj9cqd+AulUMKtC4vUdXOC89r0tds6XQVojnYJxura+MLrR1StYDq/7PVgvG8jmswOoNee
+ ygnr6jo8o1dw9FR0yx7uF6NsjXykjveMNlzoCRBMpv67m3Pa/eRCVf8jPwKMofHIC2ORC3Y88Zhm
+ sX2O/0obXO4aBrd1HuuiFKpCa6zoHgOUpohXNOZJOisTCPbBHwAAAP//AwBMvKfDGgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6389ced90e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '552'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_39878a1259f59b320a8fe1555a37ba28
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC95yusOUMFCbtJuLWHrvaQbVMpabWlQo49gFNjI9uoSaP8ewVkgaSp
+ VA7Imjfvzcwb+zQhBASHmAArqGNlJf33a/Ztuw+30W6/mH01vx5X27p4xceXw3PxEbyGoXd7ZO6N
+ 9Y7pspLohFYdzAxSh41qOJ8Fy2ARzOYtUGqOsqHllfMj7ZdCCX8aTCM/mPvh4sIutGBoISbfJ4QQ
+ cmr/TZ+K4wFiEnhvkRKtpTlC3CcRAkbLJgLUWmEdVQ68AWRaOVRN66qWcgQ4rWXKqJRD4e47jc6D
+ WVTK9PD0XLr965q/bDbR8sn9jsL1w2e+GdXrpI9V21BWK9abNML7eHxTjBBQtGy5q+Oq9c67TaAm
+ r0tUrmkbTsnFvWkCcQIfZI0JeAnYgnL8lH1B3sVrk9eKHxM4w5XeeXLv/GNkk8GstlRe/LvEz/1C
+ pM4ro3f2xl/IhBK2SA1S284J1umqq93UaStAfbVLqIwuK5c6/RNVIzidP3R6MNy3AQ2jC+i0o3LE
+ Wiy9O3opR0dFu+z+fjHKCuQDdbhntOZCj4DJaOq/u7mn3U0uVP4/8gPAGFYOeVoZ5IJdTzykGWye
+ 47/SepfbhsEercMyzYTK0VRGtI8BsioNdjTg4TTKQpicJ38AAAD//wMA+w7yjBoEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638a14a9be24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '404'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_84cb94579ca87e377fd82795ad050286
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOUMFSbYh3Pqhqpeo6lZqVy0VcuyBeGNs1zbqslH+ewVkgaSp
+ VA7Imjfvzcwb+xgQAoJDRoDtqWe1kdGbz+zh26931Gt32B3S9UPyu1pt4q/+qf2whLBj6N0jMv/C
+ esV0bSR6odUAM4vUY6earJfxJk7jZdoDteYoO1plfLTSUS2UiBbxYhXF6yhJz+y9FgwdZORHQAgh
+ x/7f9ak4PkFG4vAlUqNztELIxiRCwGrZRYA6J5ynykM4gUwrj6prXTVSzgCvtSwYlXIqPHzH2Xky
+ i0pZvL97jtvUqt3r9uP3ZxE/3pe4lV/UrN4g3Zq+obJRbDRpho/x7KoYIaBo3XO37bb3LrxOoLZq
+ alS+axuO+dm9RQ5ZDm9lgzmEObg95fipvEc+xBtbNYq3OZzgQu8U3Dr/nNlksWwclWf/zvHTuBCp
+ K2P1zl35C6VQwu0Li9T1c4Lz2gy1uzp9BWgudgnG6tr4wusDqk5wsb4b9GC6bxOarM6g157KGSvd
+ hDf0Co6ein7Z4/1ilO2RT9TpntGGCz0DgtnUf3dzS3uYXKjqf+QngDE0HnlhLHLBLiee0ix2z/Ff
+ aaPLfcPgWuexLkqhKrTGiv4xQGmKeEdjnixWZQLBKfgDAAD//wMA9JNyehoEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638a51ea8e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:18 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '439'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c3a9b2f39dba93d7d499942fdb941811
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC95yusOUMFbKJkuW0b9ZAmWnUP3d2WCjn2AG6NzdpGTTbKv6+ALJA0
+ lcoBWfPmvZl5Yx8mhIDgEBNgBXWsrKR/95U9PQrK8FN+Pw1fH542r/njOnq+W357noHXMPT2FzL3
+ zvrAdFlJdEKrDmYGqcNGNZzfBLfBIrhZtECpOcqGllfOn2q/FEr4URBN/WDuh4sTu9CCoYWY/JgQ
+ Qsih/Td9Ko47iEngvUdKtJbmCHGfRAgYLZsIUGuFdVQ58AaQaeVQNa2rWsoR4LSWKaNSDoW77zA6
+ D2ZRKVM7Lz6/rP+Uq9Vyufu+Y6vVS72efdmP6nXS+6ptKKsV600a4X08vihGCChattzNftN6510m
+ UJPXJSrXtA2H5ORelECcwEdZYwJeAragHO+zB+RdvDZ5rfg+gSOc6R0n184/RzYZzGpL5cm/U/zY
+ L0TqvDJ6ay/8hUwoYYvUILXtnGCdrrraTZ22AtRnu4TK6LJyqdO/UTWC0XzW6cFw3wY0nJ5Apx2V
+ I9bi1ruil3J0VLTL7u8Xo6xAPlCHe0ZrLvQImIym/ruba9rd5ELl/yM/AIxh5ZCnlUEu2PnEQ5rB
+ 5jn+K613uW0Y7N46LNNMqBxNZUT7GCCr0mBLAx5G0yyEyXHyBgAA//8DAHUmMFkaBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638a90b6ce24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1779'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_30e01c99e8006ef2eaf16425c35c72e6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnKGCLFGy3Nqq0qrqtmqkdrdbKuTYA7gxtmsbqdko/14BWSBp
+ KpUDsubNezPzxj4EhIDgkBFgNfWsMTJ6/Zk9Pr19uuPpzWPr429flw/1Mhabcm1xA2HH0NufyPwL
+ 6xXTjZHohVYDzCxSj51qsrqJb+N1nCY90GiOsqNVxkepjhqhRLSIF2kUr6JkfWLXWjB0kJHvASGE
+ HPp/16fi+BsyEocvkQadoxVCNiYRAlbLLgLUOeE8VR7CCWRaeVRd66qVcgZ4rWXBqJRT4eE7zM6T
+ WVTKolxv1bvkC3//6+7D7jm5xV2LH/nD86zeIL03fUNlq9ho0gwf49lFMUJA0abn3u/ve+/CywRq
+ q7ZB5bu24ZCf3FvkkOXwRraYQ5iDqynHT+UG+RBvbdUqvs/hCGd6x+Da+cfMJotl66g8+XeKH8eF
+ SF0Zq7fuwl8ohRKuLixS188Jzmsz1O7q9BWgPdslGKsb4wuvd6g6wcVqOejBdN8mNElPoNeeyhlr
+ fRte0Ss4eir6ZY/3i1FWI5+o0z2jLRd6BgSzqf/u5pr2MLlQ1f/ITwBjaDzywljkgp1PPKVZ7J7j
+ v9JGl/uGwe2dx6YoharQGiv6xwClKeItjXmySMsEgmPwBwAA//8DABU4tncaBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638b5ea45e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '770'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_5fa69e409208033bfd1b82210dc40d7b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW4aMRC98xVTX3JZEBtADVyqXCo4FvUQpapWxp7ddeL1WPY4lEb8e7WGsERN
+ pV58eG/e03szfh0BCKPFCoRqJavO2/H9N/Xw6JRP69/+7mG/3Ybvt9vy6/KxDstGFL2Cdk+o+E01
+ UdR5i2zInWgVUDL2ruXn2XQ5vZvOy0x0pNH2ssbzeDZZjDmFHY2n5e3irGzJKIxiBT9GAACv+e0z
+ Oo2/xAqmxRvSYYyyQbG6DAGIQLZHhIzRRJaORTGQihyjy7HXaC19gs1NB08pMkh4MYGTtHBRFhAJ
+ NqDJ3TC08gWhRrTGNbGAXeKsbTEgMEGL1sOBEuwNtyDdgVvjmow4RD2BNe1BSQebs3+mmLQ8fLlO
+ GLBOUfYbcsnaM368VLbU+EC7eOYveG2ciW0VUEZyfb3I5EVmjyOAn3m16d22hA/Uea6YntH1huX8
+ ZCeGYw7kbHEmmVjaAZ8viw/cKo0sjY1XpxFKqhb1oBzuKJM2dEWMrjr/HeYj71Nv45r/sR8IpdAz
+ 6soH1Ea9LzyMBey/+r/GLjvOgUU8RMauqo1rMPhg8mfLpzyO/gAAAP//AwCRw6trawMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638bc1945e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '708'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_eea862803eb709e587822304be5af9ff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV32+bMBDH3/NXoHsmFQbyi7dOVaZVbbNqqjStVMgxl8StsZFttnVR/vcJkmJC
+ WwkekHXf+9ydD/vYjzwPeA6JB2xHLStKMb68Zz/p1eaBrfiX69XV9fc8/HrHCZYPd3IJfk2o9TMy
+ +0ZdMFWUAi1X8igzjdRiHZXMomARzIM4bIRC5ShqbFvacXQxGdtKr9U4IOHkRO4UZ2gg8R5Hnud5
+ ++Zd1yhz/AuJF/hvlgKNoVuEpHXyPNBK1BagxnBjqbTgO5EpaVHWZctKiI5glRIZo0K4xMdn31m7
+ RlEhsm/Lm/UvsXohakn+PU+eo/D+/vePmz+dfMfQr2VT0KaSrG1QR2/tSS+Z54GkRcPevt42ffP7
+ DlRvqwKlrcuGfQqCrlGkkDzuUzCWaptCEkZ+CijzFJK4XjY+pnZK4btWecVsCk8Hv4PEcYtM5p8h
+ fgpNVX14Pm1hEsQ9eonUVhr7DAkmDgrJQCgMHRTNBkLTmYPmQQ+6tFbzdWXfY3PisMVsMLaYt1hI
+ yFAsJO6bheF0MDYJHDYdnm3hsIj0j8iq5JIr2Yci4j5zFJGBUOQOVhRPP4eeDnB21A+jj9ZPnRus
+ cVMZKk5X+2Q/tLNCqG2p1dr0rj5suORml2mkprmCYKwqj7nrPE0GqM7GDJRaFaXNrHpBWQeMyGkm
+ gRuDTiWz2Um1ylLhhHj+JpwFzHK0lDeDqJ19jLId5g51M5BWOVcdYdTZ9vtyPop93DqX2yHhncAY
+ lhbzrNSYc3a+Zeemsf5NfObWtrkpGMyrsVhkGy63qEvN20E9Ooz+AwAA//8DAGJYjVqnBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638c2e9ebe24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2490'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_302267a28ee5a94bec0731bc2176316b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVUW+bMBDH3/Mp0D2TCmwghLeua1WtatVK61apVMgxTmA1NrJNtyrKd58gKSak
+ leABWf7f7+58Mn+2M8eBMofEAVoQQ6uaz88f6FN+IS/eJP6rrsTj/XJ59wO/Xhb198c1uC0hV38Y
+ NR/UGZVVzZkppdjLVDFiWJvVX2Bv6cVeEHZCJXPGW2xTmzk+C+emUSs593wUHshClpRpSJznmeM4
+ zrZ7tz2KnP2DxPHcj52KaU02DJI+yHFASd7uANG61IYIA64VqRSGibZt0XA+EIyUPKOEc1t4/2wH
+ azsownl2+fPbzd3N4ho9PnBEn66j68Ivftdvg3r71O9119C6EbQf0EDv95NRMccBQaqOvX2/7ebm
+ jgOI2jQVE6ZtG7YpcLJiPIXkeZuCNkSZFBKE3RSYyFNIgnbZxeg2KIV7JfOGmhRedu4ACYIeCeOv
+ EDeFrqsxHEc97HvBiL5ixDSKjRnfCy2E/IkQQhbCi4lQ6FsoGrd3bowqV405xaJBg/FiMhbHPYY8
+ PBVDg3EgP56MIc9ikT8ZW1oM+5ObxNjeEhxEk7HY3kccn96ukp4gwWAcwcnt+EV4c4qgaHDr40lI
+ MPhQIu8r5GUHR1/hbvbZ+mVgLoqtG034wXUO+7vexrjc1Equ9MiVYF2KUheZYkR37gDayHpfu63T
+ VYDmyAGhVrKqTWbkKxNtQuwf7BKsQ1sV+figGmkIt0KIPoSjhFnODCk7j+xtmRJasNyi1p5Jk5dy
+ IMwGxz5t57Pc+6OXYjMlvRUoZbVheVYrlpf0+Mg2TLH2D/ZVWD/mrmHQ79qwKluXYsNUrcr+HzLb
+ zf4DAAD//wMArBTlfUIHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638d47e6ce24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3635'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_0069dceb569ae620601d0e1d96c65174
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVW2+bMBTH3/Mp0HkmFbfceOvUdQ9dt6Zbu0ilihxzQrwZG9lmSxrlu0+QFBPa
+ SvCALP/P79ywD/uB4wBLIXaAboihecGHl3O62Pz7oj5dpZMfi+zrXOy2N/O/wcPPx+ge3IqQq99I
+ zSt1QWVecDRMiqNMFRKDlVd/Enozb+pFs1rIZYq8wrLCDMOL0dCUaiWHnh+MTuRGMooaYudp4DiO
+ s6/fVY4ixS3Ejue+7uSoNckQ4sbIcUBJXu0A0ZppQ4QB14pUCoOiSluUnLcEIyVfUsK5DXx89q21
+ bRThfHl9P/98d7V6WGzxhmxTNn/8pq9ffr204h1d74o6oXUpaNOglt7sx51gjgOC5DV7u7ut++Z2
+ DYjKyhyFqdKGfQKcrJAnED/tE9CGKJNAHIRuAijSBOKoWtY2ujJK4E7JtKQmgeeD20KiqEFG048Q
+ N4E6qy48HTew70Ud+hqJKRV2Gd8bWSjwe0JBYKFw1hMaTyw09TrQpTGKrUrzFpv6FpsFvbGZbX5Q
+ 19gLC/wWFox7Y4GtLRj7vbGZ12Ch3z0i3wsmmBRdKPTtGQlDvycU2i8WRuOPoecDnB31w+C99XPr
+ Bitcl5rw09U+7R+aWcFlVii50p2rD2smmN4sFRJdX0HQRhbH2FWcOgKUZ2MGCiXzwiyN/IOichj6
+ p5kEdgxa1Z9MTqqRhnArRNNX4czhMkVDWD2ImtlHCd1galE7A0mZMtkSBq2y36bznu9j6Uxkfdxb
+ gVIsDKbLQmHK6HnJ1kxh9Zv4yKxpc50w6J02mC/XTGSoCsWaQT04DP4DAAD//wMAVBB0/acGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638ec4faae24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2315'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_bd38b93c04386e7aab3e7ad5557f2b7a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVXW+bMBSG7/Mr0LkmFZiQAHddt27aVHUf2rStVMgYJ/FqbMs209Io/32CpJjQ
+ VoILZPk9z/nCPuxnngesgswDssWW1IrPL7+Qnw/y9gt5m3xV5fv6d739wH/wd1dX8XUDfkvI8g8l
+ 9om6ILJWnFomxVEmmmJLW6/hKgrSIAli1Am1rChvsY2y8+ginttGl3IehCg+kVvJCDWQeXczz/O8
+ ffducxQV/QeZF/hPOzU1Bm8oZL2R54GWvN0BbAwzFgsLvhOJFJaKNm3RcD4QrJS8IJhzF/j47Adr
+ 1yjMefH499vDYxotgzr9/uvNziBVl/X246dBvKPrneoSWjeC9A0a6P1+NgrmeSBw3bE3u5uub/7Y
+ AOtNU1Nh27RhnwPHJeU5ZHf7HIzF2uaQocjPgYoqh2zRLjsb0xrl8FnLqiE2h/uDP0AWix6Jk9cQ
+ P4cuqzGcLHs4DBYj+ppi22g6ZsIgdhAKJ0IIOShKJ0LLlYOSYARdWqtZ2djnWBI6LEWTsdQ1H3U1
+ TsJQOMDQcjKGXG1oGU7G0qDHonB8RG4VE0yKMRSF7jNHUTgRil0XoxV6Hbo/wNlRP8xeWt8PbrCm
+ 68Zgfrrap/1DPyu43CgtSzO6+rBmgpltoSk23RUEY6U6xm7jdBGgORszoLSslS2sfKCidRiFp5kE
+ bgw6NVytTqqVFnMnLJIn4cxhUVGLWTeI+tlHMNnSyqFuBuKmYnIgzAZlP0/nJd/H0pnYTHHvBEKo
+ srQqlKYVI+clOzNN29/Ea2Z9m7uEweyMpXWxZmJDtdKsH9Szw+w/AAAA//8DAOnrShKnBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de638fc287ae24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:34 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2379'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_4fda2936b4c200c9bbdd9f3490be4a71
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVXW+bMBSG7/Mr0LkmFQbyxV2lqaq2dd0mre1WKuSYE+LV2Mg2UrMo/32CpJjQ
+ VoILZPk9z/nCPuwnngc8h8QDtqWWlZWYXv5gD+XLNb2/u91+Fb+X5jN7DlFFIVmhAb8h1PovMvtK
+ XTBVVgItV/IoM43UYuOVLKJgFSyDWdwKpcpRNFhR2Wl0MZvaWq/VNCDh7ERuFWdoIPEeJ57nefv2
+ 3eQoc3yBxAv8150SjaEFQtIZeR5oJZodoMZwY6m04DuRKWlRNmnLWoieYJUSGaNCuMDHZ99bu0ZR
+ ITIl8EuxC/mz+vntzzUhVzef/tFfD/e9eEfXu6pNaFNL1jWop3f7ySCY54GkZcve7G7avvlDA6qL
+ ukRpm7Rhn4KgaxQpJI/7FIyl2qaQhJGfAso8hSRulq2NaYxS+K5VXjObwtPB7yFx3CGz5UeIn0Kb
+ 1RBezjuYBPGAvkJqa41DhgQzB4VkJBSGDopWI6H5wkHLYABdWqv5urZvsSVx2Cocja1c88O2xlFY
+ SHpYOB+Nha62cE5GY6ugwyIyPCK3FZdcySEUEXdGooiMhCL3xaJ4/jH0dICzo36YvLd+6t1gjZva
+ UHG62qf9QzcrhCoqrdZmcPVhwyU320wjNe0VBGNVdYzdxGkjQH02ZqDSqqxsZtUzysZhRE4zCdwY
+ dCpZLE6qVZYKJ8TLV+HMYZajpbwdRN3sY5RtMXeom4G0zrnqCZNe2W/Tec/3sXQuizHuncAYVhbz
+ rNKYc3ZesjPT2PwmPjLr2twmDGZnLJbZhssCdaV5N6gnh8l/AAAA//8DAL+rADKnBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6390bfba0e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:37 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3071'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_26055474b53e3cc2c353ad8de0db178f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTYvbMBS8+1e86tJLvDiJs7vNpZRSSGgp3VMXSjFa6dlWV9ZTpWe2Zsl/L/7Y
+ 2KEt9KLDzJthZtBzAiCMFnsQqpasGm/Td3fq3n/QX+/qY7V93PiP5nP38wubT0/v1wex6hX08AMV
+ v6iuFDXeIhtyI60CSsbedX2zzd5kt9nuZiAa0mh7WeU5zSndZJs8zW7T7HoS1mQURrGHbwkAwPPw
+ 9hGdxl9iD9nqBWkwRlmh2J+PAEQg2yNCxmgiS8diNZOKHKMbUh/QWnoFx9cN1BgQpNMQUOoOmKBG
+ 66/gQE+gpIMjjGbQUQtMWnZvl6YByzbKvpNrrZ3w0zmlpcoHeogTf8ZL40ysi4AykusTRSYvBvaU
+ AHwf1mgvCgofqPFcMD2i6w3X+Wgn5vkX5PVEMrG0M76dFrx0KzSyNDYu1hRKqhr1rJynl602tCCS
+ Rec/w/zNe+xtXPU/9jOhFHpGXfiA2qjLwvNZwP5z/uvsvPEQWMQuMjZFaVyFwQcz/o/SF/lOlbtc
+ o0SRnJLfAAAA//8DACFcKcQoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63921cbf0e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '712'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c15bf6f8c381a656842937b3d61bfd77
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/aMBC98yusOYcqQNJCbnvorqhESzl0q92gyDiT4K1jW7Yj8SH+e+XAJoFS
+ aXOIrHnz3psZj48DQoDnkBBgW+pYpcXw4Sf7bQ7zvJ7vRl9XL7unlXDbl2fz7XG/iyHwDLV5Q+be
+ WZ+YqrRAx5U8w8wgdehVR18m4SychvGsASqVo/C0UrthpIbjcBwNw+kw/HwhbhVnaCEhrwNCCDk2
+ f1+izHEHCQmD90iF1tISIWmTCAGjhI8AtZZbR6WDoAOZkg6lr1rWQvQAp5TIGBWiMz5/x965mxMV
+ Iovi8UI8jVbTx+d4dyjmq++ztznb/Or5naX3uimoqCVr59PD23hyY0YISFo13MV+0YwtuE2gpqwr
+ lM6XDccUBN2gSCF5PaZgHTUuhSQMUkCZX05NhvUpKfwwJZX8QL19CusgBYc7T0nhQWuBKZyCDwkt
+ jcpr5m40+HKrJJJRRJZGpXBan+Cq/tPg3nnduxaDRW2puNzXJX5qF0CoUhu1sTf3CQWX3G4zg9Q2
+ cwXrlD57e5/GAeqr3QFtVKVd5tQflF5wEk7PetCtdodGkwvolKOix4pHwR29LEdHebNc7T4zyraY
+ d9Rur2mdc9UDBr2u/63mnva5cy7Lj8h3AGOoHeaZNphzdt1xl2bQv/z/pbVTbgoGu7cOq6zgskSj
+ DW8eHxQ6i2JWxFGOFGFwGvwFAAD//wMAOT94I4UEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63927ca15e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '790'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_23ec79fb72706968150880f2e6d7491a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6xUUWvbMBB+968Q9+wMN02T1G8JK2XQbskGW6EORpEvtlpZMpJckoX89yE5s50s
+ g0HnByHuu+/7TueT9gEhwDOICbCCWlZWYjBbsidjxde1Wc6Kl0WOel0M5290OH+a3EHoGGr9gsz+
+ Zn1gqqwEWq5kAzON1KJTvZpcR7fRNBpHHihVhsLR8soORmowjIajQTQdROMjsVCcoYGYPAeEELL3
+ qytRZriFmHgZHynRGJojxG0SIaCVcBGgxnBjqbQQdiBT0qJ0VctaiB5glRIpo0J0xs237+27PlEh
+ 0umPoV2M7+7x88Pb9/JhuVXD6eu3+6jn10jvKl/Qppas7U8Pb+PxmRkhIGnpuY+7R9+28DyB6rwu
+ UVpXNuwTEHSNIoH4eZ+AsVTbBOIoTABldtz5DONSEviicyr5T+rsE1iFCVjcOkoCfFEoiQkcwvcq
+ fdxJWnJGPhlBHff9irOrMZlzJTn7H2qt0uoAJ+09BJf2q97UaNzUhorjOB3jh3Y+hcorrdbmbNxg
+ wyU3RaqRGv/bwVhVNd7OxztAfTLaUGlVVja16hWlE7yOpo0edDevQye3R9AqS0WPNZ2EF/TSDC3l
+ fvbb68YoKzDrqN21o3XGVQ8Ieqf+s5pL2s3Jucz/Rb4DGMPKYpZWGjPOTk/cpWl0D9Pf0tou+4LB
+ 7IzFMt1wmaOuNPdvA2yqdHTDNjejDClCcAh+AQAA//8DAJi/9swkBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63930ec38e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1308'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_2164e1d79b83b59e6a78dc42c0d37b04
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6xUXW/TMBR976+w7nOK0o91ad6GQLCpExSJDViqyHVuUjPHNrYD7ar+d+S0S9JS
+ JKSRB8u6555zrm+uve0RAjyDmABbUcdKLfpXc/bFjbNvv358nk2v7+6f3KfxO/v+58p9Hc0h8Ay1
+ /I7MPbNeMVVqgY4ruYeZQerQqw4uR+E0jMLJoAZKlaHwtEK7/lj1h+Fw3A+jfjg5EFeKM7QQk4ce
+ IYRs69WXKDNcQ0zC4DlSorW0QIibJELAKOEjQK3l1lHpIGhBpqRD6auWlRAdwCklUkaFaI3337az
+ b/tEhUhn6808mt2sw8nb/I4PZ2z+WN6U91HHby+90XVBeSVZ058O3sTjEzNCQNKy5t5ubuu2BacJ
+ 1BRVidL5smGbgKBLFAnED9sErKPGJRCHQQIos8OuzrA+JYEPpqCSP1Fvn8AiSMDh2lMS4B9XSmIC
+ u+ClSm82kpackWsrqOe+XPFqMCGvuZKc/Q+1Rmmxg6P27nrn9ovO1BjMK0vFYZwO8V0zn0IV2qil
+ PRk3yLnkdpUapLb+7WCd0ntv71M7QHU02qCNKrVLnXpE6QVHYbTXg/bmtejl9AA65ajosKLL4Ixe
+ mqGjvJ795roxylaYtdT22tEq46oD9Dqn/rOac9r7k3NZ/It8CzCG2mGWaoMZZ8cnbtMM+ofpb2lN
+ l+uCwW6swzLNuSzQaMPrtwFynY4vWH4xzpAi9Ha93wAAAP//AwAW/1cyJAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6393a3eebe24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1161'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_2442873c1edbfddd764f04c075da8563
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6xUXWvbMBR9z68Q99kZzmdTv7UbY2VL17UbNNTBKPK1rU2WhCSHpCH/fchOYyfr
+ YND5QYh77jn3w/dq1yMEeAoRAVZQx0ot+lff2OP65j7/pJ7dtJqo9TRz4jZd/Egfru4h8Ay1+onM
+ vbDeMVVqgY4r2cDMIHXoVQcXo/AynIXTUQ2UKkXhabl2/bHqD8PhuB/O+uH0QCwUZ2ghIk89QgjZ
+ 1adPUaa4gYiEwYulRGtpjhAdnQgBo4S3ALWWW0elg6AFmZIOpc9aVkJ0AKeUSBgVog3cfLvOve0T
+ FSJZsLHmj9/fbxZftvT6ovh8qws+/7juxGukt7pOKKskO/angx/t0VkwQkDSsubOt/O6bcG5AzV5
+ VaJ0Pm3YxSDoCkUM0dMuBuuocTFEYRADyvRwqz2sd4nhq8mp5M/Uh49hGcTgcOMpMfC7QkmMYR+8
+ VenDVtKSM3JjBfXctyteDabkmivJ2f9QayolgzG5MyqG/XIPJ13e9167LzvDYzCrLBWHqTrY98cx
+ FSrXRq3s2dRBxiW3RWKQ2vrvg3VKN7F9nDoCVCcTDtqoUrvEqV8oveAonDV60C5gi86GB9ApR0WH
+ dXlYolO9JEVHeb0Cx61jlBWYttR2+2iVctUBep2q/8zmNe2mci7zf5FvAcZQO0wTbTDl7LTi1s2g
+ f5/+5nbscp0w2K11WCYZlzkabXj9RECmk/GEZZNxihSht+/9BgAA//8DAHsSOGIrBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63942d908e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1316'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_56e4625371e20928809b1bb7ab86e851
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6xUTY/TMBC991dYc05Ruv3ObRcOsKsKEFqxsKki15mkBsd2bUdtqfrfkZNukpYi
+ IS05WNa8ee+NJ2MfeoQATyEiwNbUsUKL/u1n9rTdMvG4m9+Ps29q9V5ttvdfV/On4SKFwDPU6gcy
+ 98J6w1ShBTquZA0zg9ShVx1Mh+E8nIWTUQUUKkXhabl2/ZHq34Q3o34464eTE3GtOEMLEXnuEULI
+ oVp9iTLFHUQkDF4iBVpLc4SoSSIEjBI+AtRabh2VDoIWZEo6lL5qWQrRAZxSImFUiNa4/g6dfdsn
+ KkQyKUoxom8f9Jf54G778F3azWw3fNx0/Grpva4KykrJmv508CYeXZgRApIWFXexX1RtCy4TqMnL
+ AqXzZcMhBkFXKGKIng8xWEeNiyEKgxhQpqddlWF9SgwfTU4l/0W9fQzLIAaHO0+JgX9aK4kxHIPX
+ Kr3bS1pwRj5YQT339Yq3gwm540py9j/UGqXlEc7ae+xd2y87U2MwKy0Vp3E6xY/NfAqVa6NW9mLc
+ IOOS23VikNrqt4N1Stfe3qdygPJstEEbVWiXOPUTpRcchrNaD9qb16LT+Ql0ylHRYc2mwRW9JEVH
+ eTX7zXVjlK0xbanttaNlylUH6HVO/Wc117Trk3OZ/4t8CzCG2mGaaIMpZ+cnbtMM+ofpb2lNl6uC
+ we6twyLJuMzRaMOrtwEynYzGLBuPUqQIvWPvNwAAAP//AwA9KKyqJAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6394c3bd1e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1826'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_d4964604f9d7592c30237c0dfb1c25cb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBS8+ytedeklXpx1mt3ksiy9NBQKhaUtLMUo0rOtRtbTSs9Qs+Tfi5xs
+ 7KVb6EWHmTfDzKDnDEAYLbYgVCtZdd7m91/Vj+EpxI/DN1rvHja2Pdw+xS/rB/O5O4hFUtD+Fyp+
+ UV0p6rxFNuROtAooGZPr8qYsNsVtsV6PREcabZI1nvNVzn3YU35dXK/yYpUXm7O6JaMwii08ZgAA
+ z+ObcjqNv8UWisUL0mGMskGxvRwBiEA2IULGaCJLx2IxkYocoxujf0Jr6R3s3nfQYkBgghath4H6
+ K/jeSgYlHexAE9QUEgxMWg53c7+AdR9l6uR6a8/48RLQUuMD7eOZv+C1cSa2VUAZyaUwkcmLkT1m
+ AD/HIfpX3YQP1HmumA7okuFydbIT0/wz8uZMMrG0E14uF2+4VRpZGhtnQwolVYt6Uk6ry14bmhHZ
+ rPPfYd7yPvU2rvkf+4lQCj2jrnxAbdTrwtNZwPQ5/3V22XgMLOIQGbuqNq7B4IM5fY3aVx/0vizK
+ dVnXIjtmfwAAAP//AwC6SWJTKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de639592a20e24c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:47:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '739'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_6c0ff5bed9377c013c2813c967d6f733
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '2'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUyW7bMBCG73oKYc5yod2ybil6KrK0QHpIo0CgScpmQ5EMSQUxDL97IdkW5SyA
+ dBAI/vPNQszM3vN9YARKH/AWWdwqvrj6jR+uX6XayR+vP++aN/zwXd+GTN1lfzMCQU/I9T+K7Zn6
+ hmWrOLVMiqOMNUWW9l6jZRKuwiIsVoPQSkJ5j22UXaQL2+m1XMRhnC7CdBGuTvRWMkwNlP6j5/u+
+ vx/+fZ6C0Dco/TA437TUGLShUI5Gvg9a8v4GkDHMWCQsBE7EUlgq+tRFx/lEsFLyGiPOXeDjt5+c
+ 3WMhzmvDsqu7l3ir769fm+3tS6bv02f6J5/EO7reqSGhphN4fKSJPt6X74L5PgjUDuzN7mZ4u+C9
+ AdKbrqXC9mnDvgKO1pRXUD7uKzAWaVtBGS2DCqggFZRJGJxsTG9UwS8tSYdtBU+HYIqEjonimVBc
+ xCMUr7J5UJJHLrtlOg9KIxcpjWdGygpXUx7OrCkvihFahtE8aBknDkrymVC2ctAy/hp6OsBFFxy8
+ z85Pk+bWtOkM4qeuP90fxjHicqO0XJt3UwENE8xsa02RGboTjJXqGLuPM0SA7mICQWnZKltb+UxF
+ 7zCJTuMKbks4tW8t7zR/FnEnpMlZuHBYE2oRG2Z0XAsY4S0lDnXrAXWEyYngTcr+mM5nvo+lM7GZ
+ 494JGFNlKamVpoThy5Kdmab9Fv3KbHzmIWEwO2NpWzdMbKhWmg07DBpVk4wUaV6scgrewfsPAAD/
+ /wMA2Lx4BNEFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de639e5ac2510e3-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:48:13 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3900'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_2d4047b67a5096e0870eb3911633d8fd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUUW+bMBDH3/MprHsmE2DSpLwl0qZtUqWtT51KhBxjiFdje7bZ2kX57hMkxU7W
+ TeQBIf/vf7/zkbvDDCHgFeQI6J442moxX3+lpN48b+7xk00e7lXHzWf5aUP3q/cff0LUO9TuO6Pu
+ 1fWOqlYL5riSJ5kaRhzrsyZLHN/GqxTjQWhVxURva7SbZ3PXmZ2ap3GazeNsHt+e3XvFKbOQo8cZ
+ Qggdhmdfp6zYM+Qojl5PWmYtaRjkYxBCYJToT4BYy60j0kHkRaqkY7IvXXZCBIJTSpSUCOHBp98h
+ ePfNIkKU6/W3vfrVfKhX8eYh/vG70Ttm7rLbgHdK/aKHgupO0rFJgT6e51cwhECSdvDevdwNvYuu
+ A4hpupZJ15cNhwIE2TFRQP54KMA6YlwBebKMCmCyKiDHcXSOsX1QAV+MqjrqCtgeo9ASe0+STjSl
+ STqa0nQx0ZR6UppNJWUBaTGVtAhIy6mkZUBaTSWtwo5PJOHYk3AykYTDbzv142IckLL/kLZHuPi/
+ HWdvvW+DMTKs7iwR5/k6nx/HgRWq0Ubt7NX8Qc0lt/vSMGKHOQDrlD6xe85AgO5i1kEb1WpXOvXE
+ ZJ8QJ+fFAH4feTXJbs6qU44IL2SLV+EiYVkxR/iwDcYFRAnds8pb/SIiXcVVIMyCa/9dzlu5T1fn
+ spmS3guUMu1YVWrDKk4vr+zDDOv39b/CxjYPBYN9sY61Zc1lw4w2fNiWUOtyUe1wjG9wXcPsOPsD
+ AAD//wMAiM7cnjsGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63d6a0c386339-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:50:40 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6649'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_20d8332a1378b872f211974a980903dd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yU246bMBCG7/MU1lyTilMOcNdVq0arpkql7WG1RMgYk7gxNrVN1SjKu1cQFpM0
+ reACIf/zzzceMXOaIAQshxgB2WNDyopP334m2aM+PG3qxaf3q+d1diw/fv+GH1QU7NfgNA6Z/aDE
+ vLreEFlWnBomxUUmimJDm6zeInAjd+kvglYoZU55Y9tVZhpOTa0yOfVdP5y64dSNOvdeMkI1xOhl
+ ghBCp/bd1Cly+hti5DqvJyXVGu8oxH0QQqAkb04Aa820wcKAY0UihaGiKV3UnA8EIyVPCebcgi/P
+ afBtm4U5Tx/Ykq+yRf7hcfO0wofsK/5S/3r3/HPAu6Q+Vm1BRS1I36SB3p/HNzCEQOCy9a6P67Z3
+ zm0AVru6pMI0ZcMpAY4zyhOIX04JaIOVSSD2Fk4CVOQJxIHrdDG6CUpgo2ReE5PA9uwMLa71eP5I
+ k+/5vcn3ZyNNgSX5s7Gk2YA0H0kKIksKvZGk0J9bUxCNNIWeNc3CkabZgDQfS1oMSMuxpOWAFP2H
+ tD3D1f92ntz73g7GSNGi1ph389Wdn/uB5XJXKZnpm/mDggmm96miWLdzANrI6sJuOC0B6qtZh0rJ
+ sjKpkQcqmoSB1y0GsPvIql4471QjDeZWaNp+J2GaU4NZuw36BUQw2dPcWu0iwnXO5ECYDK79dzn3
+ cl+uzsRuTHorEEIrQ/O0UjRn5PrKNkzRZl//K6xvc1sw6KM2tEwLJnZUVYq12xKKKp3lWeAG86Ao
+ YHKe/AEAAP//AwARGRMgOwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63e631ba12968-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:51:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6307'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_1ee10c9110a1a762bc76048aaf2ec5eb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/bMAy951cIPDuDP9PGtyLYDsMKZN3WHurAkCXa8SpLhiSjLYL898FOYjlZ
+ N8QHQeDj4yNpUrsZIVBzSAmwLbWsacX87jsrXl+qn/jQsHJNg8cHuvj6VNwx/S3+Al7PUMVvZPbE
+ +sRU0wq0tZIHmGmkFvuowU3kL/3bKAgHoFEcRU+rWjuP57bThZqHfhjP/XjuL4/sraoZGkjJ84wQ
+ QnbD2ecpOb5BSnzvZGnQGFohpKMTIaCV6C1AjamNpdKC50CmpEXZpy47ISaAVUrkjArhhA/fbnJ3
+ zaJC5Ev/9cejfLtJ1snq6deaP94uVp9XnE/0DqHf2yGhspNsbNIEH+3phRghIGkzcO/f74feeZcO
+ VFddg9L2acMuA0ELFBmkz7sMjKXaZpAGN14GKHkGaeR7Rx/TO2Ww1op3zGaw2XtTiu84QXglKQzC
+ kRSGyZWk0CmF8bVK8UQpuVIpWjqlOLhSKfGdUhL8R2mzh7N/s599dN9MRk5j2RkqjrN4tO/H4Raq
+ arUqzMWsQlnL2mxzjdQMMwPGqvag3esMCtCd7QW0WjWtza16QdkHjILjEoHbXYcu4yNolaXC2WP/
+ BJzFyzlaWg+LM+4qo2yL3FHdztKO12oCzCZV/53NR7EPldeyuia8AxjD1iLPW428ZucVOzeN/dP2
+ L7exy0PCYN6NxSYva1mhbnU9PCxQtnnCi8iPFlFZwmw/+wMAAP//AwByyepaZgUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f551e6d6081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:51:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3805'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_08f478819795293f5fd938580f6427fe
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTW/UMBC951cMvvSSoGR3q273UnEDgRBQiUMRihx7krg4HsueQJdq/zty9iNb
+ 0Uq9WPZ7857njf2YAQijxQaE6iWrwdvi3VfV/P1++VGq24ffn5tPd9ffyuZLuOvKeDuKPCmouUfF
+ R9VbRYO3yIbcnlYBJWNyra6W5XW5XlaXEzGQRptknediRcVgnCkW5WJVlFdFtT6oezIKo9jAjwwA
+ 4HFaU59O44PYQJkfkQFjlB2KzakIQASyCREyRhNZOhb5TCpyjG5q/cPFAPdjZJDgA3VBDjk0I0PC
+ ewwI0mkIKPUWmKBH62FL4xt4T39ANjRyOt6k40VM2wBabqEj47qb8ysDtmOUKbYbrT3gu1MGS50P
+ 1MQDf8Jb40zs64Aykkv9RiYvJnaXAfycZjU+iS98oMFzzfQLXTKsVns7Mb/QTC6OJBNLO+PLdf6M
+ W62RpbHxbNZCSdWjnpXzw8hRGzojsrPM/zfznPc+t3Hda+xnQin0jLr2AbVRTwPPZQHT/32p7DTj
+ qWERt5FxqFvjOgw+mP3vaX1dNrLU1WLVViLbZf8AAAD//wMAPYA10UsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f6e0cd76081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:51:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '458'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c266f17d488df233d3b4b7192972f922
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7aMBC98xXWnEOVkBTY3Ko9FHW1hV6qVhsUGWcI3nVs13ZWsIh/r5ywSWCp
+ 1Bwia968mTfP4+OIEOAFpATYjjpWaTH+8oOx8H4qNkwtfn/Gt4Vwh0P952sZv9IYAs9Qm2dk7p31
+ ialKC3RcyRZmBqlDXzWaxeFdOI+jaQNUqkDhaaV240SNKy75eBJOknE4G0fzM3unOEMLKXkaEULI
+ sfl7nbLAPaQkDN4jFVpLS4S0SyIEjBI+AtRabh2VDoIeZEo6lF66rIUYAE4pkTMqRN+4/Y6Dc28W
+ FSLf3IWv98nLz+UexfL5+y/x7WE1mz0sBv3a0gfdCNrWknUmDfAunl41IwQkrRru4+Gx8S64TqCm
+ rCuUzsuGYwaCblBkkD4dM7COGpdBOkmCDFAWGaTxNDjnWJ+UwdKUVPI36gVksA4ycLj3pAz4aqck
+ kighK6MyOK1PcNH9NLp1Xg9MNbitLRVnt8/xU3d9QpXaqI29ug3YcsntLjdIbeMKWKd029v3aTpA
+ fXHzoI2qtMudekHpC8bhvK0H/Xb26GR6Bp1yVAxYcRLcqJcX6ChvVqPbRkbZDoue2m8lrQuuBsBo
+ MPVHNbdqt5NzWf5P+R5gDLXDItcGC84uJ+7TDPrH+6+0zuVGMNiDdVjlWy5LNNrw5unAVufhhoZF
+ NEm2EYxOo78AAAD//wMAIebR8UgEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f71eb206081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:51:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '559'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1960d1cb43465dc7f393d4e5bfc8b31d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW/TMBB+76+w7jlFSZO1Xd5ACDHBoJPQJliqyHWuiYdjG9tlS6v+d+Ska9JS
+ JPIQWffdd/fd5/NuRAjwAlICrKKO1VqM394xFjXxu+3z1Y8HUTULN72qdNJM7S+1hcAz1OoJmXtl
+ vWGq1gIdV7KDmUHq0FeNZnF4Hc7jaNYCtSpQeFqp3ThR45pLPp6Ek2QczsbR/MCuFGdoISWPI0II
+ 2bV/r1MW+AIpCYPXSI3W0hIhPSYRAkYJHwFqLbeOSgdBDzIlHUovXW6EGABOKZEzKkTfuPt2g3Nv
+ FhUix493+tuH778TNlvdvL/+dP/l8/PN0/Z+0K8r3ehW0Hoj2dGkAX6Mp2fNCAFJ65Z729y23gXn
+ CdSUmxql87Jhl4GgKxQZpI+7DKyjxmWQTpIgA5RFBmk8DQ451idl8NWUVPIt9QIyWAYZOHzxpAz4
+ olISSZSQhVEZ7Jd7OOm+H106LwemGlxvLBUHtw/x/fH6hCq1USt7dhuw5pLbKjdIbesKWKd019v3
+ aTvA5uTmQRtVa5c79ROlLxiH864e9NvZo5PpAXTKUTFgxUlwoV5eoKO8XY3jNjLKKix6ar+VdFNw
+ NQBGg6n/VnOpdjc5l+X/lO8BxlA7LHJtsODsdOI+zaB/vP9KO7rcCgbbWId1vuayRKMNb58OrHUe
+ rmhYRJNkHcFoP/oDAAD//wMA9QQCGUgEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f7688936081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:51:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1133'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4093d1d0e9004c5dd5fed230ab67d9c0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW+bMBB+z6+w7hkmSFia8bZq0yZtWbtK1aaWCDnmIG6N7dmmbRblv0+GFEiW
+ SeMBWffdd/fd5/NuQgjwAlICbEMdq7UI339nbPrVzN5+en7Sty/Pd18W7CZ2WN6uPyoIPEOtH5C5
+ V9Ybpmot0HElO5gZpA591fhiFr2LFrN40QK1KlB4WqVdmKiw5pKH02iahNFFGC8O7I3iDC2k5H5C
+ CCG79u91ygJfICVR8Bqp0VpaIaR9EiFglPARoNZy66h0EAwgU9Kh9NJlI8QIcEqJnFEhhsbdtxud
+ B7OoEPn6g44vfyyf5LfH+Ofl5+bXzYPEu/nVqF9XeqtbQWUjWW/SCO/j6UkzQkDSuuUut8vWu+A0
+ gZqqqVE6Lxt2GQi6RpFBer/LwDpqXAbpNAkyQFlkkM7mwSHH+qQMrkxFJf9NvYAMVkEGDl88KQN+
+ vVESSZyQa6My2K/2cNR9Pzl3Xo1MNVg2loqD24f4vr8+oSpt1Nqe3AaUXHK7yQ1S27oC1ind9fZ9
+ 2g7QHN08aKNq7XKnHlH6grNo0dWDYTsHdDo/gE45KkasWRKcqZcX6ChvV6PfRkbZBouBOmwlbQqu
+ RsBkNPXfas7V7ibnsvqf8gPAGGqHRa4NFpwdTzykGfSP919pvcutYLBb67DOSy4rNNrw9ulAqfNo
+ TaMiniZlDJP95A8AAAD//wMA3LhVkkgEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f7e7a956081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:51:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '464'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4cb829c916996ab3867dcd7a7e643bd3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwW7bMAy95ysEnu3BTrI08S07dMWWdN2G9bA6MBSZttXJkiDJQNMg/17ISW0n
+ y4D5YAh8fOTjE7UfEQI8h4QAq6hjtRbh8jtjkzub82K1uP09U/nq4/r+8XH5606IzxB4hto+I3Pv
+ rA9M1Vqg40oeYWaQOvRV45tJtIjmk3jRArXKUXhaqV04VWHNJQ/H0XgaRjdhPD+xK8UZWkjI04gQ
+ Qvbt3+uUOb5AQqLgPVKjtbRESLokQsAo4SNAreXWUekg6EGmpEPppctGiAHglBIZo0L0jY/ffnDu
+ zaJCZMsf+PpcraKpQTf7yu3t/aefvPlCB/2OpXe6FVQ0knUmDfAunlw0IwQkrVvuerduvQsuE6gp
+ mxql87Jhn4KgWxQpJE/7FKyjxqWQxPMgBZR5CskkCk451iel8M2UVPJX6gWksAlScPjiSSnwh0pJ
+ JPGUPBiVwmFzgLPuh9G182ZgqsGisVSc3D7FD931CVVqo7b24jag4JLbKjNIbesKWKf0sbfv03aA
+ 5uzmQRtVa5c59QelLziJ5sd60G9nj45nJ9ApR8WANZkGV+plOTrK29XotpFRVmHeU/utpE3O1QAY
+ Dab+W8212sfJuSz/p3wPMIbaYZ5pgzln5xP3aQb94/1XWudyKxjszjqss4LLEo02vH06UOgs2tIo
+ j8fTIobRYfQGAAD//wMAHKcVLkgEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f829f9a6081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:51:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '500'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c4b5668a4aacc824514df8d50624c4c0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOUMFgTYptz10tWqVZr8qVV0i5JiBuDE2sk2VD+W/V4Y0kDSV
+ ygFZ8+a9NzMeHzxCgBeQEmBralndiODuibGk/sK/mZ36qu9+lfeb18X9Az5tok8P4DuGWv1EZv+w
+ 3jFVNwItV7KHmUZq0alG0zj8GM7iSdgBtSpQOFrV2CBRQc0lDybhJAnCaRDNTuy14gwNpOTNI4SQ
+ Q/d3dcoCt5CSTquL1GgMrRDScxIhoJVwEaDGcGOptOAPIFPSonSly1aIEWCVEjmjQgzG/XcYnYdh
+ USHySb19nsc/3u9fPk/3Cl8W4vsrm+2eR3699K7pCipbyc5DGuHneHplRghIWnfc+W7ezc6/TqC6
+ amuU1pUNhwwEXaHIIH07ZGAs1TaDNJr5GaAsMkjj0D/lGJeUwUJXVPI9dQVksPQzsLh1pAz441pJ
+ JFFCHrXK4Lg8woX70bt1Xo6GqrFsDRWnaZ/ix/P1CVU1Wq3M1W1AySU361wjNd1UwFjV9N7Op3OA
+ 9uLmodGqbmxu1QalE4zDWa8Hw3YO6OTDCbTKUjFixYl/Qy8v0FLercZ5GxllaywG6rCVtC24GgHe
+ qOu/q7ml3XfOZfU/8gPAGDYWi7zRWHB22fGQptE93n+lnafcFQxmZyzWecllhbrRvHs6UDZ5uKJh
+ EU2SMgLv6P0GAAD//wMAqPsml0gEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f87ce886081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '580'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_edb9c9307381689323f0bc20d776f07d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWobMRC971dMdcllbex4TWtfQkob7EugkEspZZGl8a5SrUZIs05M8L+XlTe7
+ Dk0hFx3em/d4b0YvGYAwWqxBqFqyaryd3P5Qqqj4/v7hblM9Hx7Mqr0rfn7/ehu/FY3IOwXtHlHx
+ q2qqqPEW2ZA70yqgZOxc558Xs9Xsy+J6loiGNNpOVnmeLKbLCbdhR5PZ/HrZK2syCqNYw68MAOAl
+ vV1Gp/FZrCH5JKTBGGWFYj0MAYhAtkOEjNFElo5FPpKKHKNLsTdoLX2C7VUDj21kkHAwgVtpYVDm
+ EAm2oMldMdTygLBHtMZVMYddy0lbY0BgghqthyO18GS4BumOXBtXJcQh6ils6AmUdLDt/RPFpOXx
+ 5jJhwH0bZbch11rb46ehsqXKB9rFnh/wvXEm1mVAGcl19SKTF4k9ZQC/02rbN9sSPlDjuWT6g64z
+ nBdnOzEecyQXy55kYmlHvFjl77iVGlkaGy9OI5RUNepROd5RttrQBZFddP43zHve597GVR+xHwml
+ 0DPq0gfURr0tPI4F7L76/8aGHafAIh4jY1Pujasw+GDSZ0unPGV/AQAA//8DAMf4afNrAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63f8ced6c6081-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '690'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_98c2b3962ac2e4591a3ea7cfdb60a1f2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/bRgx+919BHPYoG3bsdI3fWrQbtiGN2/UH2iow6BMtcTvdXe94TtTA//tw
+ Umo7WQZMD4LEj/z4kTpSdyMAxZVagtINim69Gb94q/WvH7/cvnfx28Xqi+Hfp/7q/BN+/9wuflFF
+ jnCbv0jLj6iJdq03JOzsAOtAKJRZZz/PpxfT5/P5WQ+0riKTw2ov4/nkfCwpbNx4Ojs7v49sHGuK
+ aglfRwAAd/09a7QV3aolTIsflpZixJrU8uAEoIIz2aIwRo6CVlRxBLWzQjbLtsmYE0CcM2uNxhwT
+ D9fdyfOxUWjM+orfkfswnb2qv0+bj+HZa/Ommy20Ock3UHe+F7RNVh8adIIf7MtHyQCUxbaPvewu
+ +74Vjx0w1KklK1m2uiuVwQ2ZUi2/3pUqCgYp1XJalIpsVarlfFbcu8TsU6o3rz+U6rooldBtdi3V
+ KrgqaYF3tGO6WQKvGmcJZgtYBVeqfXFCPJ8fmM/mi0fUq6s/H1G/bwgs3TykhEA+UMwlAELk2vKW
+ NVqB5OuAFYHbUQAfaMcuRejPT5xAJtskNhV8S2hYOuAIdKvJ516iKeCGpclxLacWWhQKjCZCilSB
+ NMGlunFJJvAHdbAllBQoAlttUkXLsrRlacfwqrPYsobfokFbQcXRG+yArVAdMKfq3RbPL1fQIlvQ
+ 2FLA3vhi9gxesrOsQTfsB8qXKEKhA8NbypK5zeVH3lEBBqOwrQFhm4yBCjtwW2gId12WPRQ9JIDY
+ RaEWfP+5KEKUZG0O9o0TlwuBjZMmkxiuG4Es37ib8fCmna04y4+TQdfVjgKa3LaGDQHderJZFaDA
+ TxcXFwVIwxEq2rEmqMjwjsLQcWPICuzQJIKtC+DdDYUsOMQ+a6+oDuibDshKkyJjlDgp1f56rx6c
+ 6P3oqefrk0ENtE0Rzf0E39v3h5VgXO2D28RHE662bDk260AY+0lTUZwfcuc8fQaVHmwT5YNrvazF
+ /U02E85ns4FPHbfdEZ0tFveoOEFzBBbn58UThOuKBLnfN4cVp1E3VB1Dj6sOU8XuBBidlP1vOU9x
+ D6Wzrf8P/RHQeaKoWvtAFeuHJR/dAuW/wX+5HdrcC1bD0V1v2dYUfODDPh7tR/8AAAD//wMAv86G
+ aI4GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63fd4fc940128-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2561'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_53684a4d7edb97bd13762b8b7327dab1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW+bMBR9z69A95lU2M4H4a3RWk3runba1oeVCjnGSWiNbdlGXRflv0+QFNOs
+ lcwDQj7n3HvPFRx2oyiCqoQsAraljtVajM+/M/blkf1NUsGeP08uVtvl3e35k91+0moJcatQq0fO
+ 3KvqjKlaC+4qJQ8wM5w63lZFc5IskpSQaQfUquSilW20G5Oz6dg1ZqXGCcLTo3KrKsYtZNH9KIqi
+ aNfd2xllyf9AFiXx60nNraUbDllPiiIwSrQnQK2trKPSQexBpqTjsh1bNkIMAKeUKBgVwjc+XLvB
+ s18UFaIgP5/Sq/T33aVeXq7nFxx9TZY36vlq0O9Q+kV3A60byfoFDfD+PDtpFkUgad1pr1+uu73F
+ pwRqNk3NpWvHhl0Ogq64yCG73+VgHTUuhyyJc+CyzCEjKD5SbMvJ4dvFrxwe9vGATXBPR2Rxwr+9
+ +XHKRxNfH03mIYLUC2YkQDCbeEGKAgTpwMNiFiBYzHsBxgEdMPYdMAkwjYk3jecBI+G5H4kkAQKS
+ DAQoYK0E+bUSnAYI8MILpjhAMCUDQcC7RGaDd3UWYnrmTU8+Mv2whzefzX703vPDIA0MXzeWimNM
+ HM/3fe4ItdFGrexJjMC6kpXdFoZT233OYJ3Sh95tn64DNG8iC7RRtXaFU09ctgUJQod64CPVoxjh
+ I+qUo8IDU0zidwoWJXe06kKtz1FG2ZaXXurzlDZlpQbAaGD7/3Heq32wXslNSHkPMMa142WhDS8r
+ 9taypxne/nI+ovVr7gYG+2Idr4t1JTfcaFP1oT/aj/4BAAD//wMA+QoPpvMGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de63fe67c4a0128-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:18 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3596'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_49d448c008a2298c6a4be39dba6f1a87
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW+bMBR9z6+w7jOpsJ0veJumqlW1rt2q7qOlQo5xCJuxKTbLoij/fYKkmGat
+ ZB4Q8jnn3nuu4LAbIQRFBjECvmaWl5Ucf/jC+Q+8ubD2z8+t+Xq/er66uswePpX4I5cQtAq9/CW4
+ fVGdcV1WUthCqwPMa8GsaKviOQ2jcEEnUQeUOhOyleWVHdOz6dg29VKPQ0ymR+VaF1wYiNHjCCGE
+ dt29nVFl4i/EKAxeTkphDMsFxD0JIai1bE+AGVMYy5SFwIFcKytUO7ZqpBwAVmuZciala3y4doNn
+ tygmZbq4edhurs+f1xHPL8i32+ZmE343l3eDfofS26obaNUo3i9ogPfn8UkzhECxstNeb6+7vQWn
+ BFbnTSmUbceGXQKSLYVMIH7cJWAsq20CcRgkIFSWQExxcKSYlpPA5/P7BJ72wYBNSU/HNDrh397c
+ nfLxxNXHk7mPYOEEM+ohmE2cYIE9BIuBh2jmIYjmvYAQjw6EuA6Eepgm1Jkmc4+RyNyNREMPAQ0H
+ AuyxVordWilZeAhI5ART4iGY0oHA412is8G7OvMxPXOmJ++ZftrDq89mP3rr+WmQBrVYNYbJY0wc
+ z/d97kidV7VempMYgVWhCrNOa8FM9zmDsbo69G77dB2geRVZUNW6rGxq9W+h2oIU40M9cJHqUILJ
+ EbXaMumAKaHBGwXTTFhWdKHW5yhnfC0yJ3V5ypqs0ANgNLD9/zhv1T5YL1TuU94BnIvKiiytapEV
+ /LVlR6tF+8t5j9avuRsYzNZYUaarQuWiruqiD/3RfvQPAAD//wMAH/O7u/MGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640410ecc6300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:32 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2881'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_ea113fbc063da5bc04de6b49b7797475
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXU+kMBR9n19B7jNjaDvMB2+r0ZgYV92N2axiSKcUht3Ssm2Jmsn8dwMzUpzV
+ pDwQ0nPOvffcwGE7CQKockgCYBtqWd2I6bc7xuiP5zt6g4oLWorT28uzh/vzq/h+2V5A2CnU+g9n
+ 9l11wlTdCG4rJfcw05xa3lVFCxKtoiWJcQ/UKueik5WNnZKTeGpbvVbTCOH4oNyoinEDSfA4CYIg
+ 2Pb3bkaZ8xdIgih8P6m5MbTkkAykIACtRHcC1JjKWCothA5kSlouu7FlK8QIsEqJjFEhXOP9tR09
+ u0VRIbJF8fxPvLycNujiqmivf1UP0eVZ/Xs26rcv/dr0AxWtZMOCRvhwnhw1CwKQtO6116/X/d7C
+ YwLVZVtzabuxYZuCoGsuUkgetykYS7VNIYnCFLjMU0gICg8U03FS+H5+n8LTLhyxCR7oiKyO+Lc3
+ P4/5aObqo9nCR7B0gjnxEMxnTrBEHoLlyMNq7iFYLQYBxh4dMHYdMPEwjYkzjRceI+GFG4lEHgIS
+ jQTIY60EubUSvPQQ4JUTxNhDEJORwONdIvPRuzr3MT13pmdfmX7awYfPZjf57PlplAaaF62h4hAT
+ h/PdkDtClY1Wa3MUI1BUsjKbTHNq+s8ZjFXNvnfXp+8A7YfIgkarurGZVX+57AoShPb1wEWqQzHC
+ B9QqS4UDYkzCTwpmObe06kNtyFFG2YbnTurylLZ5pUbAZGT7/3E+q723XsnSp7wDGOON5XnWaJ5X
+ 7KNlR9O8++V8RRvW3A8M5tVYXmdFJUuuG10NoT/ZTd4AAAD//wMAA/tD9vMGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640547ed96300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3051'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_201c19a9c4c47a8d99a59fb942593c12
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV0W6bMBR9z1eg+0wqsIEkvFVrp2lr17VbVU2lQo5xElZjI9tsiaL8+wRJMUlT
+ yXmIkM85955zZS7bkedBWUDqAV0RQ6uajy/vKWU35tfq71P0ePVgClHGIa43+LN6ReC3Cjn/w6h5
+ U11QWdWcmVKKPUwVI4a1VcMJDmbBFMdJB1SyYLyVLWszxhfx2DRqLsdBiOKDciVLyjSk3vPI8zxv
+ 2/23HkXB1pB6gf92UjGtyZJB2pM8D5Tk7QkQrUttiDDgW5BKYZhobYuG8wFgpOQ5JZzbxvvfdvBs
+ B0U4z8nVzcO/y6frdbz+ev/py+IqWQd339jvQb996U3dGVo0gvYDGuD9eXrSzPNAkKrT3m5uu7n5
+ pwSilk3FhGltwzYDTuaMZ5A+bzPQhiiTQRr4GTBRZJDi0D9QdMvJ4Pv1YwYvO3/Axqinh3h2wv9x
+ 9/OUH0a2fhhNXARTK0iwgyCJrGAaOgimgwyzxEEwm/QChBw6IGQ7oNghA4ptBjRxsIQm1hIOHAQ4
+ GAhCB0s4tJYwmjoI0MwKYuQg6CbzJnC4SzgZ3NXEJXRiQ0fvQp+53dEgdPRRhpcdHL1nu9G555fB
+ +lBs0WjCD3vlcL7rFxWXy1rJuT7ZO7AoRalXuWJEd+8/aCPrfe+2T9cBmqMdB7WSVW1yI1+ZaAvi
+ MNzXA7uDLYpQckCNNIRbIMYT/0zBvGCGlN0W7BcvJXTFCiu1C5g0RSkHwGgQ+72dc7X30UuxdClv
+ AUpZbViR14oVJT2ObGmKtd+oj2j9mDvDoDfasCpflGLJVK3K/isx2o3+AwAA//8DAGEBoI4kBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64068fe016300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3256'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_76e0f037e34bec1b9e5021ad0823d2df
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBS85ysevnBpVsm2XdpeEEKI7gVpOSChFYpc+zXx4vhZ9gtQrfrvyEm2
+ SQVIXHyYeTOaGfk5AxBGix0I1UhWrbf5uwelGj4ErN/vD/GDdZ++flk/lNvPH59+dGKRFHR4QsUv
+ qhtFrbfIhtxAq4CSMbmWb5bFttgs19ueaEmjTbLac76i/La4XeXFJi/uRmFDRmEUO3jMAACe+zdF
+ dBp/iR0UixekxRhljWJ3OQIQgWxChIzRRJaOxWIiFTlG16feo7X0Cu5ft9BgQJBOQ0CpT8AEDVp/
+ A3v6CUo6uIfBDE7UAZOWp7dz04DHLsrUyXXWjvj5ktJS7QMd4shf8KNxJjZVQBnJpUSRyYuePWcA
+ 3/o1uquCwgdqPVdM39Elw3I12Ilp/hl5N5JMLO2EL8cFr90qjSyNjbM1hZKqQT0pp+llpw3NiGzW
+ +c8wf/MeehtX/4/9RCiFnlFXPqA26rrwdBYwfc5/nV027gOLeIqMbXU0rsbggxn+x9FX5XqrN8tV
+ qZTIztlvAAAA//8DAMQHCGMoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6407edfcd6300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1975'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_6c9bf308dbfce94019b83f6afbe2dc49
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUTW/bMAyG7/kVAs/OEH/ky7cOaLcd2q1ru0tdGIpMO2plSZXkpVmQ/z7YSW3X
+ 7ZD5EBh6yYevGJO7ESHAM4gJsDV1rNRifHbN2OPFU3QdbW9/Bc9nl1fz4Mv8683yZ3W7AK/OUKtH
+ ZO416xNTpRbouJIHmRmkDmuqPw8ny8kinPmNUKoMRZ1WaDeO1DiYBNF4shhPZsfEteIMLcTkfkQI
+ Ibvmt7YoM3yBmEy815MSraUFQtwGEQJGifoEqLXcOiodeJ3IlHQoa9eyEqInOKVEyqgQXeHDs+u9
+ d32iQqTR3fUfXV4E5xfT7bfb1WxDNxt59pL36h3QW90YyivJ2v709PY8HhQjBCQtm9zL7WXTNm8Y
+ QE1RlShdbRt2CQi6QpFAfL9LwDpqXAJxOPcSQJklEE8X3jHG1kEJ/Ph+k8CDl4DDlzo2AcsLyXPO
+ qHSk0oWhGSaw93q8WdTyFuFJ3qriIiPPFRXcbQekIPRbVBBFJ1mfqXNotkTwfGgqWHao0D9ty7pK
+ Si4LotfKKTughfOwoy1nJ2n4wlAIlI78pqIaeosmi5YW+af/Aq02aEhl0Qx9RUHnK4rmp0n15QpD
+ 9XpLULp1ZTm17v1te72bD3t3dX43oFKXwP5hD28+xv3oo/eH3owZzCtLxXH4juf7dpqFKrRRKzsY
+ Tsi55HadGqS2GRKwTulD7bpOUwGqN4sAtFGldqlTTyhrYDhZHnjQ7alO9afBUXXKUdEJ0WFnDYFp
+ ho7yZlW024lRtsasS+22FK0yrnrCqHft93Y+Yh+uzmXxP/hOYAy1wyzVBjPO3l65CzNY7/F/hbVt
+ bgyD3VqHZZpzWaDRhjerFHKd+tNltggjnzEY7Ud/AQAA//8DAKi5XFpTBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6408c09c26300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1993'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_bd89fdea9a50a6978222948806706098
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yU226jMBCG7/MU1lyTFQSSEO5aqepqtd1tVanSqlTIMQO4a2zXNmmjKO++gqSQ
+ Q1ctFwj8z3xzgJnNiBDgOSQEWEUdq7UYX9wxJqaFwir6vv7x567xp1fm9mVRBvVqCV7roZbPyNy7
+ 1zemai3QcSV3MjNIHbbUYB76Cz8OZ2En1CpH0bqV2o0jNZ74k2jsx2N/tnesFGdoISGPI0II2XT3
+ NkWZ4xskxPfeT2q0lpYISW9ECBgl2hOg1nLrqHTgDSJT0qFss5aNEAeCU0pkjAoxBN5dm4PnoU9U
+ iKyWD8XD1XX1c37vXmO8fF5dNDq+jg7i7dBr3SVUNJL1/TnQ+/PkJBghIGnd+d6sb7q2eacG1JRN
+ jdK1acMmBUGXKFJIHjcpWEeNSyEJ514KKPMUkmns7W1sa5TC7e/7FJ68FBy+tbYpWF5KXnBGpSON
+ Lg3NMYWtd8CbRT0vDj/l4RtD3dZHBVk2XOTkpaGCu/UJNV701MXsU6o2WPOmJjV1aDhtDY9owWwo
+ OvgC75I6h2ZNBC+QcEt4rQ1ay1enxU+CsAdPoujzdrpGSi5LoivllCVckqVyFcnpWvCycoTKnAj1
+ Ot69MSVz3nbrtKDJdOj6ZB58qe1CoHRkRUVzVsU8HmhnH/HX1fUZTaPcd+NpC0d/4Xb00fPTwXAZ
+ LBpLxX7q9ufbfoyFKrVRS3sylVBwyW2VGaS2mw6wTuld7DZOFwGaow0A2qhau8ypvyhbYOgvdjwY
+ FtSgBlG0V51yVAxCNA29D4BZjo7ybkf0a4lRVmE+uA7riTY5VwfC6KDs83Q+Yu9K57L8Cn4QWDtx
+ mGfaYM7ZccmDmcF2gf/PrG9zlzDYtXVYZwWXJRpteLdDodBZMF3kcRgFjMFoO/oHAAD//wMAaqOU
+ l0wGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640994a8c6300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2959'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_132ae071c3245abe5421164e5d179f70
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUbW+bMBDH3+dTWPeaTBBIQnjXaX2YtG6dpmmaSoUccwFvxvZs0zaL8t0nSAok
+ 6ZTyAoH/d797gLvNiBDgOSQEWEkdq7QYX3xlTH2/ifjVzc+biwgvYuabD/qjDOXlHXiNh1r+QuZe
+ vN4xVWmBjiu5k5lB6rChBvPQX/hxOJu1QqVyFI1bod04UuOJP4nGfjz2Z3vHUnGGFhJyPyKEkE17
+ b1KUOT5DQnzv5aRCa2mBkHRGhIBRojkBai23jkoHXi8yJR3KJmtZCzEQnFIiY1SIPvDu2gye+z5R
+ ITIXXl8+ll8nT2ZdVZ+W/O+Pu/Jq/hQP4u3Qa90mtKol6/oz0Lvz5CgYISBp1frerm/btnnHBtQU
+ dYXSNWnDJgVBlyhSSO43KVhHjUshCedeCijzFJJp7O1tbGOUwt2Xbyk8eCk4fG5sU7C8kHzFGZWO
+ 1LowNMcUtt6AN4s6Xhye5eEzQ93URwVZ1lzk5E9NBXfrI2q86KiBPz+L1QYrXlekog4Np43hAS6Y
+ 9VUH8ews7z11Ds2aCL5Cwi3hlTZoLX88rn4ShB14EkXn++lqKbksiC6VU5ZwSZbKlSSna8GL0hEq
+ cyLU03j3xpTMedOu44Im077tk3nwpr4LgdKRRyrqkyrmcU87+YqfL69PaBrlvhsPWzj4Dbej154f
+ BtNlcFVbKvZjtz/fdnMsVKGNWtqjsYQVl9yWmUFq2/EA65TexW7itBGgPlgBoI2qtMuc+o2yAYb+
+ YseDfkP1ahBFe9UpR0UvRNPQewWY5egob5dEt5cYZSXmvWu/n2idczUQRoOyT9N5jb0rncviLfhe
+ YM3IYZ5pgzlnhyX3ZgabDf4/s67NbcJg19Zhla24LNBow9slCiudBdNFHodRwBiMtqN/AAAA//8D
+ ALUQ3vtNBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640acd9f56300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1941'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_f420a323f25cb25eb7ba2848e3452e5d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVUW/aMBDH3/kUlrVHmBICgfDWblPVbbRM3R6mpkKHcwRvju3ZTleG+O6TA0tC
+ tgl4QJH/d7+7s51/dj1CKM/ojFC2AccKLQZXnxgzt9mH6M316u7jKrjJN5/lz9Wv8uubjx9o32eo
+ 1Tdk7k/Wa6YKLdBxJQ8yMwgOPTWcREESTKM4qYRCZSh8Wq7dYKQGw2A4GgTTQRAfEzeKM7R0Rh57
+ hBCyq/59izLDFzojQf/PSoHWQo50VgcRQo0SfoWCtdw6kI72G5Ep6VD6rmUpREtwSoklAyGawoff
+ rvXc7BMIscyK+/z6+kEuPr+Lb+5kfPt+Mf8yzF9a9Q7ora4aWpeS1fvT0uv1WacYIVRCUeXOt/Nq
+ 2/rdADB5WaB0vm26S6mAFYqUzh53KbUOjEvpLJr0U4oyS+lsPO0fY6wPSuni/iGlT/2UOnzxsSm1
+ PJd8zRlIR0qdG8gwpft+ixePat40OsvDF4bazweCrEouMvKjBMHdtkOdJjU1ic9StcGClwUpwKHh
+ 4ANPaGHcDB1ewHu7lVBwRm6tAJmRjFstYEu4dJgb8O13CgzDqC4wHI7PFhhN5wtSAJeEQYEGurjR
+ sMGNJ2dxV2FMrrmSnBG24bpLi1vNTc7TeKENWsufkazAOTRbIvi6e+5R0PQYhRfcJFdKyWVO9EY5
+ 1T2haBI0tGmXdvfu5q97pFFWLYIjr5Ik6fKS5sRHYXzRvRQCpSPPIEo/69Oenrxe+96/np9armFw
+ XVoQRzs5ru9rfxIq10atbMdu6JpLbjdLg2Cr155ap/Shtq9TVaDlibVRbVSh3dKp7yg9MAqSA482
+ ztuowyA8qk45EI0wDo/2eQpcZuiAV+ZX+y0DtsGsSW18F8qMq5bQa439dzv/Yh9G5zK/BN8IzFsJ
+ ZkttMOPsdOQmzKD/Mv0vrN7mqmFqt9ZhsVxzmaPRhlcfB7rWy3CcZNNoFDJGe/vebwAAAP//AwC/
+ s3RQJQcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640ba48686300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3191'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_1a86d0eec44368434dcea756c9883d68
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV247TMBCG7/sUlsVli3LoIendIo6ChUUrIS1kVU2daWpwbGM7S7NV3x05LUka
+ QN1eVJH/mW9mbOfPfkQI5TldEsq24FipxeTqM2PVNnrgDy/qD/r2x89d8vpxmi4+frhRt3TsM9T6
+ OzL3J+s5U6UW6LiSR5kZBIeeGi7iIA2SeBE1QqlyFD6t0G4yVZMoiKaTIJkE81PiVnGGli7JtxEh
+ hOybf9+izHFHlyQY/1kp0VookC7bIEKoUcKvULCWWwfS0XEnMiUdSt+1rIToCU4psWIgRFf4+Nv3
+ nrt9AiFWtf3y64pfPz7O17vo5V1VgAjfv7372qt3RNe6aWhTSdbuT09v15eDYoRQCWWTe11fN9s2
+ HgaAKaoSpfNt031GBaxRZHT5bZ9R68C4jC7jxTijKPOMLmfJ+BRjfVBGbz7dZvR+nFGHOx+bUcsL
+ yTecgXSk0oWBHDN6GPd482nLS+KLPNwx1H4+EGRdcZGTnxUI7uoBNUlbajq/SNUGS16VpASHhoMP
+ PKOF827o8Am8l7WEkjPyzgqQOcm51QJqwqXDwoBvf1AgCuO2QBTNLhaYJtc3pAQuCYMSDQxx06jD
+ zRYXcVfhnLzgSnJG2JbrIW3ea25xmcZLbdBa/oBkDc6hqYngm+G5x0HXYxw+4Sa5SkouC6K3yqnh
+ CcWLoKMlQ9rHV2/+ukcaZdMiOPIsTdMhL+1OfBrOn3QvhUDpyAOIys96f6Bnr9dh9K/n+55rGNxU
+ FsTJTk7rh9afhCq0UWs7sBu64ZLb7cog2Oa1p9Ypfazt6zQVaHVmbVQbVWq3cuoHSg+Mg/TIo53z
+ dmoUhCfVKQeiE2bhyT7PgascHfDG/Fq/ZcC2mHepne9ClXPVE0a9sf9u51/s4+hcFk/BdwLzVoL5
+ ShvMOTsfuQsz6L9M/wtrt7lpmNraOixXGy4LNNrw5uNAN3oVztI8iachY3R0GP0GAAD//wMAyfbT
+ 7iUHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640d009fa6300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4941'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_cdc93e8d396d9a008fd9f9b8841e118f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBTc9RWvXLpYgRw5Ve2lSIMCSZElk4egEGjySWJK8RHkE1An8L8HlB1L
+ QVOgC4e7d4e7A18yAGG02IBQnWTVe5tfPyj1vF0+RX2zxp9Xzf11NXz/Ee39dntzKxZJQbsnVPym
+ ulDUe4tsyB1pFVAyJtdlVRbr4mtZVSPRk0abZK3nfJXzEHaUXxaXq7xY5cX6pO7IKIxiA48ZAMDL
+ +KacTuMfsYFi8Yb0GKNsUWzORwAikE2IkDGayNKxWEykIsfoxui3aC19grvPPXQYEJigQ+thT8MF
+ bDvJoKSDO9AEDYUEA5OW+29zv4DNEGXq5AZrT/jhHNBS6wPt4ok/441xJnZ1QBnJpTCRyYuRPWQA
+ v8YhhnfdhA/Ue66ZfqNLhsvV0U5M88/I6kQysbQTXi4XH7jVGlkaG2dDCiVVh3pSTqvLQRuaEdms
+ 899hPvI+9jau/R/7iVAKPaOufUBt1PvC01nA9Dn/dXbeeAws4j4y9nVjXIvBB3P8Go2vr/SuLMov
+ ZdOI7JC9AgAA//8DAGLIoNMoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640efdeaf6300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:52:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '766'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_fefb3ca7398f84053d3981cc38f5668f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW+jMBC951dYcyYr85FQuOWwavfQb1V7KBUyxiS0xrZss9tulP++AhJM01YN
+ B4TmvTdvPMx4O0MI6hJSBHRDLG0Un69uaYnPS7tY3b1cJbe/H1bhZXP/7+7vH35zDV6nkMUzo/ag
+ +kFloziztRQDTDUjlnVZ/TjECT4L47MeaGTJeCdbKzuP5rbVhZwHOIjmOJrjZK/eyJoyAyl6nCGE
+ 0LZ/d3WKkr1CirB3iDTMGLJmkI4khEBL3kWAGFMbS4QFz4FUCstEV7poOZ8AVkqeU8K5Mx6e7eTb
+ NYtwnr/eXZyr8pbpX882WPkX2C9WV9dFNPEbUr+pvqCqFXRs0gQf4+mRGUIgSNNrL98u+955xwSi
+ 123DhO3Khm0GnBSMZ5A+bjMwlmibQYq9DJgoM0iDxNtTTMfJ4OrnQwZPO2/CDh3dT475N9f3x/wA
+ T/KH0QmCcOEEcXiCII5GQYTPvhdEOBkFi+QEh0XiHJZx8L1g2dc9COIl/l4QL/1RkARfODzt4N3/
+ 3c0++36ajK1mVWsI38/zPr4bF4TLtdKyMEfzDlUtarPJNSOmnzswVqrBu/PpHaB9t1ugtGyUza18
+ YaJLGPr+kA/c/jvUDw6olZZwB0Rh4H2SMC+ZJXW/fePCU0I3rHRSt/ikLWs5AWaTY38s57Pcw9Fr
+ sT4lvQMoZcqyMlealTV9f2RH06y7H7+ijW3uCwbzZixr8qoWa6aVrvvbCSqVL8oixOEyrCqY7Wb/
+ AQAA//8DAGssuE6rBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de640f5cce96300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5074'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_dfa4b563e6001c264fdb0e22e60009cc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU3W+bMBB/z19h3TOZSJwPwlurVaomtd06pVpXIuSYgzgzNrKNlCjK/14BKZAs
+ U8cDQvf7uPP5jsOAEBAJhAT4hjmeF3J484Mn01v8zZ92z/NvN7P75f5lK17s6zKbv4JXKfR6i9x9
+ qL5wnRcSndCqgblB5rByHc2pv/ADGtAayHWCspJlhRtOhq40az0c++PJ0J8M/cVJvdGCo4WQvA0I
+ IeRQv6s6VYI7CInvfURytJZlCGFLIgSMllUEmLXCOqYceB3ItXKoqtJVKWUPcFrLmDMpu8TNc+h9
+ d81iUsa7u8fpr6/PS53mz2Z3H2yD1MxvZ9tevsZ6X9QFpaXibZN6eBsPL5IRAorltfZh/1D3zrsk
+ MJOVOSpXlQ2HCCRbo4wgfDtEYB0zLoLQ9yJAlUQQjhfeiWIrTgSPd8sIVkevx6YdfTQZXfC/P/28
+ 5I8mtPOnk88FYzprBXTufy6g83ErmM6C64LVEc56cxxc+171rtxgWlomT7Nwih/b4ZI6K4xe24tZ
+ gVQoYTexQWbrOwPrdNHkrvLUGaA8m0sojM4LFzv9B1VlSEejxg+63enQ2eIEOu2Y7KmC0+if+8UJ
+ OibqwW13hTO+waSTdjvDykToHjDonfrvaq55NycXKvsf+w7gHAuHSVwYTAQ/P3FHM1j9Wv5Fa7tc
+ Fwx2bx3mcSpUhqYwol5sSIt4mqypT2c0TWFwHLwDAAD//wMAQpy9L+YEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de641169d276300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3037'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_2cd0f4fd386f91fb8b8a9f82c875b29c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU3W+bMBB/z19h3TNMBNOQ8LatrbpJ3dZlk1aVCDm2SeiM7dlmbRTlf5/4KJAs
+ U8cDQvf7uPP5jv0EISgYJAjoljhaauG/vaNs8fF9dROEV/fr5bOs8jgO4+sf0TdbgVcr1PqRU/ei
+ ekNVqQV3hZItTA0njteu0xgHi2CO53EDlIpxUcs22vmR7yqzVn4YhJEfRH6w6NRbVVBuIUEPE4QQ
+ 2jfvuk7J+DMkKPBeIiW3lmw4JD0JITBK1BEg1hbWEenAG0CqpOOyLl1WQowAp5TIKBFiSNw++9H3
+ 0CwiRHZ37+xXcqUvxdO7Dzt2Ix9/Xf9e4stRvtZ6p5uC8krSvkkjvI8nJ8kQAknKRnu7u216550S
+ iNlUJZeuLhv2KQiy5iKF5GGfgnXEuBSSwEuBS5ZCEi68jmJrTgqfrr6nsDp4IzYe6NNoesL/8nl5
+ yp9GePDH0euCEM96AY6D1wU4DnvBxWx+XrA6wFFvDpNz36vRlRueV5aIbha6+KEfLqE22qi1PZkV
+ yAtZ2G1mOLHNnYF1Sre56zxNBqiO5hK0UaV2mVM/uawN8XTa+sGwOwM6W3SgU46IkWrejf6xX8a4
+ I0UzuP2uUEK3nA3SYWdIxQo1AiajU/9dzTnv9uSF3PyP/QBQyrXjLNOGs4Ien3igGV7/Wv5F67vc
+ FAx2Zx0vs7yQG260KZrFhlxnF2yNAzzDeQ6Tw+QPAAAA//8DAI1EyjfmBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6412aebd26300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2820'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_40d4d5b10f3e6cc4920d64db64840336
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU3W+bMBB/z19h3XMykZAveJu6TY3Wdm23RdpKhBxzEKfGtmyzLovyv08QCiRr
+ tfKA0P0+7ny+Y98jBHgCIQG2oY7lWgze37Hk4n5Mb3+ORb71/MvFVXJ/EXD96C0t9EuFWm+RuWfV
+ O6ZyLdBxJY8wM0gdlq7Dme8F3twPvArIVYKilGXaDcYDV5i1Goy80XjgjQdeUKs3ijO0EJKHHiGE
+ 7Kt3WadM8DeEpPKqIjlaSzOEsCERAkaJMgLUWm4dlQ76LciUdCjL0mUhRAdwSomYUSHaxMdn3/lu
+ m0WFiPHyTn/79OPXmM3Wiw/B5+XN1dNi+2fZyXe03umqoLSQrGlSB2/i4VkyQkDSvNJe766r3vXP
+ CdRkRY7SlWXDPgJB1ygiCB/2EVhHjYsg9PoRoEwiCEdBv6bYkhPBzcfvEawO/Q7bb+nD4Jx/++Xr
+ OX/ktQJ//gZBOQ3Pgsl0+n/BZDprBLPRK4LVAU56c+i99L3qXLnBtLBU1LNQxw/NcAmVaaPW9mxW
+ IOWS201skNrqzsA6pY+5yzxVBihO5hK0Ubl2sVOPKEtDfzg8+kG7Oy06DWrQKUdFRzWvR//UL07Q
+ UV4NbrMrjLINJq203RlaJFx1gF7n1P9W85L38eRcZm+xbwHGUDtMYm0w4ez0xC3NYPlreY3WdLkq
+ GOzOOszjlMsMjTa8WmxIdTxJ1r7nT/00hd6h9xcAAP//AwCpuBaV5gQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6413d6a556300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2633'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_8eadad0f210cc172843a925e9c4b5400
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUWvbMBB+z68Q9+wMJXaa2G9ltLCNdBujZKMuRpFkR60sKZLMWkL++7CTWm6W
+ sfjBmPu+777T+U67EUIgGGQI6IZ4Whs5vv5O2U36yT5/nDeL5dNLectYfMWuNlW5/glRq9DrJ079
+ m+oD1bWR3AutDjC1nHjeZp3MY5ziRZxOO6DWjMtWVhk/Tsa+sWs9nuJpMsbJGKdH9UYLyh1k6GGE
+ EEK77t3WqRh/gQzh6C1Sc+dIxSHrSQiB1bKNAHFOOE+UhyiAVCvPVVu6aqQcAF5rWVAiZTA+PLvB
+ d2gWkbKwn1e/pY7Fqtzem9u7X/jLanq9tduB3yH1q+kKKhtF+yYN8D6enZghBIrUnXb5uux6F50S
+ iK2amivflg27HCRZc5lD9rDLwXlifQ4ZjnLgiuWQTdPoSHEtJ4e7m/scHvfRgB0H+iQ95X/7+uOU
+ P8WD/HFygSCeBcE8vkAwT3pBghf/FyQ47QWz9AKHWRoc5skFDvMkOCxm+LzgcQ/vftd+dO77cTCF
+ lpeNI/I4nsf4vp93qStj9dqdjC+UQgm3KSwnrhsjcF6bg3fr0zlA825VwFhdG194/cxVmzCeTA75
+ IKxzQCd4cUS99kQGIJmk0ZmEBeOeiG6Z+v2lhG44C9Kwx6RhQg+A0eDYf5dzLvfh6EJVl6QPAKXc
+ eM4KYzkT9P2RA83y9rr7F61vc1cwuFfneV2UQlXcGiu6ywZKU8zYOsbxVVyWMNqP/gAAAP//AwCW
+ oUNDegUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6414eceaf6300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '7130'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_14b74c453fb874f0ed443301c87f3abf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBS8+ytedeklLrbXNJtclg2FdAstlJ5KKUaWnm1tbT0hPZOGJf9eZKdx
+ lm5hLzrMvBnNPOkpARBGiy0I1UlWg+vT+69Kf/60/vBl/722h9Hs9D7bfLvfbfY7fRCrqKD6ERX/
+ Vb1TNLge2ZCdaeVRMkbXfH2TbbLbMssmYiCNfZS1jtOS0sFYkxZZUabZOs1vz+qOjMIgtvAjAQB4
+ ms6Y02r8LbYweU3IgCHIFsX2MgQgPPURETIEE1haFquFVGQZ7RT94e0Aj2NgkBALjIwenKfWy2EF
+ 9cgQBzr0CNJq8Cj1EZigw97BkcY38JEOoKSFB5iviigwaXm8u77SYzMGGWvbse/P+OnSoafWearD
+ mb/gjbEmdJVHGcjGvIHJiYk9JQA/p12Nz+oL52lwXDH9QhsN83K2E8sLLWRRnEkmlv2C37xfveBW
+ aWRp+nC1a6Gk6lAvyuVh5KgNXRHJVed/w7zkPfc2tn2N/UIohY5RV86jNup54WXMY/y//xu77HgK
+ LMIxMA5VY2yL3nkz/57GVVktM50XZZOL5JT8AQAA//8DAHXWLolLAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6417cdb216300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '634'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1596db9810ef2670b661c9dff3ddb0ea
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW/bOBC9+1cMiD3KhfyRxvIt2WYvm7ZJt4uirQKDpkbSZClSJUeyvYb/+4Ky
+ azlOFo0PhsQ3896bITnaDgAEZWIOQpWSVVXr4dW9yj58+/rnl+u3y7x9Z+Xszly7b+9u+NPjZxGF
+ DLt8RMU/s94oW9UamazZw8qhZAyso8tJnMSzaTzqgMpmqENaUfNwaocVGRqO4/F0GF8OR7NDdmlJ
+ oRdz+D4AANh2/8GnyXAt5hBHP1cq9F4WKObHIADhrA4rQnpPnqVhEfWgsobRBOum0foEYGv1Qkmt
+ e+H9b3vy3DdLar34418XX13bH4/t749XdF/d3t7crim5P9HbU2/qzlDeGHVs0gl+XJ+fiQEII6su
+ 9/3mfde76DxAuqKp0HCwLbap0HKJOhXz79tUeJaOUzGPo1SgyVIxn8yiQ4gPMan4cPN3Kh6iVDCu
+ Q2gq7pzNGsXwCVvC1RzorrQGYTSFO2dTsYtOiCfJkXkUn1PfffzrjPpziWBw9ZQSHNYOfSgBJHgq
+ DOWkpGFo6sLJDMG26KB22JJtPHRnyL85czKKT6xcjF5lZdmQzuBHIzXxBsgDrhXWYSekjmBFXAbV
+ ipoKKsnoSGoPjccMuHS2KUrb8DMfF+PeR3L5Sx/XkhndBjTlGCxQFZrhqcUItPRMpgAJeaM1ZHID
+ NocSZbsJNp5JJ7Oj9Hjyut1QskInwW88YwV1t/XowXNjTJCuS8vWAxlYWi6DBU1FySBNBtquhvs3
+ ZU1GoW/PtmV8ckImcfxLTx9bdFKH7pekEXBdownNAMnwW5IkEXBJHjJsSSFkqKlFt984rdEwtFI3
+ CLl1UNsVutAn5zu7XSmFk3W5ATRcNp6k587xw048uVa7wUvPDyfTwmHeeKkPY+SwvjvOJW2L2tml
+ PxszIidDvlw4lL677sKzrffaQadTEM2TkSZqZ6uaF2z/QRMIJ3Gy5xP92O3R0Wx6QNmy1D0wTSbR
+ C4SLDFlSN/SOc1ZJVWLWp/bzVjYZ2RNgcFL2czsvce9LJ1O8hr4HVLiYmC1qhxmppyX3YQ7DZ+n/
+ wo5t7gyL/Zlf5GQKdLWj7qMg8nqRLC9ny7cjdTEWg93gPwAAAP//AwBc0raQIgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64181a8596300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4238'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ca5a22c7e821ec7c53d29f168e49047f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVyY7bOBC9+ysKxBzlQN7Glm/JbGhgOuk4ySyIGgZNlaTKUCTDxcsY/e8Dyo6l
+ dvcg7YMh8VW996pIlo4DAEYFWwITNfeiMXL4+r0oVp/mP7/+av7+XaU38w2tPr756a/54sNuzpKY
+ oTdfUPhvWa+EboxET1qdYGGRe4yso/kkzdLFNJ21QKMLlDGtMn441cOGFA3H6Xg6TOfD0eKcXWsS
+ 6NgSPg8AAI7tf/SpCtyzJaTJt5UGneMVsuUlCIBZLeMK486R81x5lnSg0MqjitZVkLIHeK3lWnAp
+ O+HT79h77prFpVxPZ+Nb+dtotfj1z9n+3/Jm9Tb7ciM2f/T0TtQH0xoqgxKXJvXwy/rySgyAKd60
+ ubeH27Z3yXUAt1VoUPlomx1zJvkGZc6Wn485c55bn7NlmuQMVZGz5WSRnENcjMnZ218+5ew+yZnH
+ fQzN2Z3VRRAeVrgl3C2B7mqtEEZTuLM6Zw9Jj3iSXZhH6TX13bsPV9QfawSFu8eUYNFYdLEE4OCo
+ UlSS4MpDMJXlBYLeogVjcUs6OGjPkHt15WSU9qzMRi+ysgkkC/gauCR/AHKAe4Em7gSXCezI11G1
+ odBAwz1a4tJBcFiAr60OVa2Df+JjNu58ZPPv+njDvUd7AEklRgvUxGY42mICkjtPqgIOZZASCn4A
+ XUKNfHuINp5IZ4uL9Hjyst0QvEHLwR2cxwZMu/XowPmgVJQ2tfbaASnYaF9HC5Kq2gNXBUi9G57e
+ hFYFxb492ZZx74RM0vS7nt5t0XIZu1+TRMC9QRWbAdzDD1mWJeBrclDglgRCgZK2aE8bJyUqD1su
+ A0KpLRi9Qxv7ZF1rty2lstzUB0Dl6+CIO986vn9gj67Vw+C55/vetLBYBsfleYyc1x8uc0nqyli9
+ cVdjhpWkyNVri9y11505r81JO+q0Ciw8GmnMWN0Yv/b6H1SRcJJmJz7Wjd0OHS2mZ9Rrz2UHTLNJ
+ 8gzhukDPqR16lzkruKix6FK7ectDQboHDHplP7XzHPepdFLVS+g7QMSLicXaWCxIPC65C7MYP0v/
+ F3Zpc2uYnc78uiRVoTWW2o8CK80628wXmx9HYjZmg4fBfwAAAP//AwDOLtOgIgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6419d78246300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4134'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_0b78f6f5d1c974adcc2464fbe39a6db5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVWXPbNhB+16/YwfSR8lCHdb0lbR/c1I1z2JlO6NFA4JLcBgQQHJJZj/57B5Qt
+ yow7Ch84JHb3228P7D4OABjlbAVMVNyL2sjhmw8iv3uHn//9cHUrdP6n/3T7x2Rx9+v13fxLzZJo
+ oTf/oPDPVhdC10aiJ60OYmGRe4yoo/kkXaaLabpsBbXOUUaz0vjhVA9rUjQcp+PpMJ0PR4sn60qT
+ QMdW8HUAAPDYviNPleMDW0GaPJ/U6Bwvka2OSgDMahlPGHeOnOfKs6QTCq08qkhdBSlPBF5ruRZc
+ ys7x4Xk8+e6SxaVcf1sur3i6+7upPppC8Gr2PYTJlzqc+DtAN6YlVAQljkk6kR/PVz1nAEzxurW9
+ bq7b3CV9BW7LUKPykTZ7zJjkG5QZW319zJjz3PqMrdIkY6jyjK1myZOGiyoZ++v324zdJxnz+BA1
+ M3ZjdR6Eh4+4JdxlbJ+cAM2PQKP5WSS6qbRCGE3hxuoe0GhxRFpMekg37z/1kD5XCAp38AIRLBqL
+ LoYOHByVigoSXHkIprQ8R9BbtGAsbkkHB23vuQuIYJtAMofvgUvyDZADfBBoYg24TGBHvop2NYUa
+ au7REpcOgsMcfGV1KCsd/EUvpMW0S046PZudd9hAgdwHiw5ICRlyXPWzlF52mJPztfutUbwmAVdO
+ cpVDTs5I3gApj6XlMby+g8lJRS/Pk54urm+g5qRA8Bot78NdnvJNz8K9Gc3gLWlFAkRF5gdyow5t
+ Nj3bJW+592gbkFRgrCnVsT8cbTEByZ0nVQKHIkgJOW9AF1Ah3zaxrv1ajmZdIOPx6Kca9JARcI3z
+ WINprxE6cD4oFV2bSnsdSw0b7atIQVJZeYiVkno3PPwJrXKKlXJ9TuPxuOM0T89yer9Fy2Vs54ok
+ Aj4YVDEZwD38slwuE/AVOchxSwIhR0lbtIebICUqD1suA0KhLRi9QxvzZF1Ltw2ltNxUDaDyVXDE
+ nW8Z3+/Ziwm1H7z2fX8yeC0WwXH5NJGfzvfHES91aazeuN7EZgUpctXaInft5GTOa3PwHf20Hlh4
+ sR2Ysbo2fu31N1QRcHJYS+1aeN5gnXQ8e5Z67bnsBJfzRfIK4DpHz6ndH8eVJbioMO9Mu9XFQ076
+ RDA4CftHOq9hH0InVf4MfCcQcdJhvjYWcxIvQ+7ULMYN/39qxzS3hNmh59cFqRKtsdTuV1aY9XIz
+ X2xmI3E5ZoP94D8AAAD//wMAnaomCW0IAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de641b87fa06300-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:34 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5025'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_e6e154a4972e0b210bfe71c55163a3a5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW/bOBC9+1cMiD3KgeVv+9Y27WJ34a2b7Z6qwKDJkTQtRSokZUcN8t8XlBNL
+ UbJwfTAkzsybN2+omYcBACPJ1sBEzr0oSjV890VI9Wm/+c4nG/tlI/P8bjmPPxUf8/q6YFGIMPvv
+ KPxz1JUwRanQk9Ens7DIPQbUeDEZrUbL6XjWGAojUYWwrPTDqRkWpGk4Ho2nw9FiGC+fonNDAh1b
+ w7cBAMBD8x94aon3bA2j6PmkQOd4hmx9dgJg1qhwwrhz5DzXnkWtURjtUQfqulKqY/DGqJ3gSrWJ
+ T7+HznMrFldq98H71c/Vj5uv13+6matv7j5s5bz4XXfynaDrsiGUVlqcRerYz+frXjIApnnRxG7q
+ TaNd1HfgNqsK1D7QZg8JU3yPKmHrbw8Jc55bn7D1KEoYapmw9Tx68nDBJWF/f/w3YbdRwjzeB8+E
+ ba2RlfBwgwfCY8Ieow7Q4gwUTy8i0TY3GiGewtaaHlA8OyMtJz2k7ed/ekhfcwSNR3iBCBZLiy6U
+ DhwcZZpSElx7qMrMcolgDmihtHggUzlo7p67ggC2r0hJuKu4Il8DOcB7gWXoAVcRHMnnIa6gqoCC
+ e7TElYPKoQSfW1Nluan8Va+k5bQVZ3RZnb+whhS5ryw6IC1UJXHdV2nUyhRPLvfuuta8IAF/OMW1
+ BEmuVLwG0h4zy0N5/QSTTkdnl0lPl5stFJw0CF6g5a+62uV7Ge5dPIf3ZDQJEDmVr8h10ObTi7fk
+ PfcebQ2KUgw9pSLcD0cHjEBx50lnwCGtlALJazAp5MgPdehrv5fxvE09Hse/dEFPioCrnccCyuYz
+ QgfOV1qH1GVuvAmthr3xeaCgKMs9hE4pcxye3oTRkkKnXJ/TeDxuOS1GFzl9PqDlKlznnBQC3peo
+ gxjAPfy2Wq0i8Dk5kHgggSBR0QHt6UtQCrWHA1cVQmoslOaINuhkXUO3KSWzvMxrQO3zyhF3vmF8
+ +8heTKjHwVvPt53BazGtHFdPE/np/PE84pXJSmv2rjexWUqaXL6zyF0zOZnzpjzlDnmaDKx6sR1Y
+ aU1R+p03P1AHwMlodcJj7QZrreP5s9Ubz1VrmC2W0RuAO4meU7M/zitLcJGjbEPb1cUrSaZjGHTK
+ fk3nLexT6aSzX4FvDSJMOpS70qIk8bLk1s1i2PD/53aWuSHMTnd+l5LO0JaWmv3K0nK32i+W+3ks
+ ZmM2eBz8BwAA//8DAKNOvRdtCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6421c0bdc6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5856'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_f17aa8bad863c180459b7827ec204388
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227jNhB991cMiD7KgSXf/Za0KbAbpOtt10C3q8CgyZE0W4pUScqOEOTfC8qJ
+ 5agpvHoQJM7MmTMXzjwNABhJtgImCu5FWanh9Wch7bL8q9iIj6X8PL29zf68Szabr83+44RFwcLs
+ vqPwr1ZXwpSVQk9GH8XCIvcYUOP5eLQcLSbjuBWURqIKZnnlhxMzLEnTMBklk+FoPowXL9aFIYGO
+ reDbAADgqX0HnlriI1vBKHo9KdE5niNbnZQAmDUqnDDuHDnPtWdRJxRGe9SBuq6VOhN4Y9RWcKU6
+ x8fn6ey7SxZXarv8dZltru9uPpjvU792P4svm30x/zo583eEbqqWUFZrcUrSmfx0vuo5A2Cal63t
+ fXPf5i7qK3Cb1yVqH2izp5QpvkOVstW3p5Q5z61P2WoUpQy1TNlqFr1ouKCSst9uNyl7iFLm8TFo
+ pmxtjayFh99xT3hI2XN0BjQ/AcXzi0i0LoxGiCewtqYHFC9OSItxD2n96Y8e0pcCQeMB3iCCxcqi
+ C6EDB0e5powE1x7qKrdcIpg9Wqgs7snUDtrec1cQwHY1KQn/1FyRb4Ac4KPAKtSAqwgO5ItgV1Jd
+ Qsk9WuLKQe1Qgi+sqfPC1P6qF9Ji0iVnNLmYnTtsIEPua4sOSAtVS1z1szSadpjjy7X7pdG8JAEf
+ nOJagiRXKd4AaY+55SG8voPxWUWnl0lPFvdrKDlpELxEy/tw0zO+8fIi3HU8gxsymgSIgqo+WtL1
+ bTybXOySG+492gYUZRhqSmXoD0d7jEBx50nnwCGrlQLJGzAZFMj3Tahrv5bxrAskSeIfatBjRsA1
+ zmMJVXuN0IHztdbBdVUYb0KpYWd8ESgoygsPoVLKHIbHP2G0pFAp1+eUJEnHaT66yOnTHi1XoZ0L
+ Ugj4WKEOyQDu4aflchmBL8iBxD0JBImK9miPN0Ep1B72XNUImbFQmQPakCfrWrptKLnlVdEAal/U
+ jrjzLeOHZ/ZmQj0P3vt+OBu8FrPacfUykV/On08jXpm8smbnehObZaTJFVuL3LWTkzlvqqPv4Kf1
+ wOo324FV1pSV33rzN+oAOB4tj3is22CdNJm9Sr3xXHWC6XwRvQO4leg5tfvjtLIEFwXKzrRbXbyW
+ ZM4Eg7Ow/0vnPexj6KTzH4HvBCJMOpTbyqIk8TbkTs1i2PD/p3ZKc0uYHXt+m5HO0VaW2v3Ksmq7
+ 3M0Xu1kspgkbPA/+BQAA//8DALi2a81tCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64241bc7d6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5836'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_72af7b7cba58f31abd162daaeb88f842
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSQW7bMBC86xVbXnKRDTu2kcSXoKfEQIqiaG5FIVDkWqJLcRly5cQI/PdCtCI5
+ aArkwsPMzmBml68ZgDBarEGoWrJqvJ18/aH0S/u0f9RPzePP3XeHZnf38O1yefdQ1iLvFFTuUPGb
+ aqqo8RbZkDvRKqBk7FznV4vZzex6ubhKREMabSerPE8W09WE21DSZDa/XPXKmozCKNbwKwMAeE1v
+ l9FpfBFrmOVvSIMxygrFehgCEIFshwgZo4ksHYt8JBU5Rpdi36O19AU2Fw3s2sggYW8Ct9LCoMwh
+ EmxAk7tgqOUeYYtojatiDmXLSVtjQGCCGq2HA7XwbLgG6Q5cG1clxCHqKdzTMyjpYNP7J4pJy8Pt
+ ecKA2zbKbkOutbbHj0NlS5UPVMaeH/CtcSbWRUAZyXX1IpMXiT1mAL/Tatt32xI+UOO5YPqDrjOc
+ L092YjzmSC5WPcnE0o748ib/wK3QyNLYeHYaoaSqUY/K8Y6y1YbOiOys879hPvI+9Tau+oz9SCiF
+ nlEXPqA26n3hcSxg99X/NzbsOAUW8RAZm2JrXIXBB5M+WzrlMfsLAAD//wMAYbJS12sDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de642672dc96368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '591'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_d6b7113b41e243c8576c7f8f7d034735
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUy27bMBC86yuIPcuBHnZi6dYGDVrESREE7aGRIdDUWlJLkQRJoXEM/3uhRyTZ
+ dQvrIBA7M7vDxS73DiFQZhATYAW1rFJ89uGJZbvsbWUWv/NP99+xeFzerW6ftq9f3uZLcBuF3PxE
+ Zt9VV0xWiqMtpehgppFabLL6N6EXect5uGyBSmbIG1mu7Cy8WsxsrTdy5vnBolcWsmRoICYvDiGE
+ 7Nt/41Fk+Aox8dz3SIXG0BwhHkiEgJa8iQA1pjSWCgvuCDIpLIrGtqg5nwBWSp4yyvlYuPv2k/PY
+ KMp5+u1zcHP7sb5/flzZyDz/8MzdKlKFP6nXpd6p1tC2Fmxo0AQf4vFJMUJA0KrVPuwe2r65pwSq
+ 87pCYRvbsE+A0w3yBOKXfQLGUm0TiD03ARRZAnEQuT3FNJwEvqqmMvETWB/ciaQldprIP68JTjUt
+ sdP48+vzovBU1DF7d0Fwqb2W2alCf3GhwY7Zqeae/59a6wMcNfrgnDuvJ/OjcVsbyvvB6uOHYVK5
+ zJWWG3MyeLAtRWmKVCM17QCAsVJ1tZs6bQWoj4YclJaVsqmVv1A0CUP/ussH4xKOaBT2oJWW8jE+
+ 9yL3TL40Q0vLdguGxWOUFZiN0nEBaZ2VcgI4k1v/7eZc7u7mpcgvST8CjKGymKVKY1ay4xuPNI3N
+ G/Uv2tDl1jCYnbFYpdtS5KiVLodXwjk4fwAAAP//AwDOXybBJAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6426c4b556368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:53:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1398'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_1a223ece550410c8ae843b80778985cd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTY+bMBC951dYcyYrEvLJbTet0kvaptvdPSwRMmYC3jU2so3aNMp/rwwpkDSV
+ ygFZ8+a9NzMeOA4IAZ5CSIDl1LKiFMP7LUP/10vqvzzNH94Py9UqWX3Ovz5Rmr/NwXMMlbwhs39Y
+ d0wVpUDLlWxgppFadKqjeeAv/cVk4tdAoVIUjpaVdhjcTYe20oka+qPx9MzMFWdoICSvA0IIOdZv
+ V6NM8SeEpNapIwUaQzOEsE0iBLQSLgLUGG4slRa8DmRKWpSubFkJ0QOsUiJmVIjOuHmOvXM3KCpE
+ /Lj9cL9WybePzz+26+/P+LiePZhN/qnn10gfyrqgfSVZO6Ae3sbDKzNCQNKi5m4Om3pu3nUC1VlV
+ oLSubDhGIGiCIoLw9RiBsVTbCELfiwBlGkE4XnrnFONyIvhSOmcyimB38nqUYNRxppPbpPE1aTyd
+ taxgurjNChxrd4KLRk6DW+dd73407itDxfnizvFTuwlCZaVWibm6WNhzyU0ea6SmHjAYq8rG2/nU
+ DlBdLBGUWhWlja16R+kEg9Gs0YNuyTt0sjiDVlkqeqzZxLuhF6doKa+3rF1sRlmOaUftFpxWKVc9
+ YNDr+u9qbmk3nXOZ/Y98BzCGpcU0LjWmnF123KVpdP+Af6W1U64LBnMwFot4z2WGutS8/QoHp8Fv
+ AAAA//8DAFUA7PaEBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de642768eae6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '879'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_634f09667516d285e9dbefb94bc0db05
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTYvbMBC9+1eIOTuLHSfb2LfdQ7qUhrL0g5Z1MIo8cZTKkirJpSHkvy/+WNtJ
+ 0xIfjJj33szTMKOjRwjwHBICbEcdK7WYPDwzDPNfdIoxC5fsR/CMaJf77bf99v0M/FqhNntk7k11
+ x1SpBTquZAszg9RhnTV8FwVxsJjNwgYoVY6ilhXaTaK7+cRVZqMmQTidd8qd4gwtJOTFI4SQY/Ov
+ Pcoc/0BCAv8tUqK1tEBIehIhYJSoI0Ct5dZR6cAfQKakQ1nblpUQI8ApJTJGhRgKt99xdB4aRYXI
+ Vg9f5l8/Ft8flx8+V2LxuFz8Xi2fDk+jem3qg24MbSvJ+gaN8D6eXBQjBCQtG+3qsGr65l8SqCmq
+ EqWrbcMxBUE3KFJIXo4pWEeNSyEJ/BRQ5ikk09jvKLbmpPBJ15VJmML65I8kDbHVxOF1zfRS0xBb
+ TTgLrouiS1HL7NwF01vtNcxONb+/0WDLbFVRFPyn1voEZ40+edfO69H8GNxWlopusLr4qZ9UoQpt
+ 1MZeDB5sueR2lxmkthkAsE7ptnZdp6kA1dmQgzaq1C5z6ifKOmEU3rf5YFjCAY2jDnTKUTHEZ0Hs
+ X8mX5egob7agXzxG2Q7zQTosIK1yrkaAN7r1326u5W5vzmVxS/oBYAy1wzzTBnPOzm880AzWb9S/
+ aH2XG8NgD9ZhmW25LNBow/tXwjt5rwAAAP//AwAcLT9tJAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6427d8e086368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1462'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_886e10ed21e98bae5d649d446f67d2bb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/bMAy9+1cIPDtFnKRZ49uGoe0+0mIYdsjqwFBk2lErS4Ikr+2C/PdBcmo7
+ WQbMB0Pge4+PpGjvIkKAF5ASYFvqWK3F6P03hpMvq++3d6s7vMfVZ/ryeFOUn+p6+aGC2CvU5hGZ
+ e1NdMFVrgY4r2cLMIHXosybvpuPF+Go2mwSgVgUKL6u0G00vLkeuMRs1GieTy4NyqzhDCyl5iAgh
+ ZBfevkZZ4AukZBy/RWq0llYIaUciBIwSPgLUWm4dlQ7iHmRKOpS+bNkIMQCcUiJnVIjeuH12g3M/
+ KCpEfntNb643X39g+VM9iY+Jff7tlqtfzwO/NvWrDgWVjWTdgAZ4F09PzAgBSeugXb4uw9ziUwI1
+ VVOjdL5s2GUg6AZFBunDLgPrqHEZpOM4A5RFBulkER8o1nMyuNfemSQZrPfxQBKIrWaRnNdMTjWB
+ 2GqS2fy8aOpF6z0ctbGPzp3Xg9sxWDaWisO1HeL7bg+EqrRRG3tyrVByye02N0htGC9Yp3Tr7X2C
+ AzRHKwTaqFq73KknlD7hNJm3+aBf8R6dXR1ApxwVA9V8Fp/JlxfoKA871q01o2yLRS/t15s2BVcD
+ IBp0/Xc153K3nXNZ/U/6HmAMtcMi1wYLzo477mkG/R/gX7RuyqFgsK/WYZ2XXFZotOHdNxjtoz8A
+ AAD//wMAehQUWIIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de642878a6f6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '803'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_0051907005dadf387ad295c9fb348699
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU246bMBB95yuseSYrCGS38FapqrJtt92bVq2WCDlmQkiN7dqmbTbKv1dcFkia
+ VuEBWXPOmTMezXjnEAJFBjEBtqaWlYpP3t4xDOdqemt/YPnh5X7+eJfdPmT3s41++ApurZDLDTL7
+ qrpgslQcbSFFCzON1GKd1b8KvMh7E4ZhA5QyQ17LcmUnwcVsYiu9lBPPn8465VoWDA3E5NkhhJBd
+ 869rFBn+hph47mukRGNojhD3JEJAS15HgBpTGEuFBXcAmRQWRV22qDgfAVZKnjLK+WDcfrvReWgU
+ 5TzF+Z16fP/tZ8iultfvoo9Pnz/9ut68PI382tRb1RS0qgTrGzTC+3h8ZEYICFo22pvtTdM395hA
+ dV6VKGxdNuwS4HSJPIH4eZeAsVTbBGLPTQBFlkA8jdyOYmpOAl9U7Uz8BBZ7dyRpiK0m8k9rpsea
+ hthq/NA7LQqORS2zq86bnmnVMjvV7PJcVcNsVUHg/acViz0cNHrvnDovRvOjcVUZyrvB6uL7flK5
+ zJWWS3M0eLAqRGHWqUZqmgEAY6VqvWufxgGqgyEHpWWpbGrldxR1wsC/bPPBsIQDGgUdaKWlfIiH
+ XuSeyJdmaGnRbEG/eIyyNWaDdFhAWmWFHAHO6NZ/V3Mqd3vzQuTnpB8AxlBZzFKlMSvY4Y0Hmsb6
+ jfoXre9yUzCYrbFYpqtC5KiVLvpXwtk7fwAAAP//AwAqyBX5JAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6428e39956368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:05 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1421'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_b0fd20f2698aabae4f8baaea088f36b8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSPW/bMBTc9SteuXSxAimWU9tLEWSJh6JJ16IQGPJJYkvxEeRTEyPwfw/0EUtG
+ W6ALh7t3h7sDXxMAYbTYg1CNZNV6m94+Ktw8ym8P1Yt/1r/dl8PXut5xrpSkO7HqFfT0ExW/q64U
+ td4iG3IjrQJKxt41/7TOdtm2KDYD0ZJG28tqz2lB6XV2XaTZNs1uJmFDRmEUe/ieAAC8Dm8f0Wl8
+ EXvIVu9IizHKGsX+fAQgAtkeETJGE1k6FquZVOQY3ZD6Hq2lD3D42EKDAUE6DQGlPgITNGj9FdzT
+ Myjp4ACjGRypAyYtj5+XpgGrLsq+k+usnfDTOaWl2gd6ihN/xivjTGzKgDKS6xNFJi8G9pQA/BjW
+ 6C4KCh+o9Vwy/ULXG+bFaCfm+RfkzUQysbQzvp4WvHQrNbI0Ni7WFEqqBvWsnKeXnTa0IJJF5z/D
+ /M177G1c/T/2M6EUekZd+oDaqMvC81nA/nP+6+y88RBYxGNkbMvKuBqDD2b8H5Uv881Ob9dFrpRI
+ TskbAAAA//8DALIi3AwoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de642982bf66368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '482'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_11e1b5c45668f6bde3633716c8bc207f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW/jNhC9+1cMiB7txLJlJzYCA8n2sO0iiBMUxaKrwGCokTQtRXL5YUcI8t8L
+ SolluykQHwyKb2bevCH19DIAYJSzJTBRcS9qI0fX9wLn3EhVX3+rzV83ruBfH+6L3yeh+D5mw5ih
+ n/5G4d+zzoSujURPWnWwsMg9xqrJxXS8GF+m6bwFap2jjGml8aNUjybjSToaX47G87fESpNAx5bw
+ YwAA8NL+xxZVjs9sCePh+06NzvES2XIfBMCslnGHcefIea48G/ag0Mqjil2rIOUB4LWWG8Gl7Im7
+ 38vBup8Tl3Jz93M8DrsvD3fprVxf/Pl9Ib86ff9ldsDXlW5M21ARlNjP5wDf7y9PyACY4nWbe9vc
+ tmMbngZwW4YalY9ts5eMSf6EMmPLHy8Zc55bn7HleJgxVHnGltO4bENcjMnYnYnMkGTscZgxj88x
+ PmNXVbJaW50H4eEBt4S7JdC60gohSWFt9dV5lawy9jo8oJnO9jzJbPYx0eSUyKz+qBAU7o7rg0Vj
+ 0UVhwMFRqaggwZWHYErLcwS9RQvG4pZ0cNBeKncGsdhTIJnDz8Al+QbIAT4LbOm5HMKOfBXzago1
+ 1NyjJS4dBIc5+MrqUFY6+DP4hg0UyH2w6ICUkCHH5dW5OVWdzPvxTtKLj2VPT2UHucoydSVp9Wuj
+ eE0CfnOSqxxyckbyBkh5LC2P2Vfnkt6j08vbNdScFAheo+WH2HUyhxvSigSIisweOo9kx01PZpP+
+ TqTJp8/qhnuPtgFJBcbJUh1PydEWhyC586RK4FAEKSHnDegCKuTbJk63O5uua3CN81iDaa8YOnA+
+ KBWTTaW9jvOGJ+2rWERSWXmIo5F6N+qehFY5xR7d2QcnMk3ne3HpRfrJG29Wd1u0XMYrUpFEwGeD
+ KkoD7uGXxWIxBF+Rgxy3JBBylLRF290uKVF52HIZEAptwegd2qjaurb1VlZpuakaQOWr4Ig7v+/+
+ 8ZUdvdevg4/Wjwd2ZbEIjss3H3vbf90bo9SlsfrJnfgcK0iRqzYWuWv9hjmvTccdeVoGFo48lRmr
+ a+M3Xv+DKhacJmlXj/WW36OT9M2emdeeyx6Yzd7TjgpucvScWtfdG73gosK8T+0Nn4ec9AEwOJD9
+ 33Y+qt1JJ1V+pnwPiOggmG+MxZzEseQ+zGL8JP5f2H7MbcOsewc2BakSrbHUfpVYYTbJbJFfTtNE
+ CDZ4HfwLAAD//wMA8tm8t54HAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6429c38ba6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:10 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4620'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_7f06c85d3eedecd524c9ba051356a996
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW/bOBC9+1cMiD3KieWv2IZhIEEPu9saTbu76KEKDIYaSdNSJJcfToQg/31B
+ KbEcrwvEB4PmzLw3jzOeeRoAMMrZCpiouBe1kcPrLwJvfpcfJyn/1DRfynHzoflruXW3+9k/jiUx
+ Qt//QOFfoy6Ero1ET1p1ZmGRe4yo6dVktBwtprO0NdQ6RxnDSuOHUz0cj8bT4WgxHM1fAitNAh1b
+ wfcBAMBT+x1TVDk+shWMktebGp3jJbLVwQmAWS3jDePOkfNceZb0RqGVRxWzVkHKI4PXWu4El7In
+ 7j5PR+f+nbiUu+2f3xb2W3O1vZ79/DFpeFXYFD/N9RFfB92YNqEiKHF4nyP74X51QgbAFK/b2G2z
+ bZ8tOXXgtgw1Kh/TZk8Zk/weZcZW358y5jy3PmOrUZIxVHnGVpN4bF1c9MnYZxOZYZyxuyRjHh+j
+ f8bWVbq5tToPwsNX3BM+rIBuK60Q0incWr2+rNJNxp6TI5rJ7MCTzmbniSanRGbzd4Wg8OEtPlg0
+ Fl0UBhwclYoKElx5CKa0PEfQe7RgLO5JBwdtU7kLiGD3gWQO/wYuyTdADvBRYEvPZQIP5KsYV1Oo
+ oeYeLXHpIDjMwVdWh7LSwV/AR2ygQO6DRQekhAw5rtaX5lR1Ou+fd5z+QnZ6KjvITZap1yquJW0+
+ NIrXJOAPJ7nKISdnJG+AlMfS8oiyvpR0yj4eH7FPR+9kl7SZLra3UHNSIHiNlp8Fn/YVHc9n7we/
+ TudwQ1qRAFGR6bA7uevLKP2E5+qoQ2dX7+6cG+492gYkFRjrTHXsGUd7TEBy50mVwKEIUkLOG9AF
+ VMj3Tax11ymddHCN81iDaRseHTgflIrBptJex+rDvfZVBJFUVh5igaR+GHa/hFY5xRzdxZn+mMzH
+ B3HTxfTd4j7v0XIZG7YiiYCPBlWUBtzDb8vlMgFfkYMc9yQQcpS0R9v1upSoPOy5DAiFtmD0A9qo
+ 2ro29VZWabmpGkDlq+CIO3/I/u6ZvZkyz4Nz57uj4WmxCI7Ll6n6cv98GNNSl8bqe3cydVlBily1
+ s8hdO/2Y89p03JGnZWDhzYRnxura+J3XP1FFwEk67fBYv4B66/hq+WL12nPZG2bLSXIGcJej59Tu
+ gMPaEVxUmPeh/frhISd9ZBgcyf5/OuewO+mkyvfA9wYR5xnmO2MxJ/FWcu9mMS7oX7kdnrlNmHX/
+ gV1BqkRrLLU7khVml86W+WIyTYVgg+fBfwAAAP//AwDK0X+7LAgAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de642ba7fe16368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5219'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_7be930e6978a667410db76d8f72ae4c2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVbW/jNgz+3l9BCPuYtHHemgRBgLsdNhTb4bqhGIqei0CRaZubLKl6cesV/e+D
+ 7DZOsxzQfAgUkXwePiJDPp8BMMrYCpgouReVkcNPfwj89erm1t7Us93Cy/rhqh653ez3h1u6Y4MY
+ oXd/o/BvUedCV0aiJ606s7DIPUbU5HIyWo4W09m8NVQ6QxnDCuOHUz0cj8bT4WgxHM1fA0tNAh1b
+ wfczAIDn9jumqDJ8YisYDd5uKnSOF8hWeycAZrWMN4w7R85z5dmgNwqtPKqYtQpSHhi81nIruJQ9
+ cfd5Pjj378Sl3M4b++Wvy59/uavG9RPd8jz4fPHv3fUBXwfdmDahPCixf58D+/5+dUQGwBSv2tiv
+ zdf22QbHDtwWoULlY9rsOWWS71CmbPX9OWXOc+tTthoNUoYqS9lqEo+ti4s+KftmIjOMU3Y/SJnH
+ p+ifsnWZbK6tzoLw8CfWhI8roOtSK4RkCtdWry/KZJOyl8EBzWS250lms9NEk2Mis7kpERQ+vscH
+ i8aii8KAg6NCUU6CKw/BFJZnCLpGC8ZiTTo4aJvKnUME2wWSGTwELsk3QA7wSWBLz+UAHsmXMa6i
+ UEHFPVri0kFwmIEvrQ5FqYM/h9+wgRy5DxYdkBIyZLhaX5hj1cm8f95x8gPZybHsIDdpqt6quJa0
+ +dIoXpGAKye5yiAjZyRvgJTHwvKIsr6QdMw+Hh+wT0cfZJe0mS6+XkPFSYHgFVp+EnzaV3Q8n30c
+ /FMyh8+kFQkQJZkOu5O7vojSj3guDzp0Mflw53zm3qNtQFKOsc5UxZ5xVOMAJHeeVAEc8iAlZLwB
+ nUOJvG5irbtO6aSDa5zHCkzb8OjA+aBUDDal9jpWH3balxFEUlF6iAWS+nHY/RJaZRRzdOcn+mOy
+ WOzFTZeLD4v7VqPlMjZsSRIBnwyqKA24h5+Wy+UAfEkOMqxJIGQoqUbb9bqUqDzUXAaEXFsw+hFt
+ VG1dm3orq7DclA2g8mVwxJ3fZ3//wt5NmZezU+f7g+FpMQ+Oy9ep+nr/sh/TUhfG6p07mrosJ0Wu
+ 3Frkrp1+zHltOu7I0zKw8G7CM2N1ZfzW639QRcBJMu3wWL+Aeuv4cvlq9dpz2Rtmy8ngBOA2Q8+p
+ 3QH7tSO4KDHrQ/v1w0NG+sBwdiD7/+mcwu6kkyo+At8bRJxnmG2NxYzEe8m9m8W4oH/ktn/mNmHW
+ /Qe2OakCrbHU7kiWm20yW2aLyTQRgp29nP0HAAD//wMANgbf+iwIAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de642dc3c0b6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5265'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_fc1cfbf0c7b81b0c0d7cfc32b54325c0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227jOAx9z1cQwj46bZxbmyAIMN0F2kG3aLsY7Mu4CFSZtrkjSxpd0nqL/vtC
+ dhun2QzQPASKSJ7DQzHkywCAUc6WwETFvaiNHH65F/hn8+/ft/ejn1e+vAzX+XzML3+/uXu+KFgS
+ I/TjPyj8e9SJ0LWR6Emrziwsco8RNT2bjBaj8+k8bQ21zlHGsNL44VQPx6PxdDg6H47mb4GVJoGO
+ LeH7AADgpf2OKaocn9kSRsn7TY3O8RLZcucEwKyW8YZx58h5rjxLeqPQyqOKWasg5Z7Bay03gkvZ
+ E3efl71zXycu5ebS39sf1bW8Gquvk0sv6qtJM7/9dr/H10E3pk2oCErs6rNn390vD8gAmOJ1G3vT
+ 3LRlSw4duC1DjcrHtNlLxiR/RJmx5feXjDnPrc/YcpRkDFWeseUkHlsXF30ydmsiM4wz9pBkzONz
+ 9M/YqkrXd1bnQXj4C7eET0ugu0orhHQKd1avTqt0nbHXZI9mMtvxpLPZcaLJIZFZf6sQFD59xAeL
+ xqKLwoCDo1JRQYIrD8GUlucIeosWjMUt6eCgbSp3AhHsMZDM4WfgknwD5ACfBbb0XCbwRL6KcTWF
+ Gmru0RKXDoLDHHxldSgrHfwJXGMDBXIfLDogJWTIcbk6NYeq03lf3nH6C9npoewg11mm3l9xJWn9
+ R6N4TQK+OslVDjk5I3kDpDyWlkeU1amkQ/bxeI99Ovoku6T19PzmDmpOCgSv0fKj4NP+Rcfz2efB
+ v6RzuCCtSICoyHTYndzVaZR+wHO216Fno093zgX3Hm0DkgqM70x17BlHW0xAcudJlcChCFJCzhvQ
+ BVTIt018665TOungGuexBtM2PDpwPigVg02lvY6vD4/aVxFEUll5iA8k9dOw+yW0yinm6E6O9Mfk
+ rC/idHH+aXG3W7RcxoatSCLgs0EVpQH38NtisUjAV+Qgxy0JhBwlbdF2vS4lKg9bLgNCoS0Y/YQ2
+ qrauTb2VVVpuqgZQ+So44s7vsn94ZR+mzOvg2Plhb3haLILj8m2qvt2/7sa01KWx+tEdTF1WkCJX
+ bSxy104/5rw2HXfkaRlY+DDhmbG6Nn7j9Q9UEXCSTjs81i+g3jo+W7xZvfZc9obZYpIcAdzk6Dm1
+ O2C3dgQXFeZ9aL9+eMhJ7xkGe7L/n84x7E46qfIz8L1BxHmG+cZYzEl8lNy7WYwL+lduuzK3CbPu
+ P7ApSJVojaV2R7LCbNLZIj+fTFMh2OB18B8AAAD//wMA+0Re6iwIAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de642fe29e76368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '7054'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_5cbe8f2df468594e5d1888c81d0d56c1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVbW/bNhD+7l9xIPbRTiy/xTaMAO06bGsbNBu6AlsVGDR5lq6hSJYvtrUg/32g
+ nFiO5wD1B0Pi3T3PPXen40MHgJFkc2Ci5EFUVvXe/CHw88//fnl/bz5cjX4dfZT3377LwdUXfv93
+ ybopwqy+oQjPURfCVFZhIKP3ZuGQB0yo2dWwP+tPR5NZY6iMRJXCCht6I9Mb9AejXn/a60+eAktD
+ Aj2bw9cOAMBD859S1BJ3bA797vNJhd7zAtn84ATAnFHphHHvyQeuA+u2RmF0QJ2y1lGpI0MwRi0F
+ V6ol3v8ejp7bOnGllqv4/p+/3FiL7JdV+Ga2U693v7272h3x7aFr2yS0jloc6nNkP5zPT8gAmOZV
+ E3tT3zRl6546cFfECnVIabOHnCm+QpWz+deHnPnAXcjZvN/NGWqZs/kwPTYuPvnk7JNNzJDl7K6b
+ s4C75J+zRZld3zojowjwJ24It3Og29JohGwEt84sLsvsOmeP3SOa4fjAk43H54kGp0T2+nOJoHH7
+ Eh8cWoc+CQMOngpNaxJcB4i2cFwimA06sA43ZKKHZqj8BSSwVSQl4XvkikIN5AF3Aht6rrqwpVCm
+ uIpiBRUP6IgrD9GjhFA6E4vSxHABH7CGNfIQHXogLVSUOF9c2lPV2aQt72DwSn2Hp7Kjus5z/dzF
+ haLrd7XmFQn43SuuJUjyVvEaSAcsHE8oi0tFp1Gj6c0tVJw0CF6h4+d83mQTeEtGkwBRkj12WVym
+ RF4KGgzaPg5fG5gzfXzLQ0BXg6I1pqpTlTroaYNdUNwH0gVwWEelQPIazBpK5Js6VX7ft70C8LUP
+ WIFtxg89+BC1TsG2NMGkXsDKhDKBKCrKAKlcymx7+zdhtKSUo784063h0ZCOJtMfFvdpg46rND4l
+ KQTcWdRJGvAAP81msy6EkjxI3JBAkKhog24/eUqhDrDhKiKsjQNrtuiSaueb1BtZheO2rAF1KKMn
+ 7sMh+7tH9uKbf+yce747WmUO19Fz9bTjns4fD0tTmcI6s/InO5CtSZMvlw65b3YR88HYPXfiaRhY
+ fLFvmXWmsmEZzD3qBDjMRns81l4HrXUwunqyBhO4ag3jSdY9A7iUGDg1G/lwCQguSpRtaHsZ8CjJ
+ HBk6R7L/n8457L100sWPwLcGkbYLyqV1KEm8lNy6OUzX5WtuhzI3CbP9N7Bcky7QWUfNjcXWdpmN
+ Z3I6HGVCsM5j5z8AAAD//wMAZOAEKLoHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6432b98156368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6014'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_05e1517fb83c143543e655a7eada7ae5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBTc9RWvXLpYgWwpduKlCNKh3tqhKNAiEGjySWJC8RHkExA38L8XlB1L
+ QVOgC4e7d4e7A18yAGG02IJQnWTVe5vffVP4s71zTzu5Xn/vvj56e/95Ze9/h5vDs1gkBe0fUfGr
+ 6kpR7y2yIXeiVUDJmFyXm7K4LW6qzfVI9KTRJlnrOa9yHsKe8lWxqvKiyovbs7ojozCKLfzKAABe
+ xjfldBqfxRaKxSvSY4yyRbG9HAGIQDYhQsZoIkvHYjGRihyjG6N/QWvpA+w+9tBhQGCCDq2HAw1X
+ 8KOTDEo62IEmaCgkGJi0PHya+wVshihTJzdYe8aPl4CWWh9oH8/8BW+MM7GrA8pILoWJTF6M7DED
+ eBiHGN50Ez5Q77lmekKXDJfVyU5M88/IzZlkYmknvFwu3nGrNbI0Ns6GFEqqDvWknFaXgzY0I7JZ
+ 57/DvOd96m1c+z/2E6EUekZd+4DaqLeFp7OA6XP+6+yy8RhYxENk7OvGuBaDD+b0NRpfX+t9WZTr
+ smlEdsz+AAAA//8DAGN4w/MoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de643524ead6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1023'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_dcf33d1cce52f0e28c215b9648925dd5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yU32vbMBDH3/NXiHt2hm35R+y3DtayQTs26Lq1LkaRZcerLAlJhoWQ/73YSS23
+ 64b9YMR973N3OnR3WCEEbQU5ArojlnaKry++UUZkeynv9k3V3V1Fny8+pldPv36G+0/fwRsIuf3N
+ qH2hPlDZKc5sK8VJppoRy4aoQYr9zN9EaTIKnawYH7BG2XW0tr3eynXoh9Haj9Z+dqZ3sqXMQI4e
+ VgghdBj/Q52iYn8gR773YumYMaRhkE9OCIGWfLAAMaY1lggLnhOpFJaJoXTRcz4TrJS8pIRzl/j0
+ HWZn1yzCeXnZmR/N/Y289aP7kIZfmptbfYsrPMt3Cr1XY0F1L+jUpJk+2fM3yRACQbqRvd5fj73z
+ 3joQ3fQdE3YoGw4FcLJlvID84VCAsUTbAvIg8ApgoiogDxPv7GMGpwK+qiE1Cgp4PHozJnXMZikT
+ hNEEBThbSIU4duXF/kIK++FE4SBdSsWZo9JoIRVlyUTFYzOXUHGCHZVuFlJJ6E9UMnZmEbVx3Uiy
+ /3Xj8QivntBx9d75cTYZmtW9Ifw8Mmf7cZpBLhul5da8GSmoW9GaXakZMePTBmOlOuUe8owZoH81
+ vqC07JQtrXxiYgiIg+QUD9yKcWoQ47NqpSXcCVGSee8ELCtmSTsO+LRTKKE7VjnU7RbSV62cCavZ
+ tf8u573Yp6u3olkS3gmUMmVZVSrNqpa+vrJz02xYwf9ym9o8FgxmbyzryroVDdNKt+MChFqVcbXF
+ Pk5wXcPquHoGAAD//wMA/flJvA4GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64359ae846368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5202'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_3a636af3ded1f382677a1d0aca941d69
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUUW+bMBDH3/MprHsmE8ZAgLdK7dRK66Zt2stKhRxjCJuxmW2kRlG++wRJMc3S
+ CR6Q5f/97v423B1WCEFTQoaA7ahlbSfWN18Zr+LH+891fX8vg283/e2d+k4/3n2S327BGwi1/cWZ
+ faU+MNV2gttGyZPMNKeWD1nxhvipn4QJHoVWlVwMWN3Zdbi2vd6qdeAH4doP1356pneqYdxAhp5W
+ CCF0GN+DT1nyF8iQ773utNwYWnPIpiCEQCsx7AA1pjGWSgueE5mSlsvBuuyFmAlWKVEwKoQrfHoO
+ s7W7LCpE8ZPjF90+3KnyT/pwo8k+2P3QgVGzeqfU+240VPWSTZc006f97KIYQiBpO7KP+8fx7rzL
+ AKrrvuXSDrbhkIOgWy5yyJ4OORhLtc0hw9jLgcsyhyyIvXOMGYJy+NINpRHO4fnozZiNY5J3mOCS
+ wUE4QZik1ylySQUkcvYif6G/IHUUwf5ChyQKHBVvFjoMI3euME4XOoywo6IgXegwimNHJXihwzgh
+ ExWnydJvHDpqEyULHSa+c5gE/3P4fIQ3v+txdW39POtCzaveUHFuz/P+cep3oepOq625aF+oGtmY
+ XaE5NWMbgbGqO9Ue6owVoH8zKqDTqu1sYdVvLoeEBMenfODGmVNxQs6qVZYKJ4Rp6l1JWJTc0mYc
+ JtP8YpTteOlQN8doXzZqJqxmx/7XzrXcp6M3sl6S3gmM8c7ysug0Lxv29sguTPNh3L8XNl3zaBjM
+ 3ljeFlUja6473YzDFqquiMot8UlMqgpWx9VfAAAA//8DADt5jrJ6BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6437b98466368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5119'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_f831ac8320096209814d61752b3b6f76
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUXWvbMBSG7/MrxLl2hr8T+67dGB2s20pKN6iLUWTZ0SpLmiSzlZD/XuykltN1
+ w74wQu95zhc6Z79ACFgFOQKyw5a0ii8vbgjl9aO8YCz6cXd5c7mpP282/vf3v9KrHXg9Ibc/KbEv
+ 1DsiW8WpZVIcZaIptrT3GqwiP/PX8Xo1CK2sKO+xRtllvLSd3spl6Ifx0o+Xfnaid5IRaiBH9wuE
+ ENoP/z5PUdE/kCPfe7lpqTG4oZCPRgiBlry/AWwMMxYLC54TiRSWij510XE+EayUvCSYcxf4+O0n
+ Z9cszHl5+/EDaxp6J34rfd19u/2UtV82VzdXk3hH109qSKjuBBmbNNHH+/xVMIRA4HZgr5+uh955
+ rw2wbrqWCtunDfsCON5SXkB+vy/AWKxtAXkQeAVQURWQh6l3sjG9UQFfVR8aBQU8HLwJs3LMei4T
+ hPEIBVE2kwqjxKWX+DOpyA9HKgpWc6lkQqVzqTh0zYijud2I166uxJ9bVxK7HibJ3B4mWTZSaRDP
+ pNLExUrTbPbLWI3UKgr/Qz0c4Oy5HhZvnR8mU6hp3RnMT+N5uj+M885lo7TcmlfjCzUTzOxKTbEZ
+ xgiMleoYu48zRIDubFWA0rJVtrTykYreYRSkR3/g1plTg3V0Uq20mDshzjLvDYdlRS1mwzIZ9xfB
+ ZEcrh7o9hruKyYmwmJT9dzpv+T6WzkQzx70TCKHK0qpUmlaMnJfszDTt1/2/zMY2DwmDeTKWtmXN
+ REO10mxYtlCrMqm2kR+lUV3D4rB4BgAA//8DACY8xNp6BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6439c98a36368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:54:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '8700'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_1922839827767dd78654e54cc775f054
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUXW+bMBSG7/MrrHNNJsCEr7tJ06pKa7tJ1bKtVMgxhpAa28JGahTlv0+QFNMs
+ neACIb/nOec9xj6HBUJQF5AioFtiaKP48vMPyrrqfl/xaPv4ulLNr/WX+vb+Rqrw8Q84PSE3O0bN
+ G/WJykZxZmopTjJtGTGsz+pF2E3cOEjCQWhkwXiPVcosg6Xp2o1c+q4fLN1g6SZneitryjSk6GmB
+ EEKH4d37FAV7hRS5zttKw7QmFYN0DEIIWsn7FSBa19oQYcCxIpXCMNFbFx3nE8FIyXNKOLeFT89h
+ 8m03i3Cef3/4Srzbnfsbx7j5xpIXtYvWP9c3k3qn1Hs1GCo7QcdNmujjenpRDCEQpBnYu/3dsHfO
+ ZQBpq65hwvS24ZABJxvGM0ifDhloQ1qTQep5TgZMFBmkfuicY3QflMGD6ksjL4PnozNhIsvEHzD+
+ JeP5wQh5OLlO4UvKxytrb+XO9OcnlsKeO9MhDrGlonimwyCyfQVxMtPhCltqFSQzHYauP1KhF810
+ GHm2r8iP5/7jaELF8UyH8XCGzkcj8P7j8PkI747rcXHt+3lyC1tWdprw8/U8rx/H+85lpVq50RfX
+ F8pa1Hqbt4zo4RqBNlKdavd1hgrQvRsVoFrZKJMb+cJEnxB74Skf2HFmVS/GZ9VIQ7gVgiRxriTM
+ C2ZIPQyTcX5RQressKidY6QrajkRFpO2/7VzLfep9VpUc9JbgVKmDCty1bKipu9btmEt68f9R2Hj
+ Ng+GQe+1YU1e1qJirWrrYdhCqfJVscEuDnFZwuK4+AsAAP//AwDdZ7IQegYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de643d52ad06368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5972'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_80f583abdce4d27f406003bf0cbe8b57
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUTW+jMBCG7/wKa86wMh9JCLeqXe1lq6jS9rAqEXKMIewa27WN1GyU/76CpJik
+ aRUOCPmdZ+a1mfHeQwiaEjIEdEssbRUP7p5ohZ+eyUy0Ugn7trr/qdN78UBXknbg94Tc/GHUvlPf
+ qGwVZ7aR4ihTzYhlfdZwEeMlTmc4GoRWloz3WK1skAS20xsZRDhKApwEeHmit7KhzECGXjyEENoP
+ 796nKNkbZAj77ystM4bUDLIxCCHQkvcrQIxpjCXCgu9EKoVlorcuOs4ngpWSF5Rw7gofn/3k2x0W
+ 4byYVa/f8e+7Wv96/vEgebd6fdh1ovs3qXdMvVODoaoTdDykiT6uZxfFEAJB2oF93D0OZ+dfBhBd
+ dy0TtrcN+xw42TCeQ/ayz8FYom0OWRj6OTBR5pBFc/8UY/qgHFaqL43CHNYHf8rMFiMULtLrVPSB
+ SrGjlvNbqWXqDA5mb6GiMB6pOPzEYXxJxZFzmCyiG6lkkYzUPPqq1voAZ7/o4F37Xk86T7OqM4Sf
+ WvK0fhh7nMtaabkxFy0LVSMasy00I2ZoHTBWqmPtvs5QAbqz8QClZatsYeVfJvqEcTg/5gM3wk4N
+ cXpSrbSEOyGJEv9KwqJkljTDAI0zSwndstKhbnZJVzZyIniTbX+0cy33ceuNqG9J7wRKmbKsLJRm
+ ZUPPt+zCNOuvuM/CxmMeDIPZGcvaompEzbTSzXDBQKWKWbmJcTyPqwq8g/cfAAD//wMAKq2+p24F
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de643fb9b696368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3949'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_a088ff5b78fdd3b73d3133cdefcfd9b1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBS85ysevnBJUJJNt6UXxAHEXpBAwK6EUOTaL4lL4mfZL2LLqv+OnHSb
+ rlgkLj7MvBnPPPshARBGiy0I1UlWg+uzt59UU3353W7e379brUy+vv083t19/ej23Tcp0qig3R4V
+ P6peKRpcj2zIzrTyKBmja7G+yl/nm1V+PREDaeyjrHWcVZQNxpqszMsqy9dZsTmpOzIKg9jC9wQA
+ 4GE6Y06r8V5sIU8fkQFDkC2K7XkIQHjqIyJkCCawtCzShVRkGe0U/eblAPsxMEiIBUZGD85T6+WQ
+ wm5kiAMdegRpNXiU+gBM0GHv4EDjC/hAv0BJCzcwXxVRYNLy8ObySo/NGGSsbce+P+HHc4eeWudp
+ F078GW+MNaGrPcpANuYNTE5M7DEB+DHtanxSXzhPg+Oa6SfaaFhUs51YXmghy/JEMrHsF/zqOn3G
+ rdbI0vThYtdCSdWhXpTLw8hRG7ogkovOf4d5znvubWz7P/YLoRQ6Rl07j9qop4WXMY/x//5r7Lzj
+ KbAIh8A41I2xLXrnzfx7GlfnO5nroqyaQiTH5A8AAAD//wMAYTCXLEsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644154d616368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '494'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_56414f7301fef43960966f0207179bf8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/bOAx+z19BCHt0CudHWzdvG4Y77IZi3W59ubkIGIm2eSdLPklO6hX93w+y
+ 29jNdUD9YDgi+X38SIV8mAEIVmIDQlYYZN3o+fuvsjj3vi6Z0uKnv6RPX7NDkWW4+ktakcQIu/ub
+ ZHiOOpO2bjQFtmYwS0cYKKIuLlfpVZqdp5e9obaKdAwrmzBf23nNhufLdLmep5fzRfYUXVmW5MUG
+ fswAAB76d8zTKLoXG0iT55OavMeSxOboBCCc1fFEoPfsA5ogktEorQlkYuqm1XpiCNbqrUStR+Lh
+ eZh8j8VCrbcHVzi7++O3W/xd/WnK22+fb+tdZb9P+AborukTKlojj0Wa2I/nmxMyAGGw7mOvu+u+
+ dsmpA7qyrcmEmLZ4yIXGHelcbH485MIHdCEXmzTJBRmVi83yPHly8dEnF1+ayAyLXNwluQh0H/1z
+ ceOsamWAb7RnOmyAbyprCBZruHE2F4/JBH15eYTPlq/DL0/gv1cEhg4vYcFR48hHLYDguTRcsEQT
+ oG1Kh4rA7slB42jPtvXQXyZ/BhFs17JW8G+LmkMH7IHuJfXcqBM4cKhiXM1tDTUGcozaQ+tJQaic
+ bcvKtuEMPlMHBWFoHXlgI3WraHOiNlsf1S6Wv5C7OpH7sTNYs4RPXqNRoNg3GjtgE6h0GENOSBbL
+ Ccv64m0s6+z6BmpkAxJrcniKuc5GzNUbMd8vLuADW8MSZMXNKeRqApldvK33HzAEch1oLih2iuvY
+ dc97SkCjD2xKQCharUFhB7aAinDfxW4NvR7Uge98oBqa/qaSBx9aY2JwU9lgY/9gZ0MVQTSXVYBY
+ em0P8+GXtEZxTNCfnarKssn/JX2bqi97cqjjXatYE9B9QyZqAgzw7urqKoFQsQdFe5YEijTvyQ3X
+ VGsyAfaoW4LCOmjsgVyU63yfc6+ndNhUHZAJVesZfejTvnsUL+bB4+y177vJmHNUtB710/x7On88
+ DlRty8bZnT+Zj6Jgw77aOkLfzynhg20G7sjTM4j2xSwWjbN1E7bB/kMmAq4W6wFPjPtitC5XT2Nd
+ BBtQj4bz9XPYC8CtooDcT+vjgpAoK1Jj6LgosFVsJ4bZRPb/03kNe5DOpnwL/GiQcQyR2jaOFMuX
+ kkc3R3Gf/srtWOY+YTFc/G3BpiTXOO63mSiabbrDVC2W62IhZo+z/wAAAP//AwC7wwQ52wcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64419c96c6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4864'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c3e7956c59ff1e3f4a50fc3f71d73297
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xWUW/bNhB+9684EHuUA0t2atlv6YqtXRo0KTIMXRUYNHmSrqVIjqTsCEH++0A5
+ sRwnG6wHQebdfd/H4/HODyMARpItgYmaB9FYNb64EeWFkaa9CZn87ebvz98+iE/b2+YPf/nnXyyJ
+ EWb9A0V4jjoTprEKAxm9MwuHPGBETefTyWKSn6dZb2iMRBXDKhvGMzNuSNM4m2Sz8WQ+TvOn6NqQ
+ QM+W8H0EAPDQv6NOLfGeLWGSPK806D2vkC33TgDMGRVXGPeefOA6sGQwCqMD6ihdt0odGIIxaiW4
+ UgPx7nk4+B6SxZVa8c3Hn4273dx/3V6i//bj8+TX3339cXbAt4PubC+obLXYJ+nAvl9fHpEBMM2b
+ Pvaqu+pzlxw7cFe1DeoQZbOHgim+RlWw5feHgvnAXSjYcpIUDLUs2DI7T55cfPQp2BcbmSEt2F1S
+ sID30b9g187IVgT4ihvC7RLoujYaIZ3BtTMFe0wO0LP5Hj7P3obPjuBvawSN25ew4NA69HEvwMFT
+ pakkwXWA1laOSwSzQQfW4YZM66EvJn92pCaf7dWks8npctYtKQn/tFxR6IA84L3A3p2rBLYU6sjc
+ UNtAwwM64spD61FCqJ1pq9q04VhLOssGMfm708RcYgcl8tA69EBaqFbi8hg4z4cjTaennemHTvOG
+ BHzyimsJkrxVvAPSASvHY8jxwabnA8t0fhrLLL+6hoaTBsEbdPwYc7o4UH5iNV6k7+A9GU0CRE32
+ /yDn56dl+T0PAV0HikqMp01NrD1PG0xAcR9IV8ChbJUCyTswJdTIN1088bNX9T9cgGk6P73kdgkC
+ 3/mADdj+yqEHH1qtI7+tTTCxBmBtQh11KKrqAPH0lNmOd7+E0ZIix6urME2HxEwX+WnCvmzQcRVL
+ viaFgPcWdUwL8AC/LBaLBEJNHiRuSCBIVLRBt7stSqEOsOGqRSiNA2u26GLGnO819/upHLd1B6hD
+ 3XriPvSy7x7Zi8b2OHrr++6gXzssW8/VUyN/Wn/cTwZlKuvM2h81elaSJl+vHHLfN1zmg7E77sjT
+ M7D2xVBh1pnGhlUwP1FHwGk62+GxYfAN1ix/tgYTuBoM54s8eQNwJTFw6sfOftIJLmqUQ+gw8Xgr
+ yRwYRgfbfi3nLezd1klXp8APBhG7IcqVdShJvNzy4OYw/jH4L7d9mnvBbFf4q5J0hc466scyK+1q
+ suYTmWazMmWjx9G/AAAA//8DAHlePumkCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6443918ea6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4686'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_f934e9303e471c2987446646c9933eb6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xW227bOBB991cMiH2UC8lW4stbm+5uukXQZFEU6FaBQVMjabIUyfLiRAjy7wvK
+ ieWoWcB6EGTOzDmHM0OOHycAjEq2BiYa7kVr5PT9jaj++P5dXvz8/PXyMr1r8PKmWV2gSL/9+Q9L
+ YoTe3qHwL1HvhG6NRE9a7c3CIvcYUbPFPF2ly7Ns0RtaXaKMYbXx01xPW1I0naWzfJouptnyObrR
+ JNCxNfyYAAA89u+oU5X4wNaQJi8rLTrHa2TrgxMAs1rGFcadI+e58iwZjEIrjypKV0HKI4PXWm4E
+ l3Ig3j+PR99DsriUG7Xaqa0QF+6b+Yva32efru4uH24+qiO+PXRnekFVUOKQpCP7YX09IgNgird9
+ 7FV31ecuGTtwW4cWlY+y2WPBJN+iLNj6x2PBnOfWF2ydJgVDVRZsPTtLnl1c9CnYFxOZISvYbVIw
+ jw/Rv2DXVpdBePgbd4T3a6DrRiuELIdrqwv2lByhzxYH+OXsbfjZCP5rg6Dw/jUsWDQWXdwLcHBU
+ K6pIcOUhmNryEkHv0IKxuCMdHPTN5N6N1Czzg5osT0+Xsw0kS/gZuCTfATnAB4G9O5cJ3JNvInNL
+ oYWWe7TEpYPgsATfWB3qRgc/1pLls0HM8vw0MZ+xgwq5DxYdkBIylLgeAy+XQ0mz+Wk1/dgp3pKA
+ T05yVUJJzkjeASmPteUxZFzY7GxgmS9OY8mXV9fQclIgeIuWjzHnqyPlJ3bj++wcPpBWJEA0ZMaQ
+ 50MDzrP8tCx/4N6j7UBShbHa1Mbec7TDBCR3nlQNHKogJZS8A11Bg3zXxYqPqzzPzgf+xeL0ltsn
+ CFznPLZg+iOHDpwPSkV+02ivYw/AVvsm6pBUNx5i9aS+n+5/Ca1Kihy/HIX5Ysh1np94NL/s0HIZ
+ W74hiYAPBlVMC3APv61WqwR8Qw5K3JFAKFHSDu3+tEiJysOOy4BQaQtG36ONGbOu19zvp7bcNB2g
+ 8k1wxJ3vZd8+sVcX29Pkre/bo/vaYhUcl88X+fP602EySF0bq7dudNGzihS5ZmORu/7CZc5rs+eO
+ PD0DC6+GCjNWt8ZvvP4XVQSMTTZ5niYvg2+wzpYvVq89l4PhbLVM3gDclOg59WPnMOkEFw2WQ+gw
+ 8XgoSR8ZJkfb/lXOW9j7rZOqT4EfDCLehlhujMWSxOstD24W4x+D/3M7pLkXzPaNv6lI1WiNpX4s
+ s8ps0i1Py2yWVxmbPE3+AwAA//8DAOCrSh6kCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644577bcf6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4545'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_fe8905e6098b2594d0c3a469c749402f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV224bOQx991cQwj7agcd2LvZb0wKL7TZINligBTqBQWs4M2w0kqqLnWmQf19o
+ JvE43hSIHwxZJM/hIWnqcQQguBArELLGIBurJh/+keXna7z9+ufcfNld776V9zK01/eXHPRXMU4R
+ ZvODZHiJOpGmsYoCG92bpSMMlFCz8/l0Ob04nWWdoTEFqRRW2TBZmEnDmiez6WwxmZ5Psovn6Nqw
+ JC9W8H0EAPDYfac8dUEPYgXT8ctNQ95jRWK1dwIQzqh0I9B79gF1EOPBKI0OpFPqOip1YAjGqLVE
+ pQbi/vN4cB6KhUqtP+rz7HMWf95k336c7+ZSP1T+y6/l7QFfD93aLqEyarkv0oF9f786IgMQGpsu
+ 9qq96mo3PnZAV8WGdEhpi8dcKNyQysXq+2MufEAXcrGajnNBusjFap6OnYtPPrm4tokZslzcjXMR
+ 6CH55+LGmSLKALe0ZdqtgG9qowmyBdw4k4un8QH6PNvDZ6fLt/FnR/j/1gSadq9xwZF15JMYQPBc
+ aS5Zog4QbeWwIDBbcmAdbdlED900+RNIYJvIqoCfERWHFtgDPUjquFGNYcehTnENxwYaDOQYlYfo
+ qYBQOxOr2sRwAn9TCyVhiI48sJYqFrQ6kpudDeWcTX+jd36k91OrsWEJf3mFuoCCvVXYAutAlcMU
+ csQyyw5Y5mfvY1lcXN1Ag6xBYkMOjzHn5wPmafY+zA/ZGVyy0SxB1myPIU9nw2xl72z+JYZArgXF
+ JaVWcZPa7nlLY1DoA+sKEMqoFBTYgimhJty2qV19s3t14FsfqAHbzSp58CFqnYJtbYJJDYSNCXUC
+ UVzVAVLpldlN+l/S6IJTgv7keKJnB/+Y5dn7VF1vyaFKw1azIqAHSzppAgzwx3K5HEOo2UNBW5YE
+ BSnekuvnVCnSAbaoIkFpHFizI5fkOt/l3OmpHNq6BdKhjp7Rhy7tuyfxaiM8jd463x0sOkdl9Kie
+ N+Dz/dN+pSpTWWc2/mhDipI1+3rtCH23qYQPxvbciadjEPHVNhbWmcaGdTD3pBPgPFv0eGJ4MQbr
+ bP682EUwAdVgOF28hL0CXBcUkLt9vX8iJMqaiiF0eCowFmwODKMD2f9P5y3sXjrr6j3wg0GmPUTF
+ 2joqWL6WPLg5Si/q79z2Ze4SFv3gr0vWFTnruHvPRGnX0w1Oi2y2KDMxehr9BwAA//8DAGTRwx/d
+ BwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64474daf76368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:26 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5086'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_7c8f79ea47d8803e1f50b67a3f38327e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA5RW32/bNhB+919xIPYoF5Zs17Lf2nUDmi1t0nUYuiowaOokXUqRLH84UYP87wPl
+ xHKcbPD0IMi8u+/7eDze+W4EwKhkK2Ci4V60Ro7fXIrqYjLP7afl2Qf7+cOX88vf079+Pvvl/a/Z
+ NUtihN5co/CPUa+Ebo1ET1rtzMIi9xhR08V0spzk82zRG1pdooxhtfHjmR63pGicTbLZeLIYp/lD
+ dKNJoGMr+DoCALjr31GnKvGWrWCSPK606Byvka32TgDMahlXGHeOnOfKs2QwCq08qihdBSkPDF5r
+ uRZcyoF499wdfA/J4lKuv4vL629/5vjujx8yXP99Jq7DFyWMPODbQXemF1QFJfZJOrDv11dHZABM
+ 8baPPe/O+9wlxw7c1qFF5aNsdlcwyTcoC7b6elcw57n1BVtNkoKhKgu2yubJg4uLPgX7aCIzpAW7
+ Sgrm8Tb6F+zC6jIID59wS3izArpotEJIZ3BhdcHukwP0bLGHz7OX4bMj+M8NgsKbp7Bg0Vh0cS/A
+ wVGtqCLBlYdgastLBL1FC8bilnRw0BeTe3WkJp/t1aSzyelyNoFkCd8Dl+Q7IAd4K7B35zKBG/JN
+ ZG4ptNByj5a4dBAcluAbq0Pd6OCPtaSzbBCTvz5NzG/YQYXcB4sOSAkZSlwdA+f5cKTp9GXg6RHw
+ u07xlgS8d5KrEkpyRvIOSHmsLY8hxwebzgeW6eI0lll+fgEtJwWCt2j5MeZ0eaB8fhrmm/Q1vCWt
+ SIBoyPwX5GJ+Wpbfcu/RdiCpwnja1Mbac7TFBCR3nlQNHKogJZS8A11Bg3zbxRN/9az+hwswzf5H
+ ye0SBK5zHlsw/ZVDB84HpSK/abTXsQZgo30TdUiqGw/x9KS+Ge9+Ca1KihzPrsI0G8pvusxPE/Zx
+ i5bLWPINSQS8NahiWoB7+Gm5XCbgG3JQ4pYEQomStmh3t0VKVB62XAaESlsw+gZtzJh1veZ+P7Xl
+ pukAlW+CI+58L/vqnj1pbPejl76vDvq1xSo4Lh8a+cP6/X4ySF0bqzfuqNGzihS5Zm2Ru77hMue1
+ 2XFHnp6BhSdDhRmrW+PXXn9DFQGn6WyHx4bBN1iz/NHqtedyMMyXefIC4LpEz6kfO/tJJ7hosBxC
+ h4nHQ0n6wDA62PZzOS9h77ZOqj4FfjCI2A2xXBuLJYmnWx7cLMY/Bv/mtk9zL5jtCn9dkarRGkv9
+ WGaVWU82fFKm2axK2eh+9A8AAAD//wMAnOK4yqQIAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64495dfcd6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4093'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_e1162c6d119f3f506e76c0e5d9fe65bb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vOQiG3YsI4kvRZEeYqCXFn0cgkKgyZXElOIS5MquEfjfC9GK
+ 5KAp0AsPMzuDmV0+ZwDCaLEBoRrJqvV29uGzqr7u74v9j0IdPq3vP37h4ua6ZfOt+X4r8l5BuydU
+ /KKaK2q9RTbkzrQKKBl71+XNanG3uF2vloloSaPtZbXn2Wq+nnEXdjRbLK/Xg7IhozCKDTxmAADP
+ 6e0zOo2/xQYW+QvSYoyyRrEZhwBEINsjQsZoIkvHIp9IRY7RpdgPaC29g+1VC09dZJCwN4E7aWFU
+ 5hAJtqDJXTE0co9QIVrj6pjDruOkbTAgMEGD1sOROjgYbkC6IzfG1QlxiHoOD3QAJR1sB/9EMWl5
+ fH+ZMGDVRdlvyHXWDvhprGyp9oF2ceBHvDLOxKYMKCO5vl5k8iKxpwzgZ1pt92pbwgdqPZdMv9D1
+ hsvibCemY07kaj2QTCzthBd3+RtupUaWxsaL0wglVYN6Uk53lJ02dEFkF53/DvOW97m3cfX/2E+E
+ UugZdekDaqNeF57GAvZf/V9j445TYBGPkbEtK+NqDD6Y9NnSKU/ZHwAAAP//AwATcEG1awMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644b0cc146368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:32 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '828'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_a2348351db73e0f8653924602ded6eab
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32+bMBB+56+w7plUEBKa8NZ17R6mbOqqaj9KhBxzAWfGZraR1kb53ydDCiTL
+ pPGArPu+776788HeIwR4DgkBVlLLqlpMbh7Y9ol/ijbiV/nt8eE+jqvY7oLvP27M43vwnUJtdsjs
+ m+qKqaoWaLmSHcw0Uosua3gdBctgMY+mLVCpHIWTFbWdRFfziW30Rk2CcDo/KkvFGRpIyLNHCCH7
+ 9u1qlDn+hoQE/lukQmNogZD0JEJAK+EiQI3hxlJpwR9ApqRF6cqWjRAjwColMkaFGIy7Zz86D4Oi
+ QmRfy2tmv6w+3O0Wdzy8fffxNgjE/dPryK9L/VK3BW0byfoBjfA+npyZEQKSVq129bJq5+afE6gu
+ mgqldWXDPgVBNyhSSJ73KRhLtU0hCfwUUOYpJNOlf6QYx0nhc+2cSZjC+uCPJC2x0yzDy5rpuaYl
+ dppwFl8WRU60PsBJGwfv0nk9uh2N28ZQcby2Y/zQ74FQRa3VxpxdK2y55KbMNFLTjheMVXXn7Xxa
+ B2hOVghqraraZlb9ROkSRmHc5YNhxQd0tjiCVlkqRqp45l/Il+VoKW93rF9rRlmJ+SAd1ps2OVcj
+ wBt1/Xc1l3J3nXNZ/E/6AWAMa4t5VmvMOTvteKBpdH+Af9H6KbcFg3kxFqtsy2WButa8/wa9g/cH
+ AAD//wMAHehISIIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644b7cbce6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '850'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_79fcd4ba4df484df8fbeedfac0a513c4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW+bMBR951dY95lUEEq38Nap++ikrsoqTZtKhBzjgDtje7ZZF0X575UNBZJl
+ U3hA1j3n3Ht8da93AULASsgQkBpb0ig+u16Szbfl9va5Tb+btH7m11V9Tz5+eag+L9cQOoVcP1Fi
+ X1UXRDaKU8uk6GCiKbbUZY3fJNEiepsmiQcaWVLuZJWys+QindlWr+Usiudpr6wlI9RAhh4DhBDa
+ +b/zKEr6BzIUha+RhhqDKwrZQEIItOQuAtgYZiwWFsIRJFJYKpxt0XI+AayUvCCY87Fw9+0m57FR
+ mPNi+cOar/i9uuHP72635Sfx9OvD74fkZlKvS71V3tCmFWRo0AQf4tlRMYRA4MZr77Z3vm/hMQHr
+ qm2osM427HLgeE15DtnjLgdjsbY5ZFGYAxVlDtl8EfYU4zg53CtXGcU5rPbhROKJnWYRn9bMjzWe
+ 2Gniy+i0KDkWdczeXTQ/155n9qr06kyDHbNTJUn0n1qrPRw0eh+cOq8m86PppjWY94PVx/fDpHJZ
+ KS3X5mjwYMMEM3WhKTZ+AMBYqbraro6vAO3BkIPSslG2sPInFS5hEl91+WBcwhFdJD1opcV8jF9G
+ i/BEvqKkFjO/BcPiEUxqWo7ScQFxWzI5AYLJrf92cyp3d3MmqnPSjwAhVFlaFkrTkpHDG480Td0b
+ 9S/a0GVvGMzWWNoUGyYqqpVmwysR7IMXAAAA//8DAGLIEpQkBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644be0aae6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:34 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1376'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_e52a5982d4ccf9a871b0288e8dd316a3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTY/TMBC951dYc05XSdMWmtty2ArYghBQPjaryHWmaYpjR7azUKr+d2Qnm6Sl
+ oOYQWfPem3kezfjgEQJFBjEBtqWGlRUf3X5gm69vxHL/exmsZqufwbvJE+7u8Mtnc2vAtwq53iEz
+ z6obJsuKoymkaGCmkBq0WcMXUTAPXk6jqQNKmSG3srwyo+hmOjK1WstREI6nrXIrC4YaYvLgEULI
+ wf2tR5HhL4hJ4D9HStSa5ghxRyIElOQ2AlTrQhsqGr8tyKQwKKxtUXM+AIyUPGWU875w8x0G575R
+ lPP0affp2/fF/p6adfRxtXt9rxeL5du7V4N6Tep95QxtasG6Bg3wLh6fFSMEBC2ddrlfur755wSq
+ 8rpEYaxtOCTA6Rp5AvHDIQFtqDIJxIGfAIosgXg891uKtpwE3le2MgkTeDz6A4kjNpp5eFkzPtc4
+ YqMJJ8FlUXQuapitu2B8rT3HbFXT2ZUGG2ajiqLgP7Uej3DS6KN36fw4mB+Fm1pT3g5WGz92k8pl
+ Xim51meDB5tCFHqbKqTaDQBoI6umtq3jKkB9MuRQKVlWJjXyBwqbMApnTT7ol7BH51ELGmko7+OT
+ YO5fyJdmaGjhtqBbPEbZFrNe2i8grbNCDgBvcOu/3VzK3dy8EPk16XuAMawMZmmlMCvY6Y17mkL7
+ Rv2L1nXZGQa91wbLdFOIHFWliu6V8I7eHwAAAP//AwAjdSYxJAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644c78c5c6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1822'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_9a64198d487e44541f29cc431a2e6e06
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW+bMBB+51dY90wqCKVdeOukTHlYNrVataklQsYYwmpszzZVsyj/fbKhQLJs
+ Cg/Iuu/77j6f7rz3EIK6gAQB2WJDGslmd/ekfLqPH3/v7sjqteBPD6v8V1vsmmD1+QF8qxD5T0rM
+ u+qKiEYyamrBO5goig21WcPbKFgEH+Lo1gGNKCizskqaWXQVz0yrcjELwnncK7eiJlRDgp49hBDa
+ u7/1yAv6BgkK/PdIQ7XGFYVkICEESjAbAax1rQ3mBvwRJIIbyq1t3jI2AYwQLCOYsbFw9+0n57FR
+ mLHsy020fsHLbz8+RcvXOPq+/Fg+vi1W+aRel3onnaGy5WRo0AQf4slJMYSA48Zp17u165t/SsCq
+ ahvKjbUN+xQYzilLIXnep6ANViaFJPBToLxIIZkv/J6iLSeFr9JWRmEKm4M/kThip1mE5zXzU40j
+ dprwOjgvik5FHbN3F8wvteeYvSq+udBgx+xUURT8p9bmAEeNPnjnzpvJ/ChathqzfrD6+GGYVCYq
+ qUSuTwYPyprXepspirUbANBGyK62reMqQHs05CCVaKTJjHih3CaMwpsuH4xLOKKLqAeNMJiN8etg
+ 4Z/JlxXU4NptwbB4BJMtLUbpuIC4LWoxAbzJrf92cy53d/OaV5ekHwFCqDS0yKSiRU2ObzzSFLVv
+ 1L9oQ5edYdA7bWiTlTWvqJKqHl4J7+D9AQAA//8DABLKo8IkBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644d3eabe6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1083'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_0719e79a09f230020e9f7340e0fe72d5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW+jMBC98yusOZOKjyQt3NJDVyttVPVSrVQq5BhD3DW2ZZvsJlH++8pAgaTZ
+ VTgga957M8+jGR89hIAVkCIgW2xJrfhs9UJKrDfYHn68rneCvHz/iB7rpLTN/CkG3ynk5oMS+6m6
+ I7JWnFomRQcTTbGlLmt4HwdJ8LCIH1qglgXlTlYpO4vvFjPb6I2cBWG06JVbyQg1kKI3DyGEju3f
+ eRQF/QMpCvzPSE2NwRWFdCAhBFpyFwFsDDMWCwv+CBIpLBXOtmg4nwBWSp4TzPlYuPuOk/PYKMx5
+ Pl89l5gcdo8/DX5avu6/bX/vDtH9alKvS71XraGyEWRo0AQf4ulFMYRA4LrVrvfrtm/+JQHrqqmp
+ sM42HDPgeEN5BunbMQNjsbYZpIGfARVFBmmU+D3FOE4Gz8pVRmEG7yd/ImmJnSYJr2uiS01L7DTh
+ PLguii9FHbN3F0S32muZvWqxvNFgx+xUcRz8p9b7Cc4affKund8n86Np2RjM+8Hq46dhUrmslJYb
+ czF4UDLBzDbXFJt2AMBYqbrark5bAZqzIQelZa1sbuUvKlzCOFx2+WBcwhFN4h600mI+xudB4l/J
+ lxfUYtZuwbB4BJMtLUbpuIC4KZicAN7k1l/dXMvd3ZyJ6pb0I0AIVZYWudK0YOT8xiNNU/dG/Ys2
+ dLk1DGZvLK3zkomKaqXZ8Ep4J+8vAAAA//8DAFgVUFckBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644dbb9c36368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1670'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_bf9b70793b0ed36bb9367a7150ca4be5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTWvcMBS8+1e86tJLHLyOu0n2UgotZAmU9lASUoLRSs+2UllPSM+k27D/vfij
+ ay9poRcdZt4MM4NeEgBhtNiAUI1k1XqbfviqKvWgnx623z4+392aX3We3X76cv85v5PX4qxX0O4J
+ Ff9RnStqvUU25EZaBZSMvevq8iK7zq7eFdlAtKTR9rLac1pQmmd5kWZXabaehA0ZhVFs4HsCAPAy
+ vH1Ep/Gn2MBgMyAtxihrFJvjEYAIZHtEyBhNZOlYnM2kIsfohtQ3aC29ge3bFhoMCNJpCCj1Hpig
+ QevP4YaeQUkHWxjNYE8dMGm5f780DVh1UfadXGfthB+OKS3VPtAuTvwRr4wzsSkDykiuTxSZvBjY
+ QwLwOKzRnRQUPlDruWT6ga43XBWjnZjnX5DriWRiaWf8Ylrw1K3UyNLYuFhTKKka1LNynl522tCC
+ SBadX4f5m/fY27j6f+xnQin0jLr0AbVRp4Xns4D95/zX2XHjIbCI+8jYlpVxNQYfzPg/Kl9e5rtd
+ JdfZqhDJIfkNAAD//wMAKQRLvygDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644e71da96368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:40 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '340'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_e580887d2d7efecdafd98b613b891132
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVUWvjOBB+z68YxD0mbRw7bRJCoLsHpSy9dkvvOG5dgiqP7bmTJa0kuzWl/32R
+ 3Y3TXBaah6BoZr5vPs1k5mUEwChjK2Ci5F5URk4uvopcxFcX7U1SNLfq+1//TBcxT74Usb66Z+MQ
+ oR//ReF/Rp0IXRmJnrTqzcIi9xhQo/N4upwu5sm0M1Q6QxnCCuMniZ7MprNkMl1MpmdvgaUmgY6t
+ 4NsIAOCl+w4pqgyf2Qo6mO6mQud4gWy1cwJgVstww7hz5DxXno0Ho9DKowpZq1rKPYPXWm4Fl3Ig
+ 7j8ve+fhnbiU2/tS4dfLP/40d8nf9zeXn/Hu833rL5s9vh66NV1Cea3E7n327Lv71QEZAFO86mKv
+ 2+vu2caHDtwWdYXKh7TZS8okf0SZstW3l5Q5z61P2Wo6ThmqLGWrOBw7Fxd8UnZjAjPMUvYwTpnH
+ 5+CfsnUZbW6tzmrh4Q4bwqcV0G2pFUKUwK3V69My2qTsdbxHE893PNF8fpwoPiQym/sSQeHTe3yw
+ aCy6IAw4OCoU5SS48lCbwvIMQTdowVhsSNcOuqZyJxDAHmuSGXyvuSTfAjnAZ4EdPZdjeCJfhriK
+ 6goq7tESlw5qhxn40uq6KHXtT+ALtpAj97VFB6SErDNcrU/NoerobHjeWfQL2dGh7Fpu0lT9rOJa
+ 0ub3VvGKBFw5yVUGGTkjeQukPBaWB5T1qaRD9tlsjz2ZfpBd0iZZXN9CxUmB4BVafhQ8GSo6O5t/
+ HPwiOoNPpBUJECWZHruXuz4N0g94zvc6dBF/uHM+ce/RtiApx1BnqkLPOGpwDJI7T6oADnktJWS8
+ BZ1DibxpQ637Tumlg2udxwpM1/DowPlaqRBsSu11qD48al8GEElF6SEUSOqnSf9LaJVRyNGdHOmP
+ eLHYiZvPZh8Wd9Og5TI0bEkSAZ8NqiANuIfflsvlGHxJDjJsSCBkKKlB2/e6lKg8NFzWCLm2YPQT
+ 2qDaui71TlZhuSlbQOXL2hF3fpf9wyt7N2VeR8fOD3vD02JeOy7fpurb/etuTEtdGKsf3cHUZTkp
+ cuXWInfd9GPOa9NzB56OgdXvJjwzVlfGb73+D1UAjKOkx2PDAhqss/Plm9Vrz+VgmC/j8RHAbYae
+ U7cDdmtHcFFiNoQO64fXGek9w2hP9v/TOYbdSydVfAR+MIgwzzDbGosZifeSBzeLYUH/ym33zF3C
+ rP8PbHNSBVpjqduRLDfbaL7MFnESCcFGr6MfAAAA//8DAONap70sCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de644ea49386368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5140'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c1c1eca5922a35997188c4fe3007fd08
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVbW/bNhD+7l9xIPbRTixbdhLDMJBiQLF2QdOtWAdUgUFTJ+kSimT5YkcL8t8H
+ SonleB4QfzAo3t3z3HNHHp8GAIxytgAmKu5FbeTo+qsoqrG4/Z3+fDD597oJ138L13za0JdvH9kw
+ RujNPQr/GnUmdG0ketKqMwuL3GNETS6m46vx5SydtYZa5yhjWGn8KNWjyXiSjsaXo/H8JbDSJNCx
+ BfwYAAA8tf8xRZXjI1vAePi6U6NzvES22DsBMKtl3GHcOXKeK8+GvVFo5VHFrFWQ8sDgtZZrwaXs
+ ibvf08G6rxOXcv2xoQt/Xaf4ffLg/vlr9+me5j/vHz4f8HXQjWkTKoIS+/oc2Pf7iyMyAKZ43cbe
+ NDdt2YbHDtyWoUblY9rsKWOSb1BmbPHjKWPOc+szthgPM4Yqz9hiGpeti4s+GftiIjMkGbsbZszj
+ Y/TP2LJKVrdW50F4+AO3hLsF0G2lFUKSwq3Vy/MqWWXseXhAM53teZLZ7DTR5JjIrL5VCAp3b/HB
+ orHoojDg4KhUVJDgykMwpeU5gt6iBWNxSzo4aA+VO4MItgkkc/gZuCTfADnAR4EtPZdD2JGvYlxN
+ oYaae7TEpYPgMAdfWR3KSgd/Bp+xgQK5DxYdkBIy5LhYnptj1cm8L+8kvTgte3osO8hVlqnXLi4l
+ rX5tFK9JwG9OcpVDTs5I3gApj6XlEWV5Luk4Kr28uYWakwLBa7T8lM91MocPpBUJEBWZQ5fleUzk
+ raDJbNKfl9nFu/v4gXuPtgFJBcaqUx076GiLQ5DceVIlcCiClJDzBnQBFfJtEyvf9a1TAK5xHmsw
+ 7fFDB84HpWKwqbTXsRew0b6KIJLKykMsl9S7UfcltMop5ujOTnRrOu/FpZfpO2+DWX3ZouUyHp+K
+ JAI+GlRRGnAPv1xdXQ3BV+Qgxy0JhBwlbdF2J09KVB62XAaEQlsweoc2qrauTb2VVVpuqgZQ+So4
+ 4s7vs797Zm/u/PPg1PruYJRZLILj8mXGvew/74em1KWxeuOOZiArSJGr1ha5a2cRc16bjjvytAws
+ vJm3zFhdG7/2+gFVBJwmaYfH+uegt8brMXiZtp7L3jCbJ8MTgOscPad2Iu8fAcFFhXkf2j8GPOSk
+ DwyDA9n/TecUdiedVPke+N4g4nTBfG0s5iTeSu7dLMbn8v/c9mVuE2bdHVgXpEq0xlL7YrHCrJPZ
+ VX45TRMh2OB58C8AAAD//wMASFbysboHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6450b9efa6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4371'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_1d6f7a6b831ffb407ea6c401914239d6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227jNhB991cMiD7aieVLfIFhIEGARdvdbrootgVWgcFQI2lSiuTyYlsb5N8L
+ SonluF4gfjBozsw5czjjmaceAKOMLYGJkntRGTm4/lPkSuGHfPzFJqPpTX1b8a9/3+1+fJUzy/ox
+ Qj88ovCvURdCV0aiJ61as7DIPUbUZDYeLobz6TRpDJXOUMawwvjBRA9Gw9FkMJwPhlcvgaUmgY4t
+ 4VsPAOCp+Y4pqgz3bAnD/utNhc7xAtny4ATArJbxhnHnyHmuPOt3RqGVRxWzVkHKI4PXWm4El7Ij
+ bj9PR+funbiUm/njLPzxcbcTj2axDx+r4sNv32+v9/8c8bXQtWkSyoMSh/c5sh/ulydkAEzxqon9
+ VH9qnq1/6sBtESpUPqbNnlIm+QPKlC2/PaXMeW59ypbDfspQZSlbjuOxcXHRJ2WfTWSGUcru+ynz
+ uI/+KVuVyfrO6iwID19wS7hbAt2VWiEkE7izenVZJuuUPfePaMbTA08ynZ4nGp8SmfVfJYLC3Vt8
+ sGgsuigMODgqFOUkuPIQTGF5hqC3aMFY3JIODpqmchcQwR4CyQy+By7J10AOcC+woeeyDzvyZYyr
+ KFRQcY+WuHQQHGbgS6tDUergL+B3rCFH7oNFB6SEDBkuV5fmVHVy1T3vKPmJ7ORUdpDrNFWvVVxJ
+ Wt/Wilck4FcnucogI2ckr4GUx8LyiLK6lHTKPhodsU+G72SXtJ7MP91BxUmB4BVafhZ80lV0dDV9
+ P/h1cgU3pBUJECWZFruVu7qM0k94ZkcdOp29u3NuuPdoa5CUY6wzVbFnHG2xD5I7T6oADnmQEjJe
+ g86hRL6tY63bTmmlg6udxwpM0/DowPmgVAw2pfY6Vh8etC8jiKSi9BALJPVu0P4SWmUUc3QXZ/pj
+ fDU6iJss5u8W93mLlsvYsCVJBNwbVFEacA+/LBaLPviSHGS4JYGQoaQt2rbXpUTlYctlQMi1BaN3
+ aKNq65rUG1mF5aasAZUvgyPu/CH7+2f2Zso8986d74+Gp8U8OC5fpurL/fNhTEtdGKsf3MnUZTkp
+ cuXGInfN9GPOa9NyR56GgYU3E54ZqyvjN17/iyoCjpNJi8e6BdRZR7PFi9Vrz2VnmC7G/TOAmww9
+ p2YHHNaO4KLErAvt1g8PGekjQ+9I9v/TOYfdSidVvAe+M4g4zzDbGIsZibeSOzeLcUH/zO3wzE3C
+ rP0PbHJSBVpjqdmRLDebZLrI5uNJIgTrPff+AwAA//8DADKS1SMsCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de645291f2e6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:55:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4934'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_4bae2e61af0a814df8cb3c28bb1bb27b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVbW/jNgz+nl9BCPvotHHemgRBgOuKYeutuO4w7Aaci0CVaZt3sqRKslNf0f8+
+ yG7jNMsBzYdAEcnn4SMy5NMAgFHKVsBEwb0ojRx++Etk7vv1wn2x/9Jv3xY3evTw5+WXm1398Jiz
+ KETo+28o/GvUmdClkehJq84sLHKPATW+mIyWo8VsNm8NpU5RhrDc+OFUD8ej8XQ4WgxH85fAQpNA
+ x1bwdQAA8NR+hxRVio9sBaPo9aZE53iObLV3AmBWy3DDuHPkPFeeRb1RaOVRhaxVJeWBwWstt4JL
+ 2RN3n6eDc/9OXMrt/PfJ7efrByT5z4+L6/iq/jj5leKrhwO+DroxbUJZpcT+fQ7s+/vVERkAU7xs
+ Y2+am/bZomMHbvOqROVD2uwpYZLfo0zY6utTwpzn1idsNYoShipN2GoSjq2LCz4J+2QCM4wTdhcl
+ zONj8E/Yuog3t1anlfDwGWvC3QrottAKIZ7CrdXr8yLeJOw5OqCZzPY88Wx2mmhyTGQ2fxcICndv
+ 8cGiseiCMODgKFeUkeDKQ2Vyy1MEXaMFY7EmXTlom8qdQQC7r0im8FBxSb4BcoCPAlt6LiPYkS9C
+ XElVCSX3aIlLB5XDFHxhdZUXuvJn8BEbyJD7yqIDUkJWKa7W5+ZYdTzvn3cc/0R2fCy7kpskUa9V
+ XEvaXDWKlyTgDye5SiElZyRvgJTH3PKAsj6XdMw+Hh+wT0fvZJe0mS5ubqHkpEDwEi0/CT7tKzqe
+ z94P/iGewyVpRQJEQabD7uSuz4P0I56Lgw6dXby7cy6592gbkJRhqDOVoWcc1RiB5M6TyoFDVkkJ
+ KW9AZ1Agr5tQ665TOungGuexBNM2PDpwvlIqBJtCex2qD/faFwFEUl54CAWSejfsfgmtUgo5urMT
+ /TGZj/fipsvFu8V9qtFyGRq2IImAjwZVkAbcwy/L5TICX5CDFGsSCClKqtF2vS4lKg81lxVCpi0Y
+ vUMbVFvXpt7Kyi03RQOofFE54s7vs797Zm+mzPPg1PnuYHhazCrH5ctUfbl/3o9pqXNj9b07mros
+ I0Wu2Frkrp1+zHltOu7A0zKw6s2EZ8bq0vit199RBcBJPO3wWL+Aeuv4Yvli9dpz2Rtmy0l0AnCb
+ oufU7oD92hFcFJj2of364VVK+sAwOJD9/3ROYXfSSeXvge8NIswzTLfGYkrireTezWJY0D9z2z9z
+ mzDr/gPbjFSO1lhqdyTLzDaeLdPFZBoLwQbPg/8AAAD//wMATU5D+iwIAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6455018776368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5211'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_07452c9c3dbf41c939c7c0dcab64ac5f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/jNgx+z19BCHt02ji/mgRBgHb3cMPQXW69YgPORaDKtM1NlnSSnMQt+r8P
+ sts4zXJA8xAoIvl9/CiGfO4BMErZApgouBelkf3rryKr8cdfg/LX4v7+2ydzd5193j0N7tfl+G8W
+ hQj9+A8K/xZ1IXRpJHrSqjULi9xjQI2vRoP5YDaZDhtDqVOUISw3vj/W/eFgOO4PZv3B9DWw0CTQ
+ sQV87wEAPDffIUWV4p4tYBC93ZToHM+RLQ5OAMxqGW4Yd46c58qzqDMKrTyqkLWqpDwyeK3lRnAp
+ O+L283x07urEpdzQzaz8XO6fjPmB+fppsvtjf5dN7qZHfC10bZqEskqJQ32O7If7xQkZAFO8bGJv
+ 69umbNGpA7d5VaLyIW32nDDJH1EmbPH9OWHOc+sTthhECUOVJmwxCsfGxQWfhH0xgRmGCXuIEuZx
+ H/wTtizi1drqtBIe/sQt4W4BtC60QojHsLZ6eVnEq4S9REc0o8mBJ55MzhONTonM6luBoHD3Hh8s
+ GosuCAMOjnJFGQmuPFQmtzxF0Fu0YCxuSVcOmqZyFxDAHiuSKfyouCRfAznAvcCGnssIduSLEFdS
+ VULJPVri0kHlMAVfWF3lha78BfyONWTIfWXRASkhqxQXy0tzqjqeduUdxj+RHZ/KruQqSdTbKy4l
+ rT7Vipck4DcnuUohJWckr4GUx9zygLK8lHTKPhwesY8HH2SXtBrPbtdQclIgeImWnwUfdy86nE4+
+ Dn4dT+GGtCIBoiDTYrdyl5dB+gnP1VGHXg0+3Dk33Hu0NUjKMLwzlaFnHG0xAsmdJ5UDh6ySElJe
+ g86gQL6tw1u3ndJKB1c7jyWYpuHRgfOVUiHYFNrr8PrwqH0RQCTlhYfwQFLv+u0voVVKIUd3caY/
+ RlddEcfz2YfFfdmi5TI0bEESAfcGVZAG3MMv8/k8Al+QgxS3JBBSlLRF2/a6lKg8bLmsEDJtwegd
+ 2qDauib1RlZuuSlqQOWLyhF3/pD9wwt7N2VeeufOD0fD02JWOS5fp+rr/cthTEudG6sf3cnUZRkp
+ csXGInfN9GPOa9NyB56GgVXvJjwzVpfGb7z+F1UAHMXjFo91C6izDq/mr1avPZedYTIfRWcANyl6
+ Ts0OOKwdwUWBaRfarR9epaSPDL0j2f9P5xx2K51U/hH4ziDCPMN0YyymJN5L7twshgX9M7dDmZuE
+ Wfsf2GSkcrTGUrMjWWY28WSezkbjWAjWe+n9BwAA//8DAK/BUcIsCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de645729e326368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5475'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_159892a2b1b1a1ee8c5af0ca7c917dd2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTW/UMBS851c8fOGyqbJJttvuBbV8lIoTCFQkhCKv/ZIYHD/Lfimsqv3vKNnt
+ JhVF4uLDzJvRzMgPCYAwWmxAqFay6rxNrz6qpvx88+bth7v81/366/VN/eX+9Sp/d/3pKheLQUHb
+ H6j4UXWmqPMW2ZA70CqgZBxcl+siu8wuVucXI9GRRjvIGs9pmXIftpTmWV6mWZlml0d1S0ZhFBv4
+ lgAAPIzvkNNp/C02kC0ekQ5jlA2KzekIQASyAyJkjCaydCwWE6nIMbox+nu0ll7A7csOWgwITNCi
+ 9bCj/gzuWsmgpINb0AQ1hQEGJi13r+Z+Aes+yqGT66094vtTQEuND7SNR/6E18aZ2FYBZSQ3hIlM
+ XozsPgH4Pg7RP+kmfKDOc8X0E91guCwPdmKaf0aujyQTSzvhxXLxjFulkaWxcTakUFK1qCfltLrs
+ taEZkcw6/x3mOe9Db+Oa/7GfCKXQM+rKB9RGPS08nQUcPue/zk4bj4FF3EXGrqqNazD4YA5fo/bV
+ Sm+LrDgv6lok++QPAAAA//8DAC/sBQ4oAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64595dd236368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '776'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_dba235ee87f6070144138cffe5a22ac1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUyW7bMBCG734KYs5yoX275dIiQIMsPQRtFAg0RS0tRbIkBSQw/O6FZEdUHKeQ
+ D4LAf76Zf8bi7DcIQVdBjoC02JBesu3VPWmi7zePSXX7tblS/fWQVDr2vmU/W9yCMxJi95sS80Z9
+ IaKXjJpO8KNMFMWGjlm9JHAzN43ibBJ6UVE2Yo0023BrBrUTW9/1w60bbt3sRLeiI1RDjp42CCG0
+ n56jT17RF8iR67yd9FRr3FDI5yCEQAk2ngDWutMGcwOOFYnghvLROh8YWwhGCFYSzJgtfPztF+92
+ WJix8tfD/a87eX3/cNf+jR7YNf6BX6rHuF/UO6Z+lZOheuBkHtJCn8/zs2IIAcf9xN683kyzc84D
+ sGqGnnIz2oZ9AQzvKCsgf9oXoA1WpoDc85wCKK8KyP3YOcXoMaiAWzmWRl4BzwdnwSSWST9h/HPG
+ 88MZ8oLsMhWcU34QWXuRu9Kfn1kq8NyVDoMosFScrnQYxravMMlWOowW04g+m8YHh1GazFTs+isd
+ Jp7tK/HTtf9xsqDSdKXDNIjtpxF5/3H4fIB3n+thc+n9eXELFa0Hjdnpep7OD/N9Z6KRSuz02fWF
+ uuOdbktFsZ6uEWgj5LH2WGeqAMO7VQFSiV6a0og/lI8JAy8+5gO7zqzqpcFJNcJgZoUwy5wLCcuK
+ GtxNy2TeXwSTllYWtXsMD1UnFsJm0fZHO5dyH1vveLMmvRUIodLQqpSKVh1537INU3Rc95+FzWOe
+ DIN+1Yb2Zd3xhiqpumnZQi3LqNoFbhAHdQ2bw+YfAAAA//8DAKg2tVt6BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6459c4d8a6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5221'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_a0d4a5f57afd71a7e30c9f84fc99e1f2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUUW+bMBDH3/MprHsmE2AgwFvVqdImVds6adpWKuQYQ8iMbWEjtY3y3ScgxSRL
+ J3hAyHe/u7//4u6wQgjqAlIEdEcMbRRf33yj1c2n2/D3s/vgVvv49Qd5VQbvTU1uDTg9Ibd7Rs0b
+ 9YHKRnFmainGMG0ZMayv6m2wm7hxuAmGQCMLxnusUmYdrE3XbuXad/1g7QZrNznRO1lTpiFFjyuE
+ EDoM716nKNgzpMh13k4apjWpGKRTEkLQSt6fANG61oaIUfMpSKUwTPTSRcf5LGCk5DklnNvG43OY
+ fVuzCOf58879SsqHz2J/5//8eId3WN9txa/vs35j6Rc1CCo7QSeTZvHpPL1ohhAI0gzs/cv94J1z
+ mUDaqmuYML1sOGTAyZbxDNLHQwbakNZkkHqekwETRQapHzmnHN0nZfBF9a2Rl8HT0ZkxG8vE7zD+
+ JeP5wQR5OLlO4UvKx6GVF7oL9fmJpbDnLlSIA2ypMF6oMEiiiQoHM5coDMMZtfEWKoxc62HkLfUw
+ jqwbcbzUw8S3VBIs9TDZWA+T+H8ePh3h7Hc9rq59P82msGVlpwk/jefp/DjNO5eVauVWX4wvlLWo
+ 9S5vGdHDGIE2Uo29+z5DB+jOVgWoVjbK5Eb+YaIviL1orAd2ndmoF+NT1EhDuA0ESeJcKZgXzJB6
+ WCbT/qKE7lhhUbvHSFfUchZYza79r5xrtcer16JaUt4GKGXKsCJXLStqen5lm9ayft2/lzbZPAgG
+ /aINa/KyFhVrVVsPyxZKlYfFFrs4wmUJq+PqLwAAAP//AwDoPRbMegYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de645be29ad6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6398'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_549d48d3c2c6417270b877501c97d5b5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUTY+bMBCG7/kV1pxJBZjvWw9Ve9g03W1Xu9WyQo4xhNbYCJt20yj/vYJkMUmz
+ FRwQ8jvPzGvjmf0CIahySBDQLdG0bvjy/S0tP0X48WW98r+7a/fGeQxviu5LcOf5L2D1hNz8YFS/
+ Uu+orBvOdCXFUaYtI5r1WZ0Q27Ed+ZEzCLXMGe+xstFLb6m7diOXru16S9tb2vGJ3sqKMgUJelog
+ hNB+ePc+Rc5eIEG29bpSM6VIySAZgxCCVvJ+BYhSldJEaLCMSKXQTPTWRcf5RNBS8owSzk3h47Of
+ fJvDIpxnH/7svsV3v4uH+93951+Pm06sPpKvwe2k3jH1rhkMFZ2g4yFN9HE9uSiGEAhSD+xqtxrO
+ zroMIG3Z1Uzo3jbsU+Bkw3gKydM+BaVJq1NIHMdKgYk8hcQNrFOM6oNSWDd9aeSk8HywJkxomOgN
+ xr1kHNcbIQfH1yl8SbnYN/Z8e6Y/NzYUduyZDrEXGSrAMx16vtmXF8QzHfqOoXw3nunQD0JDRe5M
+ h0GIRyqIorn/GBsq9KKZDsPhPpyuhu38x+HzAc6u62Fx7ft50oUtKzpF+Kk9T+uHsd+5LJtWbtRF
+ +0JRiUpts5YRNbQRKC2bY+2+zlABurNRAU0r60ZnWv5kok+IneCYD8w4M6oT4ZOqpSbcCF4cW1cS
+ ZjnTpBqGyTi/KKFblhvUzDHS5ZWcCIvJtv+1cy33ceuVKOekNwKlrNEsz5qW5RU937IJa1k/7t8K
+ G495MAxqpzSrs6ISJWubthqGLRRN5ucbbOMAFwUsDou/AAAA//8DAJMdt8d6BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de645e70e216368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4830'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_082d4650d908946d5311e9e2035f73d5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUTY/aMBCG7/wKa86hyhcQclupUqXVUvpxabtBkXGcYHBs13a0rBD/vUpg48Cy
+ FTlEkd95Zl47Mz6MEAJWQIqAbLAlteLjh++kWkQ/lzxemG9Ur9nj8sef37vJTu0me/BaQq63lNg3
+ 6hORteLUMilOMtEUW9pmDWaRP/eTSTLthFoWlLdYpew4HttGr+U49MN47Mdjf36mN5IRaiBFzyOE
+ EDp079anKOgeUuR7bys1NQZXFNI+CCHQkrcrgI1hxmJhwXMikcJS0VoXDecDwUrJc4I5d4VPz2Hw
+ 7Q4Lc54n21nz9enlhWzVfN881dWXx7+fH/a/BvVOqV9VZ6hsBOkPaaD36+lVMYRA4LpjF6+L7uy8
+ 6wCsq6amwra24ZABx2vKM0ifDxkYi7XNIA0CLwMqigzScOqdY0wblMFStaVRkMHq6A2ZyayHglly
+ mwrfUYnvqPn0XmqeOIOd2XuoMIh6Kgo+cBhdU1HoHMaz8E4qnsU9NQ3/V2t1hItfdBzd+l4NOk/T
+ sjGYn1vyvH7se5zLSmm5NlctCyUTzGxyTbHpWgeMlepUu63TVYDmYjxAaVkrm1u5o6JNGAXTUz5w
+ I+zUwE/OqpUWcyfEYezdSJgX1GLWDVA/swSTDS0c6mYXNwWTA2E02PZ7O7dyn7bORHVPeicQQpWl
+ Ra40LRi53LIL07S94j4K64+5Mwzm1Vha5yUTFdVKs+6CgVLlk2Id+dE0KksYHUf/AAAA//8DALaD
+ NX5uBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6460678c86368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3212'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_f680806beb067a7e1a38c4477b99b8aa
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUTW+jMBCG7/kV1pzJiq8Qwq3aw2ql7baVVqraUiFjDHFrbK9tqkRR/vsKkmKa
+ pqtwQMjvPDOvzYx3M4SAVZAhIGtsSav4/OqONLd2dbvp7GOyFeJvKVn4p/q5+fHYVuD1hCxfKLHv
+ 1DciW8WpZVIcZKIptrTPGiwjf+Wni3Q1CK2sKO+xRtl5PLedLuU89MN47sdzf3Wk15IRaiBDTzOE
+ ENoN796nqOgGMuR77ystNQY3FLIxCCHQkvcrgI1hxmJhwXMikcJS0VsXHecTwUrJC4I5d4UPz27y
+ 7Q4Lc1683v1m6c2vh80bL+/t/femTl4e3l4Xk3qH1Fs1GKo7QcZDmujjenZSDCEQuB3Y6+31cHbe
+ aQDWTddSYXvbsMuB45LyHLKnXQ7GYm1zyILAy4GKKocsTLxjjOmDcrhRfWkU5PC896bMYjlCwTI9
+ T4WfqNR31Cq5lFqlzuBg9hIqDKKRioIvHEanVBQ6h/EyvJCKl/FIJeH/aj3v4cMv2s/OfT9POk/T
+ ujOYH1vyuL4fe5zLRmlZmpOWhZoJZtaFptgMrQPGSnWo3dcZKkD3YTxAadkqW1j5SkWfMAqSQz5w
+ I+zUwE+PqpUWcyfEYeydSVhU1GI2DNA4swSTNa0c6mYXdxWTE2E22fZnO+dyH7bORHNJeicQQpWl
+ VaE0rRj5uGUXpml/xX0VNh7zYBjM1ljaFjUTDdVKs+GCgVoVi6qM/CiJ6hpm+9k/AAAA//8DAACE
+ FiRuBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6461c4aae6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3976'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_eccf55fb5d44e2e2274a22760a988a80
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWrbQBC96yume+nFKpLsEtuXkFsDpaWl4OJQxHp3JG2y2tloRzgm+N/Lyo6l
+ 0BRy2cN78x7vzexzAiCMFmsQqpGsWm/Tmx+q/qUfi9Xv7eZ+tX36uX38ujx803313W7ELCpod4+K
+ X1SfFLXeIhtyJ1p1KBmja341z1bZ8vNqPhAtabRRVntOF5S2xpm0yIpFml2l+fKsbsgoDGINdwkA
+ wPPwxpxO45NYQzZ7QVoMQdYo1pchANGRjYiQIZjA0rGYjaQix+iG6LcfW9BkXA17tHYG3Ej3ED7A
+ F9qD3FHPcKD+GjaNZFDSwS00aH0EYW+4ASYtD9dT8w6rPshY0PXWnvHjJa2l2ne0C2f+glfGmdCU
+ HcpALiYLTF4M7DEB+DNspX9VVPiOWs8l0wO6aJgvTnZivMWEXJ5JJpZ2xOfF7A23UiNLY8Nkq0JJ
+ 1aAeleMJZK8NTYhk0vnfMG95n3obV7/HfiSUQs+oS9+hNup14XGsw/hT/zd22fEQWIRDYGzLyrga
+ O9+Z0z+pfJntZKbzYlHlIjkmfwEAAP//AwABgIldNQMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6463688a66368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:34 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '393'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_aa9042e8ec85833403b25327c53a3274
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xWTW/bOBC9+1cMiD3KhWQrtuxb0haLoEiTXWxPVWDQ1EgalyJVfjhRg/z3BeXE
+ ctQUsA6CzJl573E4nPHTBIBRwdbARM2daFo5vfxHVN+uLf2MP88+1l/9wu52u0v1Uc5//FqxKETo
+ 7Q6Fe436IHTTSnSk1cEsDHKHATVZzuNVnF2s0t7Q6AJlCKtaN031tCFF01k8S6fxcppkL9G1JoGW
+ reH7BADgqX8HnarAR7aGOHpdadBaXiFbH50AmNEyrDBuLVnHlWPRYBRaOVRBuvJSnhic1nIjuJQD
+ 8eF5OvkeksWl3Fw1Nq7ULtl9/XZLn/4urjOjv1zZxQnfAbpre0GlV+KYpBP7cX09IgNgijd97E13
+ 0+cuGjtwU/kGlQuy2VPOJN+izNn6+1POrOPG5WwdRzlDVeRsPbuIXlxs8MnZbRuYIcnZfZQzh4/B
+ P2d3RhdeOPgX94QPa6C7WiuEJIU7o3P2HJ2gz5ZH+Gz2PvxsBP9fjaDw4S0sGGwN2rAX4GCpUlSS
+ 4MqBbyvDCwS9RwOtwT1pb6EvJvthpCZLj2qSND5fztaTLOCn55JcB2QBHwX27lxG8ECuDswN+QYa
+ 7tAQlxa8xQJcbbSvau3dWEuSzgYx2eI8MV+wgxK58wYtkBLSF7geA2fZcKTJ/H3g+Qj4U6d4QwKu
+ reSqgIJsK3kHpBxWhoeQ8cEmFwPLfHkeS5rd3EHDSYHgDRo+xpyvTpRfnId5mSzgirQiAaKmdgy5
+ GApwnqTnZfmKO4emA0klhtOmJtSepT1GILl1pCrgUHopoeAd6BJq5PsunPj4lOfJYuBfLs8vuUOC
+ wHbWYQNtf+XQgnVeqcDf1trpUAOw1a4OOiRVtYNwelI/TA+/hFYFBY7frsJ8OeQ6Tc+8mrd7NFyG
+ kq9JIuBjiyqkBbiDv1arVQSuJgsF7kkgFChpj+ZwW6RE5WDPpUcotYFWP6AJGTO219zvpzK8rTtA
+ 5WpviVvXy75/Zm8a2/Pkve/7k35tsPSWy5dG/rL+fJwMUlet0Vs7avSsJEW23hjktm+4zDrdHrgD
+ T8/A/Juhwlqjm9ZtnP6BKgCGIpu8TJPXwTdYZ9mr1WnH5WC4WGXRO4CbAh2nfuwcJ53gosZiCB0m
+ HvcF6RPD5GTbv8t5D/uwdVLVOfCDQYRuiMWmNViQeLvlwc1g+GPwJ7djmnvB7FD4m5JUhaY11I9l
+ VrabeMvjIpmlZcImz5P/AQAA//8DANi/AQqkCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6463a0c646368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5645'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1bb7efcded6b2d4a27933b97ea438322
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVzW7jNhC++ykGRI92ICneRPEtQbtFWwSb3RbtYRUYY2okTUuRDEnZEYK8e0Ep
+ ayneLBAdBJkz8/1w6OHTAkBwKTYgZINBtlatrj/LGg8fTXnzIO3uS5LdfXz4JUn+7MM/6Y1Yxgqz
+ +5dk+FZ1Jk1rFQU2egxLRxgooqaX58lVkl8kyRBoTUkqltU2rNZm1bLmVZZk61VyuUrzl+rGsCQv
+ NvB1AQDwNLyjTl3So9jAgDWstOQ91iQ2xyQA4YyKKwK9Zx9QB7GcgtLoQDpK151Ss0AwRm0lKjUR
+ j8/T7HvaLFRq21+3v8u/ExPy3ef88sIok/Cv+XU94xuhezsIqjotj5s0ix/XNydkAEJjO9Te9rfD
+ 3i1PE9DVXUs6RNniqRAKd6QKsfn6VAgf0IVCbJJlIUiXhdhkH5YvKT7mFOKTjcyQFuJ+WYhAjzG/
+ EHfOlJ0M8IX2TIcN8F1jNEG6hjtnCvG8nKFnl0f4PHsbPjuB/6sh0HR4DQuOrCMfvQCC51pzxRJ1
+ gM7WDksCsycH1tGeTedhOEz+DCLYrmNVwkOHikMP7IEeJQ3cqJZw4NDEupa7FloM5BiVh85TCaFx
+ pqsb04Uz+IN6qAhD58gDa6m6kjYnbvP10W2a/cDu+Yndn3uNLUv4zSvUJZTsrcIeWAeqHcaSE5I0
+ m7GsL97Hss5v76BF1iCxJYenmOt8pvzyfZjX6QXcsNEsQTZsv5N5NUHmF+/r/Q2GQK4HxRXFTnEb
+ u+55T0tQ6APrGhCqTikosQdTQUO472O3xl6P7sD3PlALdjip5MGHTutYbBsTTOwf7ExoIojiugkQ
+ t16Zw2r8JY0uOQr0Z6eu8nz2f0ne5+rTnhyqeNYaVgT0aElHT4ABfrq6ulpCaNhDSXuWBCUp3pMb
+ j6lSpAPsUXUElXFgzYFctOv8oHnwUzu0TQ+kQ9N5Rh8G2ffP4tU8eF689X0/G3OOqs6jepl/L+vP
+ x4GqTG2d2fmT+Sgq1uybrSP0w5wSPhg7ckeegUF0r2axsM60NmyD+Y90BDxP1yOemO6LKZqdv4x1
+ EUxANQU+rL+VvQLclhSQh2l9vCAkyobKqXS6KLAr2cwCi5nt7+W8hT1aZ12/B34KyDiGqNxaRyXL
+ 15anNEfxPv1R2nGbB8FiPPjbinVNzjoebjNR2W2yw6RMs3WVisXz4n8AAAD//wMAy0kH6tsHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6465e28af6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4507'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ce19c1196672003188d4bf5df328d2e1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW/jNhC9+1cMiB7lwLKdD/uWtMB2UWTjLBZoi1VgjKmRNFuKZEhKiWDkvxeU
+ EstxU2B9MCjOzJv3huLTfgIgOBdrELLCIGurptf3sqTN45831f3t7fWy+PJJpubv5yr98Ss+iiRW
+ mN0PkuGt6kya2ioKbPQQlo4wUERNLxez1ezqYrbsA7XJScWy0obp0kxr1jydz+bL6exyml69VleG
+ JXmxhu8TAIB9/x956pyexRpmydtOTd5jSWJ9SAIQzqi4I9B79gF1EMkYlEYH0pG6bpQ6CgRj1Fai
+ UmPj4bc/Wo/DQqW2WHN7/vVzu/r9y/WnvzbumlN3r+74qN8A3dmeUNFoeRjSUfywvz5pBiA01n3t
+ bXfbzy45TUBXNjXpEGmLfSYU7khlYv19nwkf0IVMrGdJJkjnmVgv4rJP8TEnE3c2doY0Ew9JJgI9
+ x/xMbJzJGxngK7VMT2vgTWU0QbqEjTOZeEmO0BfpAT49X32MPz/B/1YRaHp6jwuOrCMfxQCC51Jz
+ wRJ1gMaWDnMC05ID66hl03jo3yZ/BhFs17DK4bFBxaED9kDPkvreqBJ44lDFupqbGmoM5BiVh8ZT
+ DqFypikr04Qz+IM6KAhD48gDa6manNbwW6exZgmfvUKdQ87eKuyAdaDSYeyRwPLqdgM1sgaJNTlM
+ 4Dq9gBs2miXIiu3ZydTSi/FU5vPlz43tBkMg14HigqJIruPAPLeUgEIfWJeAUDRKQY4dmAIqwraL
+ QocxDeTAdz5QDbY/ZfLgQ6N1LLaVCSZKh50JVQRRXFYBom5lnqbDkzQ650jQn6qaz89HVavLj1Ut
+ TlTdteRQxWOqWBHQsyUdNQEG+GW1WiUQKvaQU8uSICfFLbnhhJUiHaBF1RAUxoE1T+SiXOd7zr2e
+ 0qGtOiAdqsYz+tDTfngR7+7Sy+Sj9cORRTgqGo/q1Tte918OZqRMaZ3Z+RNvEQVr9tXWEfr+jgsf
+ jB16xz59B9G88zFhnalt2AbzD+kIuEiXA54YvXaMplevliiCCajGwHL1VvYOcJtTQO6d7mCuEmVF
+ +Vg6miw2OZujwORI9n/pfIQ9SGdd/gz8GJDxBlO+tY5ylu8lj2mO4rfo/9IOY+4Ji+HF3xasS3LW
+ cf8lEIXdznY4y9P5skjF5GXyLwAAAP//AwA0MT0qFwcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6467b99176368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3084'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_9d48f23bafb8c8c6b33608ed6c72997a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xW32/bNhB+919xIPYoF5Kt2LLf2g3Fhq5rtrZAtyowaOok3UqRHH840YL87wPl
+ xHLUDLAeBJl3930fj8c7388AGFVsC0y03IvOyPnr30VDIvvct3RIs+rH5rfF2y/ZRyPU5u2SJTFC
+ 7/9G4Z+iXgndGYmetDqahUXuMaJm62W6SYtVWgyGTlcoY1hj/DzX844UzRfpIp+n63lWPEa3mgQ6
+ toWvMwCA++EddaoK79gW0uRppUPneINse3ICYFbLuMK4c+Q8V54lo1Fo5VFF6SpIeWbwWsud4FKO
+ xMfn/ux7TBaXcudyJEvf/m3e/bX6lP/5seWfv/z6M4UzviN0bwZBdVDilKQz+2l9OyEDYIp3Q+z7
+ /v2Qu2TqwG0TOlQ+ymb3JZN8j7Jk26/3JXOeW1+ybZqUDFVVsu3iKnl0cdGnZB9MZIasZDdJyTze
+ Rf+SXVtdBeHhDzwQ3m6BrlutELIcrq0u2UNyhr5Yn+CLxcvwiwn8pxZB4e1zWLBoLLq4F+DgqFFU
+ k+DKQzCN5RWCPqAFY/FAOjgYism9mqgp8pOaLE8vl7MPJCv4J3BJvgdygHcCB3cuE7gl30bmjkIH
+ HfdoiUsHwWEFvrU6NK0OfqolyxejmGJ1mZh32EON3AeLDkgJGSrcToGLYjzSbPky8HIC/FOveEcC
+ fnGSqwoqckbyHkh5bCyPIdODza5GluX6Mpa8eH8NHScFgndo+RRzuTlTfnUZ5utsBW9IKxIgWjJT
+ yNVYgMssvyzLb7j3aHuQVGM8bepi7Tk6YAKSO0+qAQ51kBIq3oOuoUV+6OOJT095ma1G/vX68pI7
+ Jghc7zx2YIYrhw6cD0pFftNqr2MNwF77NuqQ1LQe4ulJfTs//hJaVRQ5vrsKy/WY6zy/8Gp+OKDl
+ MpZ8SxIB7wyqmBbgHn7YbDYJ+JYcVHgggVChpAPa422REpWHA5cBodYWjL5FGzNm3aB52E9juWl7
+ QOXb4Ig7P8i+eWDPGtvD7KXvm7N+bbEOjsvHRv64/nCaDFI3xuq9mzR6VpMi1+4scjc0XOa8Nkfu
+ yDMwsPBsqDBjdWf8zutvqCJgLLLZ4zR5GnyjdVE8Wb32XI6Gq02RvAC4q9BzGsbOadIJLlqsxtBx
+ 4vFQkT4zzM62/b2cl7CPWyfVXAI/GkTshljtjMWKxPMtj24W4x+D/3M7pXkQzI6Fv6tJNWiNpWEs
+ s9rs0j1Pq2yR1xmbPcz+AwAA//8DANfCTQukCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6468fdf5f6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4314'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_0089fe2a61400003c3f836fe8bccdbcb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/jNgx+z19BCHtMijhJfyRvvd2GG25du6674nAuAkWmbd5kSZXopF6R/32Q
+ 3cZp1gOSh0ARye/jRzLU8wBAUCYWIFQpWVVOjy7/VEX18+fi66+Pd1dfP97Pby/z+9n08W/kL1/E
+ MEbY1XdU/Bp1omzlNDJZ05mVR8kYUZPz6Xg+vjhLJq2hshnqGFY4Hs3sqCJDo8l4MhuNz0fJxUt0
+ aUlhEAv4NgAAeG6/Y54mwyexgPHw9abCEGSBYrFzAhDe6ngjZAgUWBoWw96orGE0MXVTa71nYGv1
+ Ukmte+Lu87x37osltV7ejj9d32m/UfNP5+urf3+5/+Ov37/z5XSPr4NuXJtQXhu1K9KefXe/OCAD
+ EEZWbexVc9XWbnjoIH1RV2g4pi2eU6HlCnUqFt+eUxFYek7FYjxMBZosFYtpPLYuIfqk4tpFZkhS
+ 8TBMBeNT9E/FjbdZrRhucU24WQDdlNYgJDO48TYV2+Ee+jTZwSen8/fxJwf4dyWCwc1bXPDoPIYo
+ BiQEKgzlpKRhqF3hZYZg1+jBeVyTrQO00xROIIKtatIZPNZSEzdAAfBJYcst9RA2xGWMq6iuoJKM
+ nqQOUAfMgEtv66K0NZ/AZ2wgR8m1xwBklK4zXBzITc76ck7GP9A7PdD7sTGyIgW/BS1NBhkFp2UD
+ ZBgLL2PIAcsk2WOZnh3HMru4uoFKkgElK/TyEHN63mOeJsdhXiZn8IGsIQWqJHcIeTrpZys5svkf
+ JDP6BjTlGFtFVWx7oDUOQcvAZAqQkNdaQyYbsDmUKNdNbFfX7E4dhCYwVuDaWcUAgWtjYrArLdvY
+ QFhZLiOIpqJkiKXXdjPqfilrMooJhpPDiZ7s/WPmZ8epul6jlzoOW0kaAZ8cmqgJJMNP8/l8CFxS
+ gAzXpBAy1LRG382p1mgY1lLXCLn14OwGfZTrQ5tzq6fw0pUNoOGyDiQDt2k/bMWbjbAdvHd+2Ft0
+ HvM6SP2yAV/ut7uVqm3hvF2Fgw0pcjIUyqVHGdpNJQJb13FHnpZB1G+2sXDeVo6XbP9BEwGnyazD
+ E/2L0Vsn05fFLtiy1L3hdPYa9gZwmSFLavf17olQUpWY9aH9UyHrjOyeYbAn+//pvIfdSSdTHAPf
+ G1TcQ5gtnceM1FvJvZvH+KL+yG1X5jZh0Q3+MidToHee2vdM5G45XslxlkxmeSIG28F/AAAA//8D
+ AOBVF4zdBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de646ad3f3c6368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3279'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c459fe899bb24a8917352bb8a5e51373
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW4TMRC95ysGX3rZRAlpSpILKlwapEpUVFwQWjn27NrF6zH2bNqoyr+jdbbZ
+ VBSJiw/vzXt6b8bPIwBhtViDUEayaoIbX9+p+vdu6Vbbu/vqa5o9ff5m7q+/r5afbr/ciqJT0PYB
+ Fb+oJoqa4JAt+SOtIkrGznX2YT5dTZdXs6tMNKTRdbI68Hg+WYy5jVsaT2fvF73SkFWYxBp+jAAA
+ nvPbZfQan8QapsUL0mBKskaxPg0BiEiuQ4RMySaWnkUxkIo8o8+xb9A5egebiwYe2sQgYWcjt9LB
+ SVlAItiAJn/BYOQOoUJ01tepgG3LWWswIjCBQRdgTy08WjYg/Z6N9XVGPKKewA09gpIeNr1/ppi0
+ 3H88TxixapPsNuRb53r8cKrsqA6RtqnnT3hlvU2mjCgT+a5eYgois4cRwM+82vbVtkSI1AQumX6h
+ 7wxnl0c7MRxzIOeLnmRi6Qb8clW84VZqZGldOjuNUFIZ1INyuKNstaUzYnTW+e8wb3kfe1tf/4/9
+ QCiFgVGXIaK26nXhYSxi99X/NXbacQ4s0j4xNmVlfY0xRJs/Wz7lYfQHAAD//wMA5yOYTGsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de646c2be236368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '543'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_7fe00301b8be85b9cee5c4b9855f5c9a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV34/bNgx+z19BCHt0grhJrpe89a4HbCtul7brfqA+BIrM2NxkSZWoJMYh//sg
+ +5rkshswPxg2P/LjR1qknwYAgkqxAKFqyapxevjuo6r8m4fp7zjDOLZ3c8vLXDW37dXt508iSxF2
+ /Rcq/h41UrZxGpms6WHlUTIm1vztZDwfX1/lbzugsSXqFFY5Hk5GsyFHv7bDcf5m9hxZW1IYxAK+
+ DgAAnrp70mhK3IsFjLPvlgZDkBWKxdEJQHirk0XIECiwNCyyE6isYTRJtolanwFsrV4pqfUpcX89
+ nT2fGiW1Xt3e/XZzu6u+fNhi+f7nb5M//rxu/P7H3Vm+nrp1naBNNOrYoDP8aF9cJAMQRjZd7H17
+ 3/Utu3SQvooNGk6yxVMhtFyjLsTi61MhAkvPhViMs0KgKQuxmOTZs0tIPoX45e5LIR6zQjDuk2sh
+ lt6WUTF8wi3hbgG0rK1ByKew9LYQh+yMeDI5Mufz+QX18uHzBfWvNYLB3UtK8Og8hlQCSAhUGdqQ
+ koYhusrLEsFu0YPzuCUbA3TnJ4wgka0j6RK+RamJW6AAuFfoUi+lzmBHXKe4hmIDjWT0JHWAGLAE
+ rr2NVW0jj+ADtrBBydFjADJKxxIXRWGKwgzhfWtkQwp+ClqaEkoKTssWyDBWXqZUndv0+n4JjSQD
+ SjboZWd8l1/BDVlDClRNrqe8kczoW9C0wSSZmlR+oC1moGVgMhVI2EStoZQt2A3UKLdtkt0X3SeA
+ 0AbGBlz3uTBA4GhMCna1ZZsKgbXlOpFoqmqGJF/b3bB/U9aUlOSHUa/rYYte6tS2mjQC7h2apAok
+ ww/z+TwDrilAiVtSCCVq2qLvO641Goat1BFhYz04u0OfBPvQZe0UVV66ugU0XMdAMnAYFeLweBAv
+ TvRh8Nrz49mgetzEIPXzBD/bD8eVoG3lvF2HiwkXGzIU6pVHGbpJE4Gt63OnPF0GEV9sE+G8bRyv
+ 2P6NJhFO8rznE6dtd0Lz6fQZZctSn4DpbJa9QrgqkSV1++a44pRUNZan0NOqk7EkewYMzsr+t5zX
+ uPvSyVT/h/4EqDRRWK6cx5LUy5JPbh7T3+C/3I5t7gSL/uiuNmQq9M7TcR8PDoN/AAAA//8DAGPr
+ s0iOBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de646c72b586368-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:56:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2067'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_29e3f926e805b80c2381f739c683f3f0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW+bMBR9z6+w7jOpsJ2QwNuqdU/r1u5LWkuFHOMQOmMj22jrovz3CZJimrWS
+ eUDI55x777mCw36GENQlZAj4jjnetHL+7pbvqIlv7n7cvjdfpRHcLb58u1rjzuhHiHqF3jwK7p5V
+ F1w3rRSu1uoIcyOYE31VvKJxGq8Tkg5Ao0she1nVujm9WM5dZzZ6HmOyPCl3uubCQobuZwghtB/u
+ /YyqFH8gQ3H0fNIIa1klIBtJCIHRsj8BZm1tHVMOIg9yrZxQ/diqk3ICOK1lwZmUvvHx2k+e/aKY
+ lMXdx0q45W+SbNrVX/7zsrlS6Ye2vJz0O5Z+aoeBtp3i44Im+HienTVDCBRrBu310/Wwt+icwEzV
+ NUK5fmzY5yDZRsgcsvt9DtYx43LI4igHococMoqjE8X2nBw+XX3P4eEQTdiUjHRM0zP+zeev53y8
+ 8PXxYhUiWHtBQgMEycIL1jhAsJ54SJMAQboaBYQEdCDEdyA0wDSh3jRZBYxEVn4kGgcIaDwR4IC1
+ UuzXSsk6QEBSL1iSAMGSTgQB7xJNJu9qEmI68aYXb5l+OMCLz+Ywe+35YZIGRmw7y+QpJk7nhzF3
+ pK5aozf2LEZgW6va7gojmB0+Z7BOt8fefZ+hA3QvIgtao5vWFU7/EqovSDE+1gMfqR4lmJxQpx2T
+ HlgSGr1SsCiFY/UQamOOcsZ3ovRSn6esK2s9AWYT2/+P81rto/VaVSHlPcC5aJ0oi9aIsuYvLXua
+ Ef0v5y3auOZhYLBP1omm2NaqEqY19Rj6s8PsHwAAAP//AwD4m+T78wYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6471809362c48-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:57:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2362'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_4cc71c7024d1edad9c45de08fe3550e5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVTW/iMBCG7/yKyOdQJbbzeeuudosqwX5ftqki4xjI4thR7KwWIf57lUBjl7KS
+ OaDI7zwz846s8XHmeaCuQO4BuiOaNi2f33+ju8XH/ePDT/15s3+AtO3Rd7RSeyQfV8AfCLn+w6h+
+ pe6obFrOdC3FWaYdI5oNWcMEBVmQxhiNQiMrxgds2+o5uovmuu/Wch6EMLqQO1lTpkDuPc08z/OO
+ 4//Qo6jYP5B7gf960jClyJaBfAryPNBJPpwAolStNBEa+EakUmgmhrZFz7klaCl5SQnnpvD5d7S+
+ zaAI5+Xy8FtAzP9KssZo9eE+YOvFQm8Sq9459aEdG9r0gk4DsvTpPL8q5nlAkGZkl4flODf/OoB0
+ 275hQg9tg2MBOFkzXoD86VgApUmnC5AHfgGYqAqQo9C/hKghpgCrT78K8HzyrWgEp/AQZVfxX7/8
+ uI4Psckf4sQFSA0QIwcgxgZIQwcgtTxksQOQJRMAoUMFCE0FiBxMQ2RMw8ShJZiYllDgAKDAAkKH
+ saLQjBXB1AGAmQEi6ABEyAIc7hKKrbsau5iOjWn8zvSN240t09jFA7Y84MxhrDizKmQOpqPAmI5g
+ 5ADA2AAY3waeT+DNrjjNbn0/WyuwY5teEX7ZjZfz07Rsudy2nVyrq90JNrWo1a7sGFHjDgNKy/Zc
+ e6gzVgD9mz0N2k42rS613DMxJERheM4HzDtiVJikF1VLTbgRojTzbyQsK6ZJPW7y6fGghO5YZVDz
+ iJC+qqUlzCzb79u5lftsvRZbl/RGoJS1mlVl27Gqpm8tm7CODe/s/8KmMY8NA3VQmjXlphZb1rVd
+ Pb10s9PsBQAA//8DANIBZoHoBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64769fa36e10c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:57:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4249'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_1242e6674074dece7c0c237c09c34bef
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '2'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV0W6bMBR9z1eg+0wqsAMJvFVrp6ld23Vd14cSIcc4CYuxkW22RVH+fYKkmGap
+ ZB4Q8jnn3nOv4LAbeR6UBaQe0DUxtKr5+PKRrtfkJfj5UL3cflLbhGy+fN78uI7k7+cn8FuFXPxi
+ 1LypLqisas5MKcUBpooRw9qq4RQHSTCL46QDKlkw3spWtRnji2hsGrWQ4yBE0VG5liVlGlLvdeR5
+ nrfr7q1HUbC/kHqB/3ZSMa3JikHakzwPlOTtCRCtS22IMOBbkEphmGhti4bzAWCk5DklnNvGh2s3
+ eLaLIpzntzdfDbl+KWY35nHzwL7zP8XVzeXV/aDfofS27gwtG0H7BQ3w/jw9aeZ5IEjVae+2d93e
+ /FMCUaumYsK0tmGXAScLxjNIX3cZaEOUySAN/AyYKDJIcegfKbrlZHB//ZzBfO8P2Bj19BAnJ/xv
+ D0+n/HBi64eTqYtgZgUxdhDEEyuYhQ6C2WCGJHYQJNNegJBDB4RsBxQ5zIAiOwOaOlhCU2sJBw4C
+ HAwEoYMlHFpLGM0cBCixggg5CLrNvAkc3iUcD97V2GXo2A49+Wjo+R7efTb70bnn+SANFFs2mvBj
+ TBzP933ucLmqlVzokxiBZSlKvc4VI7r7nEEbWR96t326DtC8iyyolaxqkxu5YaItiMPwUA9spFoU
+ heiIGmkIt0CEsH+mYF4wQ8ou1PocpYSuWWGlNk9JU5RyAIwGY/9v51ztw+ilWLmUtwClrDasyGvF
+ ipK+H9nSFGt/OR/R+jV3hkFvtWFVvizFiqlalX3oj/ajfwAAAP//AwDlwZwH8wYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6480e1e92115e-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:57:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3670'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_f56a5460743ae8d1dbab624fd60f2ce4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW+jMBS851egdyYVthMC3HalquqhST9U7UqlQo5xErrGRrapNory31eQFNNs
+ K5kDQp6Z9948wXCYBAFUJWQBsB21rG7E9McD271Xa7n8df32m/xEK4re02ee3ty2+xTCTqHWb5zZ
+ D9UVU3UjuK2UPMFMc2p5VxUtSJRGSZyQHqhVyUUn2zZ2Sq7mU9vqtZpGCM/Pyp2qGDeQBS+TIAiC
+ Q3/vZpQl/wtZEIUfJzU3hm45ZAMpCEAr0Z0ANaYylkoLoQOZkpbLbmzZCjECrFKiYFQI1/h0HUbP
+ blFUiCJKbx+Th+h+8XBj38unzbK9WSH7WI76nUrvm36gTSvZsKARPpxnF82CACSte+3d/q7fW3hJ
+ oHrb1lzabmw45CDomoscspdDDsZSbXPIojAHLsscMoLCM8V0nByW1885vB7DEZvggY5IesG/Xz1d
+ 8tHM1UezhY8gcYKYeAjimRMkyEOQjDyksYcgXQwCjD06YOw6YOJhGhNnGi88RsILNxKJPAQkGgmQ
+ x1oJcmslOPEQ4NQJ5thDMCcjgce7ROLRuxr7mI6d6dl3pl+P8OmzOU6+en4dpYHmm9ZQcY6J8/lx
+ yB2hto1Wa3MRI7CpZGV2hebU9J8zGKuaU++uT98B2k+RBY1WdWMLq/5w2RUkCJ3qgYtUh2KEz6hV
+ lgoHzDEJvyhYlNzSqg+1IUcZZTteOqnLU9qWlRoBk5Ht/8f5qvbJeiW3PuUdwBhvLC+LRvOyYp8t
+ O5rm3S/nO9qw5n5gMHtjeV1sKrnlutHVEPqT4+QfAAAA//8DADRgJN7zBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64868c8b72956-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3445'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_a9a53e095a265040a3936fdbbe9973b6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vOQSBXLs2o4vRQ4BklvSokCAIhBociWxobgMuWqjBv73Qo9Y
+ MtoCvfAwszOYGfAtARBGix0IVUlWtbfp9YOqft28fH54+fr45TXcbx5/tO1+XdzsjWZx3ilo/x0V
+ v6suFNXeIhtyA60CSsbOdbFZZlfZdr3d9ERNGm0nKz2nK0ovs8tVmm3TbD0KKzIKo9jBtwQA4K1/
+ u4hO46vYQXb+jtQYoyxR7I5HACKQ7RAhYzSRpRvijqQix+j61LdoLX2Au7MaKgwI0mkIKHULTFCh
+ 9RdwSz9BSQd3MJhBSw0wadl+mpsGLJoou06usXbED8eUlkofaB9H/ogXxplY5QFlJNclikxe9Owh
+ AXjq12hOCgofqPacMz2j6wwXq8FOTPPPyPVIMrG0E74cFzx1yzWyNDbO1hRKqgr1pJyml402NCOS
+ Wec/w/zNe+htXPk/9hOhFHpGnfuA2qjTwtNZwO5z/uvsuHEfWMQ2MtZ5YVyJwQcz/I/C54uPV3q7
+ XC2UEskh+Q0AAP//AwA2tsTjKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de648801b272956-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '527'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_aa737d07950f59557f9aa25068e8f405
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUUW+bMBDH3/MprHsmEwSaEN5arZpWtVu3qeu2UkWOOYg3Y3u22cqifPcJkgKl
+ nTIeIuT/3e/+vnC3nRACPIOEANtQx0otpqcfGPffXt/mefaZX9RfL/0/9fvy7NbcXAQGvCZDrb8j
+ c49Zr5gqtUDHldzLzCB12FCDRegv/Xgex61QqgxFk1ZoN43UdObPoqkfT/35IXGjOEMLCbmbEELI
+ tv1tLMoMHyAhvvd4UqK1tEBIuiBCwCjRnAC1lltHpQOvF5mSDmXjWlZCDASnlFgxKkRfeP9sB+99
+ n6gQqwxvYn2a3S6vfX5Rnn+0X8zr8tvlm0G9PbrWraG8kqzrz0DvzpNRMUJA0rLNvaqv2rZ54wBq
+ iqpE6RrbsE1B0DWKFJK7bQrWUeNSSMKFlwLKLIXkJPYOMbYJSuH6/acU7r0UHD40sSlYXkiec0al
+ I5UuDM0whZ034M2jjheHR3nriouM/Kyo4K4ekWZh0KFmUXSUdUadQ1MTwfOxqdmyR4XBcVvWVVJy
+ WRC9UU7ZES1chD1tOT9KwweGQqB05BcV1dhb5McdLQqO/wVa/UZDKotm7Cua9b6iaHGc1FyuMFRv
+ aoLSbSrLqXXPbzvo3WLcu3fnNyMqdSns7nfw5GPcTV56vx/MmMG8slQchu9wvuumWahCG7W2o+GE
+ nEtuNyuD1LZDAtYpva/d1GkrQPVkEYA2qtRu5dQPlA0w9Jd7HvR7qleDk9lBdcpR0QvRPPBeAK4y
+ dJS3q6LbToyyDWZ9ar+laJVxNRAmg2s/t/MSe391Lov/wfcCY6gdZittMOPs6ZX7MIPNHv9XWNfm
+ 1jDY2josVzmXBRpteLtKIder4GSZxWEUMAaT3eQvAAAA//8DAJX2ZsRTBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de648848ff92956-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6277'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_498d40d28e5b9c8a25c3fea92147c5f3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU70/bMBD93r/C8ud0StrQpv0GGgykocGm/RAERa5zSQyO7dmXQVX1f5+clqTt
+ mEo+RI7f3Xt3T7lbDQihIqdzQnnFkNdGDk9vuZgkn67O7z5/nf1gjxcfTxM8u56OEnf+iwY+Qy8e
+ geNr1geuayMBhVYbmFtgCJ41mo7DWZhMZnEL1DoH6dNKg8NYD0fhKB6GyTCcbBMrLTg4Oif3A0II
+ WbVvX6LK4YXOSRi83tTgHCuBzrsgQqjV0t9Q5pxwyBTSoAe5VgjKV60aKXcA1FpmnEnZC2+e1c65
+ 94lJmX0/uVzUPKov8fzu8uLm6Sp5vo1/QrOjt6FemragolG882cH7+7nB2KEUMXqNvd6ed3aFhwG
+ MFs2NSj0ZdNVSiVbgEzp/H6VUofMYkrn42mQUlB5SucnSbCNcT4opTdfvqX0IUgpwouPTakTpRKF
+ 4EwhaUxpWQ4pXQc7fJO440vGR/nghYPx/TFJFo2QOfndMClwecCazDrWKJwepTUWatHUpGYIVjAf
+ uEcXTfquo9nkKN8ZQwS7JFIUQIQjojYWnBN/DrsfReOOeBTHx/3ERimhSmIqjdoRochCY0VytpSi
+ rJAwlROpn4ebL65VLrxdhw2NJr1B4zB5l+9SgkLyh8kGSKEtMfoZLGkcWNfKtiWVlplqSUBh1TjB
+ HHrlhzXd+9XWg7fODzsTZKFoHJPb0drer7tZlbo0Vi/cwejRQijhqswCc+0IUIfabLS9TqtAm70x
+ p8bq2mCG+gmUJxyHsw0f7bdQj0bj0RZFjUz2QBxHwRuEWQ7IRLsIut3DGa8g71P7HcSaXOgdYLDT
+ 9r/lvMW9aV2o8j30PcD9WEGeGQu54Pst92EW/Jb+X1hnc1swdUuHUGeFUCVYY0W7KGlhsuhklifj
+ OOKcDtaDvwAAAP//AwBymlqhMQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de648acccf02956-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4916'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_5be7f4e6529024499ed18d7fc1dbc38a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yU246bMBCG7/MUlq+TCgKbAHe7VQ9SN3tQWm3bZYUcMxB3je3aZpU0yrtXJimw
+ NFWaC4T8z3zzz4TxboQQZjlOEKZrYmml+OTynrLF7bd7IYvF1+jXQzXVd+Hz58v1Q3xn8dhlyNUP
+ oPZP1hsqK8XBMikOMtVALDiqPw+82IvmvtcIlcyBu7RS2UkoJ1NvGk68aOLNjolrySgYnKDHEUII
+ 7Zqnsyhy2OAENZjmpAJjSAk4aYMQwlpyd4KJMcxYIg52jyKVwoJwrkXNeU+wUvKMEs67woffrvfe
+ zYlwnn35OJ2/vao/LW+ubWyW3z3z/jpWa79X74DeqsZQUQvazqent+fJoBhCWJCqyV1sF83YxsMA
+ osu6AmGdbbxLMScr4ClOHncpNpZom+IkmI9TDCJPcXIRjY8xxgWl+O52meKncYotbFxsig0rBSsY
+ JcKiWpWa5JDi/bjHm4UtLwrO8lY14zn6WRPO7BYxg2BDQbmGCR+Ao7gFx7OzYKWhYnU1YPizrls/
+ Ok+5ItaC3iLOCnDuWKU0GMNehl1PvagFT/3w/BxtLQQT5QATTIMWEwT+AHPz7sMAAxsF4oSdoPev
+ BjPvrB03dc5BWPRCeO1oT3v86mvaj069P/WWRENRG8KP23M837fryGWptFyZwXbhgglm1pkGYpqv
+ HBsr1aG2q9NUwPWrTcZKy0rZzMpnEA4YePGBh7uLplP94OKoWmkJ74QwDMcngFkOlrBm19vrhRK6
+ hrxL7a4ZUudM9oRRr+2/7ZxiH1pnovwffCdQtyiQZ0pDzujrlrswDe4i/ldYO+bGMDZbY6HKCiZK
+ 0Eqz5i7Ehcr8iziPgtCnFI/2o98AAAD//wMAkrH7ZBQGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6490f9b5560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3274'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_59ac815035fae4fea3e86b60e523817c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVW2/bIBSA3/MrEM/J5FsSJ2/rbtqlW6tWm7S5iig+tukwMMBdsyj/fcJJjeN2
+ 8vxgIc4537kA5+wmCGGW4zXCtCKW1orPXl5SdlFdXUcPv97xVx++f/tw8UfeBX/Y3eWrSzx1FvL2
+ Dqh9tHpBZa04WCbFQUw1EAuOGi7jYBWkyzBuBbXMgTuzUtlZImdRECWzIJ0Fi6NhJRkFg9foxwQh
+ hHbt34UocnjAaxRMH3dqMIaUgNedEkJYS+52MDGGGUuExVMvpFJYEC5q0XDeE1gp+YYSzr3jw7fr
+ rX2dCOeb+Ppn+jH9/vWtOntbLN9A+Ck4+yJ/f+z5O6C3qg2oaATt6tOTd/vrgTOEsCB1a3u+PW/L
+ Nh0qEF02NQjrwsa7DHNyCzzD6x+7DBtLtM3wOl5OMwwiz/B6nk6POsYpZfjiy1WGb6YZtvDgdDNs
+ WClYwSgRFjWq1CSHDO+nPd4i6XhpPMqDBwrK5Uc4um0Yz9GvhnBmtwNquuqoYbAaxSoNNWtqVBML
+ mhGneIILFz7rcLUY5b3eClIzit4bTkSOcmYUJ1vEhIVSExf/wEEUxp2DKBqva5KeX6CaMIEoqUGT
+ IS6Ze9x8PP+X4QKdMSkYRbRiakhbLDwtXY7Szoi1oLeIswIQM4jVSoMx7H549nEQdeA4GM+6aDhH
+ ORkedhz6+OIoHMVUQO6fMCJ/wnESjF9s2wjBRIlUJa0c3pc48bc6nkejtJxsOSsrO8TMe0Etx18H
+ l79nLQdRKXLm7tmTyNLAI9NhyT+/effkwSkQzxxdEnlOEv/fw+UchEX3hDeOdrPHJ/1nP3lufdNr
+ qxqKxhB+7LfH/X3XwLkslZa3ZtCPccEEM9VGAzFtX8TGSnXw7fy0HnBz0vux0rJWdmPlTxAOGAer
+ Aw/70eSl0fI4RrCVlnAvmC8fzU6AmxwsYe106AYSJbSC3Jv6wUSanMmeYNJL+2k4z7EPqTNR/g/e
+ C6jrtZBvlIac0dOUvZoGN7r/pdaVuQ0Ym62xUG8KJkrQSrN2euJCbcL5Kk/jJKQUT/aTvwAAAP//
+ AwATl7w6RggAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64925582c60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:37 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3992'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_368cd693a99b5751efd11f8b3d0ebaae
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV32+bMBDH3/NXWPdMJgj5QXhL22mrpmrdqu6hpYoccyHejO3ZpmsU5X+fTFIg
+ rFPKA0K+u899z/YduwEhwHNICbANdazUYrj4xvi9Ubff5SJy8WfMxUO4eDCXz/MLfQ+Bj1Crn8jc
+ a9QHpkot0HElD2ZmkDr01GgWh/MwmUVJbShVjsKHFdoNx2o4CkfjYZgMw+kxcKM4QwspeRwQQsiu
+ fnuJMscXSEkYvK6UaC0tENLGiRAwSvgVoNZy66h0ELRGpqRD6VXLSoiOwSkllowK0SY+PLvOd7tP
+ VIhl+XFy/Sm6iq+TH9bc3VYX9s/95ZfRrJPvgN7qWtC6kqzZn469WU97yQgBScs69mZ7U29b0Heg
+ pqhKlM7Lhl0Ggq5QZJA+7jKwjhqXQRrPggxQ5hmkkyQ4+ljvlMHt17sMnoIMHL543wwsLyRfc0al
+ I5UuDM0xg33Q4U3HDS+Jz/LwhaH29VFBVhUXOfldUcHdtkdN5g01CmdnsdpgyauSlNSh4dQ7nuCi
+ aVt1NJ+e5V1tJS05I9dWUJmTnFst6JZw6bAw1OvvJRhFcZNgNJqcTTBObm5JSbkkjJZoaB83HrW4
+ yfn6F9GUXHAlOSNsw3WfNu2Im52n8VIbtJY/I1lR59BsieDr/sHHYasxjt5xlVwlJZcF0RvlVP+E
+ 4lnY0pLkXRdJCJSOPFNReW1Pezjph/3gre+nTpsbXFeWimP/H9f3zUARqtBGrWxvPsCaS243S4PU
+ 1n0K1il9yO3z1BmgOplFoI0qtVs69QulB8bh/MCDdlS21ig5jjVwylHRGsbJa9gJcJmjo7yeVs2A
+ ZJRtMG9D20FJq5yrjmHQKftfOW+xD6VzWbwH3xqY733Ml9pgztlpya2bQf8r+Z9bs821YLBb67Bc
+ rrks0GjD62kOa72MJvM8iccRYzDYD/4CAAD//wMAT1zV3tYGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6493ff84960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3097'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c0a6ec97cc5d6f7b2b2deb39ca2359d2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBS85ysevnBpVmlTtrQXxAHE3lgJsatFKHLtl8TU8TP2C6Jd9d+R026T
+ FYvExYeZN6OZkR8zAGG02IBQrWTVeZu/v1Xmvt/J2/aw+nK3OzysP8pf118/H36a+w9ilhS0/YGK
+ n1RXijpvkQ25E60CSsbkOl+Vxbp4u1rMB6IjjTbJGs/5Muc+bClfFItlXizzYn1Wt2QURrGBbxkA
+ wOPwppxO42+xgWL2hHQYo2xQbC5HACKQTYiQMZrI0rGYjaQix+iG6J/QWnoFN687aDEgMEGL1sOe
+ +iu4ayWDkg5uQBPUFBIMTFru3039AtZ9lKmT660948dLQEuND7SNZ/6C18aZ2FYBZSSXwkQmLwb2
+ mAF8H4bon3UTPlDnuWLaoUuG8+XJTozzT8jVmWRiaUe8nM9ecKs0sjQ2ToYUSqoW9agcV5e9NjQh
+ sknnv8O85H3qbVzzP/YjoRR6Rl35gNqo54XHs4Dpc/7r7LLxEFjEfWTsqtq4BoMP5vQ1al+90duy
+ KK/LuhbZMfsDAAD//wMAWjyoKCgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de649548b6360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:42 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '862'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_86369b1df5d25b54f5a76f8882e3a867
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUS4+bMBC+51dYc4aKR57c0qqtqjZtqlU2qpYIGdsQ7xqbtY26UZT/XkFYIGmq
+ LQeE5nvMeDzDcYQQcAoRArLHlhSlcJc/Cf9FV8vt2N8uP3/5bTYpXtD3Hz5tnmYBOLVCpY+M2FfV
+ O6KKUjDLlTzDRDNsWe3qz0Jv4c1nQdAAhaJM1LK8tO7YtZVOlRt4wdj1xq63aNV7xQkzEKGHEUII
+ HZt3Xaek7AUi5DmvkYIZg3MGUUdCCLQSdQSwMdxYLC04PUiUtEzWpctKiAFglRIJwUL0ic/PcfDd
+ NwsLkeT3k6/3dPn8/DjD2/n624sWk/XdZDHId7Y+lE1BWSVJ16QB3sWjq2QIgcRFo10dVk3vnGsC
+ 1nlVMGnrsuEYg8ApEzFED8cYjMXaxhB5TgxM0hiiYOG0FFNzYvj+cRPD7uQM2GFP9wP/ir/+cXfN
+ 94Og9w/HbwuCcNIJwpn3tiCc+Z1gMp3fFuxOcNGb0+jW925w5ZpllcGinYU2fuqGS6i81Co1V7MC
+ GZfc7BPNsGnuDIxV5Tl3nafJANXFXEKpVVHaxKonJmvD0PfPftDvTo9OFy1olcVioJq3o3/pl1Bm
+ MW8Gt9sVgsme0V7a7wyuKFcDYDQ49d/V3PI+n5zL/H/se4AQVlpGk1IzysnliXuaZvWv5V+0rstN
+ wWAOxrIiybjMmS41bxYbsjKZ0DT0wmmYZTA6jf4AAAD//wMA4XrPAOYEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6495afb7f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2220'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_6ebf4ca093207664a84f3930844a6066
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/aMBR951dY9zlMIQkh5I1W3cS0dlunaVMbFBnHAXeObdnOVIr471MCxIG1
+ onmwrHvOuV+519sBQsAKSBGQNbakUnw4+04Yvv70cT4W8YN4uH+6mc/i6tffK2u+3IHXKOTyiRJ7
+ VH0gslKcWibFHiaaYksbr6NJ6E/9ZBJELVDJgvJGtlJ2GA1trZdyGPhBNPSjoT89qNeSEWogRY8D
+ hBDatmeTpyjoM6TI946WihqDVxTSjoQQaMkbC2BjmLFYWPAcSKSwVDSpi5rzHmCl5DnBnLvA+2/b
+ u7tmYc5zPbuP/SB4nv9+CWgVqqvq2i82nze9eHvXG9UmVNaCdE3q4Z09PQuGEAhctdrbzW3bO++c
+ gPWqrqiwTdqwzYDjJeUZpI/bDIzF2maQ+l4GVBQZpMHUO1BMw8ng7uZnBoud12OHPXoYnfG/ff1x
+ zg/CcScIk+llQTh1EcZxfFkwjiedIA7Gl0uIg9gJkvcIEieYJMHllCZJ2AmS6I2iFzs4+V27wWv3
+ RW8KNS1rg/lhPA/2XTfvXK6UlktzNr5QMsHMOtcUm3aMwFip9rGbOG0EqE9WBZSWlbK5lX+oaByG
+ o9HeH7h1duhodNg6sNJi7oAoOMpOHOYFtZi1y9TtL8FkTQsndXuM64LJHjDolf1/Oq/53pfOxOo9
+ 7h1ACFWWFrnStGDktGRH07R57t6idW1uEwazMZZWecnEimqlWfvYQKnycbEM/TAOyxIGu8E/AAAA
+ //8DAI27fLt6BQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64969a81e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4025'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_d184faf9ae1d65b98489c4216e55f3cd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUzW+bMBS/56+w3plMFBO+bj3sMG3ZVq09lQg5xhB3xnZtozWK8r9PkBTTLFPL
+ AVnv9/E+9OzDAiHgNRQI6I442mmxvL2jvBHrlNj2zzqO6+y2XX1pRLSPnu9fIBgUavvEqHtVfaKq
+ 04I5ruQJpoYRxwbXmxSHeZilUT4CnaqZGGStdst46XqzVcsojOJlGC/D/KzeKU6ZhQI9LhBC6DD+
+ hzplzV6gQGHwGumYtaRlUEwkhMAoMUSAWMutI9JB4EGqpGNyKF32QswAp5SoKBHCJz59h9nZD4sI
+ UT3n2N5/yzh+2D+1d/nX+CV0Oo3wLN/Jeq/Hgppe0mlIM3yKFxfJEAJJulG73q/H2QWXBGLavmPS
+ DWXDoQRBtkyUUDweSrCOGFdCEQYlMFmXUER5cKbYgVPC988PJWyOwYyNZ3QcX/B//vh1yY/wahLg
+ LH9fgHOfYZUk7wtWSToJkmj1fgtJlHhB9hFB5gVpFl0vaXOEN9M/Lq6dN7OlMqzpLRHnbTvHj9P6
+ CtVqo7b2Yhuh4ZLbXWUYseNWgHVKn3IPecYM0L/ZfNBGddpVTv1mcjDENzcnP/C306N5egadckT4
+ eBxmwRW/qmaO8PFqTLeRErpjtZf6W0n6mqsZsJh1/W8117xPnXPZfsTeA5Qy7VhdacNqTt927GmG
+ DY/X/2jTlMeCwe6tY13VcNkyow0fnw5odLWqtzjECW4aWBwXfwEAAP//AwDZVASCSAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64983ba6460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3318'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_e272874037cbdd26338618115fbdfaa0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUW2/aMBR+51dY5zlMISaB5K3apu6lXaeObVJTRcZxwJ1je7bTghD/fUqgccqY
+ aB4i63yXc9GxdyOEgJeQIaBr4mitxfjqG+X8bvF0VT6XzkUv13+2kyT+9OU+1eFHCFqFWj4x6l5V
+ H6iqtWCOK3mAqWHEsdZ1MsNhGs5nOOqAWpVMtLKVduPp2DVmqcZRGE3H4XQcpkf1WnHKLGToYYQQ
+ Qrvu39YpS7aBDIXBa6Rm1pIVg6wnIQRGiTYCxFpuHZEOAg9SJR2TbemyEWIAOKVEQYkQPvHh2w3O
+ flhEiCL5+fLrO7u+/YE3cWUX1OLN5Hlh+CDfwXqru4KqRtJ+SAO8j2cnyRACSepOe7O96WYXnBKI
+ WTU1k64tG3Y5CLJkIofsYZeDdcS4HLIwyIHJMocsSoMjxbacHG4/L3J43AcDNh7Q8fSEf/f1/pQf
+ 4bgX4Hl6WYBTnyFOksuCOJn1giSKL7eQRIkXzN8jmHvBbB6dL+lxD2+mvx+dOz8OlsqwqrFEHLft
+ GN/36yvUShu1tCfbCBWX3K4Lw4jttgKsU/qQu83TZYDmzeaDNqrWrnDqN5OtIZ5MDn7gb6dH09kR
+ dMoR4ePTcB6c8StK5gjvrkZ/Gymha1Z6qb+VpCm5GgCjQdf/VnPO+9A5l6v32HuAUqYdKwttWMnp
+ 2449zbD28fofrZ9yVzDYrXWsLiouV8xow7unAypdxOUShzjBVQWj/egvAAAA//8DAL6hrvFIBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6499a5bd260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3592'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_edaf7e2da3161b86f7752ccd77aab35b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUS2+jMBC+51dYcyYrAgkBblXbS7ptN7uqqqpEyLFN4q2xkW3UplH+ewVJMclm
+ 1XJA1nyPeWjs7QAh4BRSBGSNLSkrMbyYE17O36PLy/kDKZ6e6Ojmkehw807fZq/gNQq1/MuI/VT9
+ IKqsBLNcyT1MNMOWNa6jaegnfjwNoxYoFWWika0qOxwPba2Xahj4wXjoj4d+clCvFSfMQIqeBwgh
+ tG3/TZ2SsjdIke99RkpmDF4xSDsSQqCVaCKAjeHGYmnBcyBR0jLZlC5rIXqAVUrkBAvhEu+/be/s
+ hoWFyG9mPy2+fqTxzM5f7tlv8UqvZhdXd718e+tN1RZU1JJ0Q+rhXTw9SYYQSFy22tvNbTs775SA
+ 9aoumbRN2bDNQOAlExmkz9sMjMXaZpD6XgZM0gzSIPEOFNNwMri7fshgsfN67LBHD8cn/F/3f075
+ QTjpBGGcfC0IE5dhEkVfCybRtBNEweTrFqIgcoL4O4LYCaZxcL6kxQ6Opr8bnDsvekulWVEbLA7b
+ dojvuvUValVptTQn2wgFl9ysc82wabcCjFXVPneTp80A9dHmQ6VVWdncqhcmG8NwNNr7gbudDk2m
+ B9Aqi4WLj/3YO+OXU2Yxb69GdxsJJmtGndTdSlxTrnrAoNf1v9Wc8953zuXqO/YOIIRVltG80oxy
+ ctyxo2nWPF7/o3VTbgsGszGWlXnB5YrpSvP26YCiyid0GfphFBYFDHaDDwAAAP//AwDCZAGmSAUA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de649b20b0060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:58:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3598'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_c054e0bb25eefb57e51a3fb04b2a9b10
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBC95ysGX3ppUNIGdelltdoLK7jAgQMIRa49Sbx1PF57AlSr/jtymm1a
+ AdJeLHvevKc3b/ycAQijxRaE6iSr3tv87rMyT/v79on8u1X5tdt/pC/369Wn8ttaO7FMDNo9ouIX
+ 1ltFvbfIhiZYBZSMSbXcrIv3xc2mKkagJ4020VrPeUV5b5zJV8WqyotNXt5M7I6Mwii28D0DAHge
+ z+TTafwttjBqjZUeY5Qtiu25CUAEsqkiZIwmsnQsljOoyDG60frDoofHITJI8IHaIPslRIIH0OQW
+ DJ38idAgWuPauITdwJAYHQYE6TQElPoATNCh9XCg4Q18oF8gdzRwet6m5yKmawAtD9CSce3tpZmA
+ zRBlCsQN1k7143k6S60PtIsTfq43xpnY1QFlJJcmiUxejOgxA/gxpjhcBSN8oN5zzbRHlwTL6iQn
+ 5t3N4HpKWDCxtHO9eiFdqdUaWRobL7YglFQd6pk5r0wO2tAFkF3M/LeZf2mf5jaufY38DCiFnlHX
+ PqA26nrguS1g+tn/aztnPBoW8RAZ+7oxrsXggzn9q8bXxU4WulxVTSmyY/YHAAD//wMAOcFJUmUD
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de649c9bb2260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '850'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_6e9ed92b141757a5341f06c59922ca8b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV247bNhB991cMiD7KgXzZ2vJbLwHSBntJ2gZoooVBUyNpUopkeZFtGP73grJj
+ ab1bZP1gSDwz55wZkqPDCIBRwVbARM29aIwc//RBkG0/F3ebz5/q9+nd/H5avZ+mD+Hv2fwdS2KG
+ 3nxF4b9lvRG6MRI9aXWChUXuMbJOFrM0S5eL+aQDGl2gjGmV8eO5HjekaDxNp/NxuhhPlufsWpNA
+ x1bwZQQAcOj+o09V4I6tIE2+rTToHK+QrS5BAMxqGVcYd46c58qzpAeFVh5VtK6ClAPAay3XgkvZ
+ C59+h8Fz3ywu5VplrdoI8Yv7ZH6n5u30t9uv73YfflUDvRP13nSGyqDEpUkD/LK+uhIDYIo3Xe7t
+ /rbrXXIdwG0VGlQ+2maHnEm+QZmz1ZdDzpzn1udslSY5Q1XkbDVbJucQF2Nydvf2r5w9JjnzuIuh
+ OXuwugjCw0dsCbcroIdaK4TJHB6sztkxGRDPsgvzJL2mfrj/44r6zxpB4fYpJVg0Fl0sATg4qhSV
+ JLjyEExleYGgW7RgLLakg4PuDLk3V04m6cDKzeRVVjaBZAH/Bi7J74Ec4E6giTvBZQJb8nVUbSg0
+ 0HCPlrh0EBwW4GurQ1Xr4J/5uJn2PrLFd338zL1HuwdJJUYL1MRmOGoxAcmdJ1UBhzJICQXfgy6h
+ Rt7uo41n0tnyIj2dvW43BG/QcnB757EB0209OnA+KBWlTa29dkAKNtrX0YKkqvbAVQFSb8enN6FV
+ QbFvz7ZlOjghszT9rqf7Fi2Xsfs1SQTcGVSxGcA9/JBlWQK+JgcFtiQQCpTUoj1tnJSoPLRcBoRS
+ WzB6izb2ybrObldKZbmp94DK18ERd75z/HhkT67VcfTS8+NgWlgsg+PyPEbO68fLXJK6MlZv3NWY
+ YSUpcvXaInfddWfOa3PSjjqdAgtPRhozVjfGr73+B1UknKXZiY/1Y7dHJ8v5GfXac9kD82yWvEC4
+ LtBz6obeZc4KLmos+tR+3vJQkB4Ao0HZz+28xH0qnVT1GvoeEPFiYrE2FgsST0vuwyzGz9L/hV3a
+ 3BlmpzO/LklVaI2l7qPASrPONovl5seJuJmy0XH0HwAAAP//AwBe6BoxIgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de649d02bd260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:05 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3795'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ca8fdf2960387b180ca5180992da2e6e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTY/bNhC9+1cMiB7lQP7YruVb2m4LpNjNJo2TFNHCoKmRNAlFMiQlWzD83wvK
+ jqX1bpH1wZD4Zt57MyRH+xEAo4wtgYmSe1EZOX79TlCTT1d/fvh3V03a+bfPzZs/Pt39Xqzq7zmL
+ QobefEXhf2S9EroyEj1pdYSFRe4xsE6uZ3ESL67nVx1Q6QxlSCuMH8/1uCJF42k8nY/j6/Fkccou
+ NQl0bAlfRgAA++4/+FQZ7tgS4ujHSoXO8QLZ8hwEwKyWYYVx58h5rjyLelBo5VEF66qWcgB4reVa
+ cCl74eNvP3jum8WlXK/+aulGfp22H+9ubt/c0Ee1mv79mb8b6B2pW9MZymslzk0a4Of15YUYAFO8
+ 6nJv29uud9FlALdFXaHywTbbp0zyDcqULb/sU+Y8tz5lyzhKGaosZcvZIjqFuBCTsrubVcoeopR5
+ 3IXQlN1bndXCw3tsCLdLoPtSK4TJHO6tTtkhGhDPkjPzJL6kvn/7zwX1hxJB4fYxJVg0Fl0oATg4
+ KhTlJLjyUJvC8gxBN2jBWGxI1w66M+ReXTiZxAMrV5MXWdnUJDP4XnNJvgVygDuBJuwElxFsyZdB
+ taK6gop7tMSlg9phBr60ui5KXfsnPq6mvY/k+qc+fuPeo21BUo7BAlWhGY4ajEBy50kVwCGvpYSM
+ t6BzKJE3bbDxRDpZnKWns5fthuAVWg6udR4rMN3WowPna6WCtCm11w5IwUb7MliQVJQeuMpA6u34
+ +Ca0yij07cm2TAcnZBbHP/X0tkHLZeh+SRIBdwZVaAZwD78kSRKBL8lBhg0JhAwlNWiPGyclKg8N
+ lzVCri0YvUUb+mRdZ7crpbDclC2g8mXtiDvfOX44sEfX6jB67vlhMC0s5rXj8jRGTuuH81ySujBW
+ b9zFmGE5KXLl2iJ33XVnzmtz1A46nQKrH400ZqyujF97/Q1VIJzFyZGP9WO3RyeL+Qn12nPZA/Nk
+ Fj1DuM7Qc+qG3nnOCi5KzPrUft7yOiM9AEaDsp/aeY77WDqp4iX0PSDCxcRsbSxmJB6X3IdZDJ+l
+ /ws7t7kzzI5nfp2TKtAaS91HgeVmnWyuF5tfJ+JqykaH0X8AAAD//wMAddKvXSIHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de649e95e8060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4366'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_3f8cf38298620e075147d73154144987
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW/bRhC961cMFj1Shj5NSTenbo2gcOK0CXKIDGG0HJKTLHe3+yGbMPzfi6UU
+ UVZduDoI5M7Mm/dmhrNPAwDBhViBkDUG2Vg1vPokv4/kV/nhVoUfk+vlF//rePn7bnk1zhe5yFKE
+ 2X4nGX5GXUjTWEWBjd6bpSMMlFDH+XS0HC3y+agzNKYglcIqG4YzM2xY83AymsyGo3w4Xhyia8OS
+ vFjBtwEAwFP3n3jqgh7FCjqs7qQh77EisTo6AQhnVDoR6D37gDqIrDdKowPpRF1HpU4MwRi1kahU
+ n3j/ezp57ouFSm0+f9qWU3w/udE3lzfXN3E7z8vHr06d5NtDt7YjVEYtj0U6sR/PV2fJAITGpou9
+ bW+72mXnDuiq2JAOibZ4WguFW1Jrsfr2tBY+oAtrsRpla0G6WIvVdJEdXHzyWYsPv31Zi/tsLQI9
+ Jte1uHOmiDLAn7RjelgB39VGE4xncOfMWjxnJ8DT5RF5PMvPoO8+/nUG/bkm0PTwEhIcWUc+SQAE
+ z5XmkiXqANFWDgsCsyMH1tGOTfTQzZC/gAS2jawK+Dui4tACe6BHSTbVElUGDxzqFNdwbKDBQI5R
+ eYieCgi1M7GqTQwX8Ae1UBKG6MgDa6liQaszpePZope6mLwp9brV2LCE916hLqBgbxW2wDpQ5TAx
+ PE+wmB4TTEaXbyaYLW7voEHWILEhh2dwk1He883f5ns1voR3bDRLkDXbc3L5Cbn59E20dxgCuRYU
+ l5Tawk1qsecdZaDQB9YVIJRRKSiwBVNCTbhrU2v2jd1rAt/6QA3YbiTJgw9R6xRsaxNMahZsTagT
+ iOKqDpBqrczDcP8mjS441dpfnJdnPuu/idHyTUEfd+RQpZmqWRHQoyWd5AAG+GW5XGYQavZQ0I4l
+ QUGKd+T246gU6QA7VJGgNA6seSCXlDrf0e2kVA5t3QLpUEfP6EPH+P5ZvPjcnwevPd+fbDFHZfSo
+ DuvtcP583JfKVNaZrT9bf6Jkzb7eOELfrSHhg7H73ClPl0HEF6tWWGcaGzbB/CCdAFMZB4cd+/M6
+ 6K2TcX6wBhNQ9Yb55DJ7BXBTUEDulvFx/0uUNRV9aH8PYCzYnBgGJ7L/Tec17L101tX/ge8NMq0b
+ KjbWUcHypeTezVG6Lv/L7VjmjrDYz/ymZF2Rs467y0qUdrPc5ovt5VjOJ2LwPPgHAAD//wMA5Led
+ hroHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a067f9260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4526'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_70956c0fcd187eb31c2047ea35b90a21
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/jNgx+z19BCHt0ivxqnOSt3Q5bt/Wuu95hwF2KgJFpmzdZUiU5qVf0fx9k
+ 9+I069DlIbBF8uP3kTT1OAAQnIkVCFlikJVVw4s/5LfZw+9U3l6ZdPHx4sfLXyu1nf8p36d/34sk
+ RpjtN5Lhe9SZNJVVFNjoziwdYaCIOk6no+VokZ7PWkNlMlIxrLBhODPDijUPJ6PJbDhKh+PFc3Rp
+ WJIXK/g6AAB4bP8jT53Rg1jBKPl+UpH3WJBYHZwAhDMqngj0nn1AHUTSG6XRgXSkrmuljgzBGLWR
+ qFSfuPs9Hj33xUKlNl/m7y5sc3svw5f089XPwXzCYnf5S36Ur4NubEsor7U8FOnIfjhfnSQDEBqr
+ Nva6uW5rl5w6oCvqinSItMXjWijcklqL1dfHtfABXViL1ShZC9LZWqymi+TZxUeftXj/7vNa3CVr
+ Eeghuq7FjTNZLQN8pB3TfgV8UxpNMJ7BjTNr8ZQcAU+XB+TxLD2BvvlwewL9qSTQtH8JCY6sIx8l
+ AILnQnPOEnWA2hYOMwKzIwfW0Y5N7aGdIX8GEWxbs8rgvkbFoQH2QA+SbKwlqgT2HMoYV3FdQYWB
+ HKPyUHvKIJTO1EVp6nAGv1EDOWGoHXlgLVWd0epE6Xi26KUuJm9K/anRWLGEK69QZ5CxtwobYB2o
+ cBgZniZYTA8JJqP5mwlmi+sbqJA1SKzI4QncZJT2fNO3+V6M53DJRrMEWbI9JZcekTufvol2iSGQ
+ a0BxTrEtXMUWe95RAgp9YF0AQl4rBRk2YHIoCXdNbE3X2E4T+MYHqsC2I0kefKi1jsG2NMHEZsHW
+ hDKCKC7KALHWyuyH3Zs0OuNYa392Wp7zWf9NTEdvCvqwI4cqzlTJioAeLOkoBzDAD8vlMoFQsoeM
+ diwJMlK8I9eNo1KkA+xQ1QS5cWDNnlxU6nxLt5VSOLRlA6RDWXtGH1rGd0/ixef+NHjt+e5oiznK
+ a4/qeb09nz8d9qUyhXVm60/Wn8hZsy83jtC3a0j4YGyXO+ZpM4j6xaoV1pnKhk0wf5GOgNPRssMT
+ /XXQWyfj9NkaTEDVG84n8+QVwE1GAbldxof9L1GWlPWh/T2AdcbmyDA4kv1vOq9hd9JZF/8HvjfI
+ uG4o21hHGcuXkns3R/G6/C+3Q5lbwqKb+U3OuiBnHbeXlcjtZrlNF9v5WJ5PxOBp8A8AAAD//wMA
+ SHeiqroHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a23ae0c60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:18 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3854'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ad5bd03b26918ce373bffbc1499dd827
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTY/bNhC9+1cMiB7lQP5aW741aXvbrps0QbDRwqCpkcSUIhlyqLVj+L8XlB3L
+ 690g64Mh8c2892ZIjvYDACYLtgQmak6isWr4+z/i60LXm8nn6tP9h/n79Pu37ceCZ3f3t4u3LIkZ
+ ZvMVBf3IeiNMYxWSNPoIC4ecMLKO5pM0Sxfz2aIDGlOgimmVpeHUDBup5XCcjqfDdD4cLU7ZtZEC
+ PVvClwEAwL77jz51gVu2hDT5sdKg97xCtjwHATBnVFxh3HvpiWtiSQ8Kowl1tK6DUhcAGaPWgivV
+ Cx9/+4vnvllcqfXNzv3xaf7ur/tm3G7lZ14GKhff71cXekfqne0MlUGLc5Mu8PP68koMgGnedLm3
+ u9uud8l1AHdVaFBTtM32OVN8gypnyy/7nHnijnK2TJOcoS5ytpwsklOIjzE5+/vPjzl7SHJGuI2h
+ OVs5UwRB8B5biY9LkKvaaITRFFbO5OyQXBBPsjPzKL2mXt19uKL+t0bQ+PiUEhxahz6WABy8rLQs
+ peCaINjK8QLBtOjAOmylCR66M+TfXDkZpRdWZqNXWdkEqQr4FriStAPpAbcCbdwJrhJ4lFRH1UaG
+ BhpO6CRXHoLHAqh2JlS1CfTMx2zc+8jmv/TxlhOh24GSJUYLsonN8LLFBBT3JHUFHMqgFBR8B6aE
+ Gnm7izaeSWeLs/T4ZvqqFgjeoOPgd56wAdttPXrwFLSO0rY2ZDxIDRtDdbSgZFUTcF2AMo/D45sw
+ upCxb8+2ZXwz68/eKPulp7sWHVex+7VUCLi1qGMzgBP8lmVZAlRLDwW2UiAUqGSL7rhxSqEmaLkK
+ CKVxYM0jutgn5zu7XSmV47beAWqqg5fcU+f44cCeXKvD4KXnh4tp4bAMnqvTGDmtH85zSZnKOrPx
+ V2OGlVJLX68dct9dd+bJ2KN21OkUWHgy0ph1prG0JvMf6kg4SbMjH+vHbo+OFtMTSoa46oFpNkle
+ IFwXSFx2Q+88ZwUXNRZ9aj9veSikuQAGF2U/t/MS97F0qavX0PeAiBcTi7V1WEjxtOQ+zGH8LP0s
+ 7NzmzjA7nvl1KXWFzjrZfRRYadfZZr7Y3IzEbMwGh8H/AAAA//8DACTggvgiBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a3c9ea960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3144'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_e35cd7cbd4905c29174cc6ad1a7b5137
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBC95ysGX3rJrrLdLqV7QcCBLkhFCAEHhCLHnk28dTyWPWlZVfvvVbxp
+ shVF4uLDe/Oe3pvxQwYgjBZrEKqRrFpvZ+++qt2H9zLemO7my6fbH98L1S4+s/tY/fxWibxXULVD
+ xU+quaLWW2RD7kirgJKxd11cLour4s3l6/NEtKTR9rLa82w5X824CxXNisX5alA2ZBRGsYZfGQDA
+ Q3r7jE7jH7GGIn9CWoxR1ijW4xCACGR7RMgYTWTpWOQTqcgxuhT7Gq2lV7A5a2HXRQYJdyZwJy2M
+ yhwiwQY0uTOGRt4hbBGtcXXMoeo4aRsMCEzQoPWwpw7uDTcg3Z4b4+qEOEQ9h2u6ByUdbAb/RDFp
+ uX97mjDgtouy35DrrB3ww1jZUu0DVXHgR3xrnIlNGVBGcn29yORFYg8ZwO+02u7ZtoQP1HoumW7R
+ 9YaLi6OdmI45kcvVQDKxtBN+cZW/4FZqZGlsPDmNUFI1qCfldEfZaUMnRHbS+e8wL3kfextX/4/9
+ RCiFnlGXPqA26nnhaSxg/9X/NTbuOAUWcR8Z23JrXI3BB5M+WzrlIXsEAAD//wMADnXFqGsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a516ca560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '972'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_4c8e7887135b3b54ff6fe40877f90450
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU34/bNgx+z19BCH1Mgvy49Hp5a9Fh7YZg13ZFD1uGgJFpm50saRKVnHu4/32Q
+ fY1z1xswPxgyP/LjR1rk3QhAcaHWoHSNohtvJq8/6K9vbxabi/eXh6PdOFx8mH1693mzKm/SNzXO
+ EW7/lbR8j5pq13hDws72sA6EQpl1frmcXc1eXb5cdkDjCjI5rPIyWU5XE0lh7yaz+WL1EFk71hTV
+ Gv4cAQDcde+s0RZ0q9YwG3+3NBQjVqTWJycAFZzJFoUxchS0osYDqJ0Vslm2TcacAeKc2Wk0Zkjc
+ P3dn56FRaMyu3n/+WX9pv/xy89MfZun2n4LYjxv/7ixfT936TlCZrD416Aw/2ddPkgEoi00Xu2k3
+ Xd/GTx0wVKkhK1m2utsqtj7JVq236jq4ImmBj3RgOq6Br2tnCeYXcB3cdmu3W/t7TWDp+BiCQD5Q
+ zJyAELmyXLJGK5B8FbAgcAcK4AMd2KUI3Q+NU8hk+8SmgH8SGpYWOALdavK5ODRjOLLUOa7h1ECD
+ QoHRREiRCpA6uFTVLskUfqUWSkJJgSKw1SYVtO4VT+Bta7FhDe+jQVtAwdEbbIGtUBUwp+rcLl5t
+ rqFBtqCxoYCd8fX8JbxhZ1mDrtn3lG9QhEILhkvKkrnJ5Uc+0BgMRmFbAUKZjIECW3Al1ISHNsvu
+ i+4TQGyjUAO+aztFiJKszcG+duJyIbB3UmcSw1UtkOUbd5z0X9rZgrP8OO11/XaggCa3rWZDQLee
+ bFYFKPDi6upqDFJzhIIOrAkKMnyg0HfcGLICBzSJoHQBvDtSyIJD7LJ2iqqAvm6BrNQpMkaJ0626
+ V48u2P3oufNfZ3MTqEwRzcNAPdjvTxNqXOWD28cnA6dKthzrXSCM3cVXUZzvc+c8XQaVHg238sE1
+ Xnbi/iabCRcXi55PDctnQOfz1QMqTtAMwHJ1OX6GcFeQIHfjf9o4GnVNxRA6bB5MBbszYHRW9o9y
+ nuPuS2db/R/6AdB5nqjY+UAF68clD26B8nL+L7dTmzvBqr+4u5JtRcEHPq3H0f3oXwAAAP//AwDm
+ j+i5HQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a591ef360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1645'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_13f6d9b4393fad7b327319578f4aeb7f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqbpz7zlNmy73XrXFQfcbcsQKBJt8SZLOolyahT93wfZ
+ vTjtOmB+MGR+5MePtMiHCYAgLVYglJGsmmBn69/Ulx8/37R6fxovvuLPv6B5v8blu5/u+NffxbRE
+ +N0XVPwtaq58EywyeTfAKqJkLKyLy+XJ9cnV5cV5DzReoy1hdeDZcn4+4xx3fnayOD1/ijSeFCax
+ gj8nAAAP/btodBrvxQpOpt8sDaYkaxSrgxOAiN4Wi5ApUWLpWExHUHnH6Ipsl609Ath7u1XS2jHx
+ 8DwcncdGSWu3ev3JV+u7Zll9vKvepz+uuqu33xu6P8o3UHehF1Rlpw4NOsIP9tWLZADCyaaPvelu
+ +r5NXzrIWOcGHRfZ4mEjyIXMG7HaiNvodVYMd9gS7ldAt8Y7hMUZ3Ea/2bjNxn00CA73zyGIGCKm
+ wgkSEtWOKlLSMeRQR6kRfIsRQsSWfE7Q/9A0h0K2y2Q1fM3SEndACfBeYSjFSTuFPbEpcQ3lBhrJ
+ GEnaBDmhBjbR59r4zHN4hx1UKDlHTEBO2axxNSiewQ+dkw0peJusdBo0pWBlB+QY6yhLqt7t7Orm
+ FhpJDpRsMMreuF5cwBvyjhQoQ2GgfCOZMXZgqcIimZpSfqIWp2BlYnI1SKiytaBlB74Cg7Ltiuyh
+ 6CEBpC4xNhD6tmOCxNm5EhyMZ18KgZ1nU0gs1YahyLd+Pxu+lHeaivw0H3R9aDFKW9pmyCLgfUBX
+ VIFk+O76+noKbCiBxpYUgkZLLcah49aiY2ilzQiVjxD8HmMRHFOftVdURxlMB+jY5EQycZpvxKN4
+ dsEeJ6+d/zqam4hVTtI+DdST/fEwodbXIfpdejFwoiJHyWwjytRffJHYhyF3ydNnEPnZcIsQfRN4
+ y/5vdIXw9Ox04BPj8hnRxeL8CWXP0o7A8vxy+grhViNL6sf/sHGUVAb1GDpuHpk1+SNgclT2v+W8
+ xj2UTq7+P/QjoMo8od6GiJrU85JHt4hlOf+X26HNvWAxXNxtRa7GGCId1uPkcfIPAAAA//8DAAwL
+ t+odBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a649d6a60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:26 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1705'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_b0cb3f8574a2fac54baa9b81e5458776
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqS/k7crOtxtQ7fe3bCHW4aAkWmbrSxpEuXUKPq/D7J7
+ cdp1wPxgyPzIjx9pkU8TAMWFWoPSNYpuvJl9+KzvP/66u/ijEFm4pbv5vHr8Fu3DV8/xm5rmCLe7
+ Jy3fo+baNd6QsLMDrAOhUGZdXp4uVoury4uLHmhcQSaHVV5mp/PzmaSwc7PF8uT8JbJ2rCmqNfw5
+ AQB46t9Zoy3oUa1hMf1uaShGrEitD04AKjiTLQpj5ChoRU1HUDsrZLNsm4w5AsQ5s9VozJh4eJ6O
+ zmOj0JjtzY/36SPp9ut19xBw9bO+qnb7T82no3wDded7QWWy+tCgI/xgX79JBqAsNn3sbXfb9236
+ 1gFDlRqykmWrp41i65Ns1Hqj7oIrkhb4Qi3Tfg18VztLsDyDu+A2G7vZ2N9rAkv71xAE8oFi5gSE
+ yJXlkjVageSrgAWBaymAD9SySxH6HxrnkMl2iU0Bfyc0LB1wBHrU5HNxaKawZ6lzXMOpgQaFAqOJ
+ kCIVIHVwqapdkjn8Qh2UhJICRWCrTSpoPSiewU1nsWENP0WDtoCCozfYAVuhKmBO1budXd3eQYNs
+ QWNDAXvjh+UFXLOzrEHX7AfKaxSh0IHhkrJkbnL5kVuagsEobCtAKJMxUGAHroSasO2y7KHoIQHE
+ Lgo14Pu2U4Qoydoc7GsnLhcCOyd1JjFc1QJZvnH72fClnS04y4/zQddvLQU0uW01GwJ69GSzKkCB
+ H1ar1RSk5ggFtawJCjLcUhg6bgxZgRZNIihdAO/2FLLgEPusvaIqoK87ICt1ioxR4nyjntWrC/Y8
+ ee/819HcBCpTRPMyUC/258OEGlf54HbxzcCpki3HehsIY3/xVRTnh9w5T59BpVfDrXxwjZetuAey
+ mfDk7GTgU+PyGdHl8vwFFSdoRuD0/HL6DuG2IEHux/+wcTTqmooxdNw8mAp2R8DkqOx/y3mPeyid
+ bfV/6EdA53miYusDFaxflzy6BcrL+b/cDm3uBavh4m5LthUFH/iwHifPk38AAAD//wMAkPkfkx0G
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a700e3060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1687'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_0069590416e3f3566c937860e4705bff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqRt+iNvVxwGHG7ddcVhO+AyBIxM2+xkSZUop17R/32Q
+ 3YvTrgPmB0PmR378SIt8mgAoLtQalK5RdOPN7MNv+v7T9UM8b8uz+y+lpeX5z3cn31Y37UL+VtMc
+ 4Xb3pOVH1Fy7xhsSdnaAdSAUyqzLi9PF1eLy4vyyBxpXkMlhlZfZ6Xw1kxR2brZYnqxeImvHmqJa
+ w/cJAMBT/84abUGPag2L6Q9LQzFiRWp9cAJQwZlsURgjR0ErajqC2lkhm2XbZMwRIM6ZrUZjxsTD
+ 83R0HhuFxmx/vVt6clX84/NXu5Lf9x9XJRcPp78c5RuoO98LKpPVhwYd4Qf7+k0yAGWx6WNvupu+
+ b9O3Dhiq1JCVLFs9bRRbn2Sj1ht1G1yRtMAdtUz7NfBt7SzB8gxug9ts7GZjv9YElvavIQjkA8XM
+ CQiRK8sla7QCyVcBCwLXUgAfqGWXIvQ/NM4hk+0SmwIeEhqWDjgCPWryuTg0U9iz1Dmu4dRAg0KB
+ 0URIkQqQOrhU1S7JHD5TByWhpEAR2GqTCloPimfwsbPYsIZP0aAtoODoDXbAVqgKmFP1bmeXN7fQ
+ IFvQ2FDA3vhheQ7X7Cxr0DX7gfIaRSh0YLikLJmbXH7klqZgMArbChDKZAwU2IEroSZsuyx7KHpI
+ ALGLQg34vu0UIUqyNgf72onLhcDOSZ1JDFe1QJZv3H42fGlnC87y43zQ9aWlgCa3rWZDQI+ebFYF
+ KPDT1dXVFKTmCAW1rAkKMtxSGDpuDFmBFk0iKF0A7/YUsuAQ+6y9oiqgrzsgK3WKjFHifKOe1asL
+ 9jx57/zn0dwEKlNE8zJQL/bnw4QaV/ngdvHNwKmSLcd6Gwhjf/FVFOeH3DlPn0GlV8OtfHCNl624
+ v8hmwpOzk4FPjctnRJfL1QsqTtCMwOnqYvoO4bYgQe7H/7BxNOqaijF03DyYCnZHwOSo7H/LeY97
+ KJ1t9X/oR0DneaJi6wMVrF+XPLoFysv5v9wObe4Fq+Hibku2FQUf+LAeJ8+TfwAAAP//AwAJcvN9
+ HQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a7b8ece60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:30 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1534'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_796a5762728d88951905e1c1512a2b04
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mQdI26zVvPXQ4HK7dZUMPw2EZAkambd7JkipRbr2i/32Q
+ 3YvTrgPmB0PmR378SIt8nAAoLtQalK5RdOPN7PI3/e1Tlb5cV7+WLf9xfXL7YXV5zWX38ftyo6Y5
+ wu2/kZYfUXPtGm9I2NkB1oFQKLMuz08XF4t35+eLHmhcQSaHVV5mp/PVTFLYu9liebJ6jqwda4pq
+ DX9OAAAe+3fWaAt6UGvoeXpLQzFiRWp9cAJQwZlsURgjR0ErajqC2lkhm2XbZMwRIM6ZnUZjxsTD
+ 83h0HhuFxuxW5d0vi6+XVbj98uHKmfT57qpLNv19lG+g7nwvqExWHxp0hB/s61fJAJTFpo+96W76
+ vk1fO2CoUkNWsmz1uFVsfZKtWm/VJrgiaYHfqWW6XwNvamcJlmewCW67tdutva0JLN2/hCCQDxQz
+ JyBEriyXrNEKJF8FLAhcSwF8oJZditD/0DiHTLZPbAq4S2hYOuAI9KDJ5+LQTOGepc5xDacGGhQK
+ jCZCilSA1MGlqnZJ5vCJOigJJQWKwFabVNB6UDyDq85iwxo+RoO2gIKjN9gBW6EqYE7Vu529u9lA
+ g2xBY0MBe+Pl8md4z86yBl2zHyjfowiFDgyXlCVzk8uP3NIUDEZhWwFCmYyBAjtwJdSEbZdlD0UP
+ CSB2UagB37edIkRJ1uZgXztxuRDYO6kzieGqFsjyjbufDV/a2YKz/DgfdH1uKaDJbavZENCDJ5tV
+ AQr8dHFxMQWpOUJBLWuCggy3FIaOG0NWoEWTCEoXwLt7CllwiH3WXlEV0NcdkJU6RcYocb5VT+rF
+ BXuavHX+62huApUponkeqGf702FCjat8cPv4auBUyZZjvQuEsb/4KorzQ+6cp8+g0ovhVj64xstO
+ 3HeymfDk7GTgU+PyGdHlcvWMihM0I3C6Op++QbgrSJD78T9sHI26pmIMHTcPpoLdETA5Kvvfct7i
+ HkpnW/0f+hHQeZ6o2PlABeuXJY9ugfJy/i+3Q5t7wWq4uLuSbUXBBz6sx8nT5B8AAAD//wMASQZA
+ 7R0GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a867f2160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1493'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_c7e5596376edec57f9966c6d59fbcf91
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSPW/bMBTc9SteuXSxAsVW7NRL4SVNhhYoiiwtCoEhnyQmFB9BPiEVAv/3Qh+x
+ ZCQFunC4e3e4O/AlARBGiz0IVUtWjbfp4bt6/PqtOxwye2M3P/jnl/rZb2Oo7iPei1WvoIdHVPyq
+ ulDUeItsyI20CigZe9fL3Sb7lF3vduuBaEij7WWV5zSndJ2t8zS7TrPtJKzJKIxiD78SAICX4e0j
+ Oo1/xB6y1SvSYIyyQrE/HQGIQLZHhIzRRJaOxWomFTlGN6S+RWvpA9x9bKDGgCCdhoBSd8AENVp/
+ Abf0DEo6uIPRDDpqgUnL7vPSNGDZRtl3cq21E348pbRU+UAPceJPeGmciXURUEZyfaLI5MXAHhOA
+ 38Ma7VlB4QM1ngumJ3S94WU+2ol5/gW5nUgmlnbGN9OC526FRpbGxsWaQklVo56V8/Sy1YYWRLLo
+ /DbMe95jb+Oq/7GfCaXQM+rCB9RGnReezwL2n/NfZ6eNh8AidpGxKUrjKgw+mPF/lL7Ir1R5lWuU
+ KJJj8hcAAP//AwDH8QPUKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a90bc9d60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:32 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '371'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_0d915e707dc811ddb203106473104f9e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aie06m9gwDGzQFihaY72L7rZpXRgTciRNSpEsL7aFIP9e
+ UHJ8SbdA9SBQPJxzzgw189wDEKzEDISsMMra6cH7j/JpWaqmsbXa//BFTfffM08+LH99+HzvRT9H
+ 2McnkvE16kra2mmKbE0HS08YKbOObr8dTod3t7fjFqitIp3DShcHEzsYD8eTwfBuMHx3CKwsSwpi
+ Bn/0AACe23e2aBTtxQyG/dedmkLAksTseAhAeKvzjsAQOEQ0UfRPoLQmksmuTdL6DIjW6o1ErU/C
+ 3fN8tj7VCbXe7Pa/3ZT45aFsRp9WY/x59LR8evj988OZXkfduNZQkYw81ucMP+7P3ogBCIN1G7ts
+ lm3Z+m8PoC9TTSZm2+J5Ldi4FNdithbzarRYeauSjPCJtky7GfCqsoZgNIGVt/PrarRYr816beZu
+ 8UtFYGh3eQQ8OU8h8wNC4NJwwRJNhORKj4rAbsmD87RlmwK0dxuuIJM9JtYK/k6oOTbAAWgvyeVE
+ Ufdhx7HKcTWnGmqM5Bl1gBRIQay8TWVlU7yCn6iBgjAmTwHYSJ0UzebX7tV40nmVSzHXvPiuMViz
+ hB+DRqNAcXAaG2ATqfSYtefXms8jJnfLFdTIBiTW5PEt/n70Du7ZGpYgK3av8Py6E+5qd48xkm9A
+ c0E5U65z1QJvqQ8aQ2RTAkKRtAaFDdgCKsJtk7PtatVpQ2hCpBpce2sUIMRkTA52lY025w+PNlaZ
+ RHNZRchJarsbdF/SGsU5yXB1ViG3+LAljzoXvWJNQHtHJpsDjPDNdDrtQ6w4gKItSwJFmrfku/vS
+ mkyELepEUFgPzu7IZ98+tOKtsdKjqxogE6sUGEM86IsXcfG7vvS+tv7zrAs9FSmgPrTnYf/l2O/a
+ ls7bx/CmfUXBhkO18YShbSMRonWddtZpFUS6GBXCeVu7uIn2LzKZcDwZdXziNMlO6OhmekCjjahP
+ wGR4GEeXhBtFEbkdJsf5JVFWpE6hpzmGSbE9A3pnaf/bzte4u9TZlP+H/gTI3JGkNs6TYnmZ8umY
+ pzzp/+vYscytYdH9w5uCTUneeW6HrSjcZnIji5uJIiTRe+n9AwAA//8DAK1QYX11BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64a95dc4a60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3025'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_aad127aaf54f61027ca86619f5df8e8e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiZ114tgwAmQvQBZtusmiQZvWhTGhRuJkKZLlxY4a5N8L
+ So4v6RaoHgSKh3POmaFmnnsAggsxAyEVRlk7Pbi8lY+37/7+bX36qPD+6fyD/bWe1Jfqzv7+9YPo
+ 5wj78EgyvkYdSVs7TZGt6WDpCSNl1tHk3XA6PJ9MzlqgtgXpHFa5OBjbwcnwZDwYng+GZ5tAZVlS
+ EDP4owcA8Ny+s0VT0JOYwbD/ulNTCFiRmG0PAQhvdd4RGAKHiCaK/g6U1kQy2bVJWu8B0Vq9lKj1
+ Trh7nvfWuzqh1sunKv58/5O6ur36cv/p6m5yl77VHz9/muzpddSNaw2Vychtffbw7f7sjRiAMFi3
+ sdfNdVu2/tsD6KtUk4nZtnheCDYuxYWYLcRcjS5uvC2SjPCVVkzrGfCNsoZgNIYbb+fHanSxWJjF
+ wszdxS+KwND68Ah4cp5C5geEwJXhkiWaCMlVHgsCuyIPztOKbQrQ3m04gkz2kFgX8FdCzbEBDkBP
+ klxOFHUf1hxVjqs51VBjJM+oA6RABUTlbaqUTfEIfqQGSsKYPAVgI3UqaDY/dq/Gk86rXIq55ouP
+ jcGaJXwOGk0BBQensQE2kSqPWXt+rHk/Ynx+fQM1sgGJNXl8i1+OzuA9W8MSpGL3Cs+PO+Gudu8x
+ RvINaC4pZ8p1rlrgFfVBY4hsKkAok9ZQYAO2BEW4anK2Xa06bQhNiFSDa2+NAoSYjMnBTtloc/7w
+ YKPKJJorFSEnqe160H1JawrOSYajvQq5iy8r8qhz0RVrAnpyZLI5wAg/TKfTPkTFAQpasSQoSPOK
+ fHdfWpOJsEKdCErrwdk1+ezbh1a8NVZ5dKoBMlGlwBjiRl+8iIPf9aX3vfWfe13oqUwB9aY9N/sv
+ 237XtnLePoQ37StKNhzU0hOGto1EiNZ12lmnVRDpYFQI523t4jLab2Qy4cl41PGJ3STboaPT6QaN
+ NqLeAePhZhwdEi4LisjtMNnOL4lSUbEL3c0xTAXbPaC3l/a/7XyPu0udTfV/6HeAzB1JxdJ5Klge
+ prw75ilP+v86ti1za1h0//CyZFORd57bYStKtxyfyvJ0XBCS6L30/gEAAP//AwD8r4JOdQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64aa9bf9960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3108'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_86ef61bb4455de10ac11d8a08d4a65e7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiH20Ezt1LjYMA5suFmh3s3X38tK6MMbUSJqEIrm8yFGD/HtB
+ ybHsdAtUDwLFwznnzFAzTwMAwZmYg5AlBllZNXr7u7z/+rPfPozdh/zb/feHOr6ffFpReP/xDxTD
+ FGG29yTDS9SZNJVVFNjoDpaOMFBinVz/NJ6Nb66vZy1QmYxUCitsGE3N6GJ8MR2Nb0bjq31gaViS
+ F3P4cwAA8NS+k0Wd0aOYw3j4slOR91iQmB8OAQhnVNoR6D37gDqIYQ9KowPp5FpHpY6AYIzaSFSq
+ F+6ep6N1XydUajNtrv7+Un289u+2j252u/r12/2X5uLKHOl11I1tDeVRy0N9jvDD/vyVGIDQWLWx
+ d81dW7bh6wPoiliRDsm2eFoL1jaGtZivxaKcLFfOZFEG+Ew1024OvCqNJphMYeXM4rycLNdrvV7r
+ hV1+LQk07U6PgCPryCd+QPBcaM5Zog4QbeEwIzA1ObCOajbRQ3u3/gwS2TayyuB7RMWhAfZAj5Js
+ ShTVEHYcyhRXcaygwkCOUXmInjIIpTOxKE0MZ/CBGsgJQ3TkgbVUMaP54ty+GI8qrVIpFoqX7xqN
+ FUv4xSvUGWTsrcIGWAcqHCbtxbni44jpzd0KKmQNEity+Bp/O7mCWzaaJciS7Qu8OO+Eu9rdYgjk
+ GlCcU8qUq1Q1zzUNQaEPrAtAyKNSkGEDJoeSsG5Stl2tOm3wjQ9UgW1vjTz4ELVOwbY0waT8YWtC
+ mUgUF2WAlKQyu1H3JY3OOCXpz44qZJe/1eRQpaKXrAjo0ZJO5gADvJnNZkMIJXvIqGZJkJHimlx3
+ X0qRDlCjigS5cWDNjlzy7Xwr3horHNqyAdKhjJ7Rh72+eBYnv+vz4Efrv4660FEePap9e+73nw/9
+ rkxhndn6V+0rctbsy40j9G0bCR+M7bSTTqsg4smoENaZyoZNMA+kE+HFdNLxiX6S9ejkcrZHgwmo
+ emA63o+jU8JNRgG5HSaH+SVRlpT1of0cw5ixOQIGR2n/286PuLvUWRf/h74HZOpIyjbWUcbyNOX+
+ mKM06f/r2KHMrWHR/cObnHVBzjpuh63I7WZ6KfPLaUZIYvA8+AcAAP//AwCbu6asdQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64abe08a460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4330'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_b47da29c9c10cfc042cf8fd55de855f9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiZ04N8MIsMFukaB1NrtogAZ1YTDUSJxdimTJoW0hyL8v
+ KDm+pFugehAoHs45Z4aaeekBCCrEBITSklXtzeDDF/XtTx6b2f3j090Nrk75/ivdrO/Ofj2vZqKf
+ I9zzN1T8FnWkXO0NMjnbwSqgZMyso4vT4dXw8uLytAVqV6DJYZXnwdgNToYn48HwcjA83wRqRwqj
+ mMBfPQCAl/adLdoC12ICw/7bTo0xygrFZHsIQARn8o6QMVJkaVn0d6ByltFm1zYZswewc2ahpDE7
+ 4e552Vvv6iSNWawrvn/6Xd9+uf389On28eIxfa8/3n262NPrqBvfGiqTVdv67OHb/ck7MQBhZd3G
+ zppZW7b++wMyVKlGy9m2eJkLsj7xXEzmYqpH1w/BFUkxfMUl4WoC9KCdRRiN4SG46bEeXc/ndj63
+ U3/9h0awuDo8AgF9wJj5QUKkylJJSlqG5KsgCwS3xAA+4JJcitDebTyCTPacyBTwT5KGuAGKgGuF
+ PicqTR9WxDrH1ZRqqCVjIGkipIgFsA4uVdolPoLfsIESJaeAEcgqkwqcTI/9m/Fk8iqXYmro+mNj
+ ZU0K7qKRtoCCojeyAbKMVZBZe3psaD9ifDl7gFqSBSVrDPI9/mF0DjfkLClQmvwbPD3uhLva3Uhm
+ DA0YKjFnSnWuWqQl9sHIyGQrkFAmY6CQDbgSNMplk7PtatVpQ2wiYw2+vTWMEDlZm4O9duxy/vDs
+ WGcSQ5VmyEkatxp0X8rZgnKS8WivQv768xKDNLnomgwCrj3abA4kwy9XV1d9YE0RClySQijQ0BJD
+ d1/GoGVYSpMQShfAuxWG7DvEVrw1VgXpdQNoWadIMvJGX7yKg9/1tfez9d97XRiwTFGaTXtu9l+3
+ /W5c5YN7ju/aV5RkKepFQBnbNhKRne+0s06rINLBqBA+uNrzgt13tJnwZDzq+MRuku3Q0dnVBmXH
+ 0uyA8XAzjg4JFwWypHaYbOeXkkpjsQvdzTGZCnJ7QG8v7X/b+Rl3lzrZ6v/Q7wCVOxKLhQ9YkDpM
+ eXcsYJ70/3VsW+bWsOj+4UVJtsLgA7XDVpR+MT5T5dm4QImi99r7AQAA//8DAM8KFu51BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64ada28da60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4553'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_8db18eb2d877ad3943621dc3a076ba2e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jNhC9+1cMiB7txM46G9swDGQRdLtts/EGPQSoC2NCjaRJKZLlhxwhyH9f
+ UHIsO90C1UGg+DjvvRlq5mUAIDgTCxCyxCArq0bX3+STrH59+Dmv7u4/3xRP44fm9+l9vPlw8fVK
+ DFOEeXwiGd6izqSprKLARnewdISBEuvk6sN4Pp5dzWYtUJmMVAorbBhNzehifDEdjWej8cd9YGlY
+ khcL+HMAAPDSvpNFndGzWMB4+LZTkfdYkFgcDgEIZ1TaEeg9+4A6iGEPSqMD6eRaR6WOgGCM2kpU
+ qhfunpejdV8nVGqLFdeX91/q+S9frz8/rN01T9w3dcdHeh11Y1tDedTyUJ8j/LC/eCcGIDRWbext
+ c9uWbfj+ALoiVqRDsi1eNoK1jWEjFhuxLCertTNZlAHuqWbaLYDXpdEEkymsnVmel5PVZqM3G720
+ qz9KAk270yPgyDryiR8QPBeac5aoA0RbOMwITE0OrKOaTfTQ3q0/g0T2GFll8E9ExaEB9kDPkmxK
+ FNUQdhzKFFdxrKDCQI5ReYieMgilM7EoTQxn8Bs1kBOG6MgDa6liRovluX0zHlVapVIsFa9uGo0V
+ S/jiFeoMMvZWYQOsAxUOk/byXPFxxHR2u4YKWYPEihy+x68nH+ETG80SZMn2DV6ed8Jd7T5hCOQa
+ UJxTypSrVDXPNQ1BoQ+sC0DIo1KQYQMmh5KwblK2Xa06bfCND1SBbW+NPPgQtU7BtjTBpPzh0YQy
+ kSguygApSWV2o+5LGp1xStKfHVXIru5qcqhS0UtWBPRsSSdzgAF+ms/nQwgle8ioZkmQkeKaXHdf
+ SpEOUKOKBLlxYM2OXPLtfCveGisc2rIB0qGMntGHvb54FSe/6+vgR+u/jrrQUR49qn177vdfD/2u
+ TGGdefTv2lfkrNmXW0fo2zYSPhjbaSedVkHEk1EhrDOVDdtg/iadCC+mk45P9JOsRyeX8z0aTEDV
+ A9PxfhydEm4zCsjtMDnML4mypKwP7ecYxozNETA4Svvfdn7E3aXOuvg/9D0gU0dStrWOMpanKffH
+ HKVJ/1/HDmVuDYvuH97mrAty1nE7bEVut9NLmV9OM0ISg9fBdwAAAP//AwCCQ7czdQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64af7a99060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3048'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_922323603650089cf5c1a37057e60a7a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevnDZVEmzdNm9IC6InlARKkgIRY79krg4fsZ+AVbV/jtydrtJ
+ RSv14sPMm9HMyPcZgDBa7ECoXrIavM3f36i79tdQudu25y8fbn9/+jaUvfysrpo/N2KVFNTcoeIH
+ 1YWiwVtkQ+5Iq4CSMbmWm6rYFm8323IiBtJok6zznK9zHkND+WVxuc6LdV5sT+qejMIodvA9AwC4
+ n96U02n8K3ZQrB6QAWOUHYrd+QhABLIJETJGE1k6FquZVOQY3RT9I1pLr+D69QA9BgQm6NF62NN4
+ AV97yaCkg2vQBC2FBAOTlvt3S7+A7Rhl6uRGa0/44RzQUucDNfHEn/HWOBP7OqCM5FKYyOTFxB4y
+ gB/TEOOjbsIHGjzXTD/RJcNyfbQT8/wLcnMimVjaGa/K1RNutUaWxsbFkEJJ1aOelfPqctSGFkS2
+ 6Px/mKe8j72N615iPxNKoWfUtQ+ojXpceD4LmD7nc2fnjafAIu4j41C3xnUYfDDHr9H6+o1uqqK6
+ qtpWZIfsHwAAAP//AwBq+VBhKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b0bccaf60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '747'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_673156fcb34fdeae3a2f3aff5880c732
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7ahm97sd+S7SLoLtymbdCirQqDnqEkJqOZ2bnI0Qb592Kk
+ rO2kKVA9CCMe8vCQGvJhBCBYiQ0IWWOUjdOTi5/lbdXMrv74ctP+pvTHPd98XG8/rH/df/2sxDhH
+ 2P0tyfgtaipt4zRFtmaApSeMlFnn75az9ez9u/WiBxqrSOewysXJahKT39vJYrZYTWaryWz9FF1b
+ lhTEBv4aAQA89O+s0yi6FxuYjb9ZGgoBKxKboxOA8FZni8AQOEQ0UYxPoLQmksnSTdL6DIjW6p1E
+ rU+Jh+fh7HxqFmq9+7RtP3yq7n68+2qu1O0Vln/um8uL/e9n+QbqzvWCymTksUln+NG+eZEMQBhs
+ +thtt+17N37pgL5KDZmYZYuHQrBxKRZiU4hrb1WSEX6hlumwAb6urSGYr+Da26IwRWFuagJDh+cQ
+ eHKeQuYEhMCV4ZIlmgjJVR4VgW3Jg/PUsk0B+p8appDJ9om1gi8JNccOOADdS3K5ONRjOHCsc1zD
+ qYEGI3lGHSAFUhBrb1NV2xSn8Jk6KAlj8hSAjdRJ0WZQ/H1nsGEJPwSNRoHi4DR2wCZS5TEnKgqz
+ er+9hgbZgMSGPBaFuZi/hUu2hiXImt1Adokxku9Ac0lZLDe58MAtjUFjiGwqQCiT1qCwA1tCTdh2
+ WfBQ7kAPoQuRGnB9wylAiMmYHOxqG20uAfY21plEc1VHyNK1PUyGL2mN4iw9TAddP7XkUeeG1awJ
+ 6N6RyaoAI3y3Xq/HEGsOoKhlSaBIc0t+6LXWZCK0qBNBaT04eyCfBfvQZ+0VVR5d3QGZWKfAGGKY
+ FuJRPLtaj6PXzn+fTYynMgXUT6P0ZH88zqa2lfN2H16MmijZcKh3njD0V16EaN2QO+fpM4j0bKyF
+ 87ZxcRftHZlMuFgtBj5xWj0ndD6fP6HRRtQnYPlmOX6FcKcoIveDf9w1EmVN6hR62jmYFNszYHRW
+ 9r/lvMY9lM6m+j/0J0DmSSK1c54Uy+cln9w85dX8X27HNveCxXBxdyWbirzz3C9GUbrdG7VfzpZv
+ l2UpRo+jfwAAAP//AwCI4IC/JgYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b128e1360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3135'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_2fce30afa65b7562100258cb4c5df61e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqTJNZe89dZ13Y9ivWF3t2EeAkWibbaypEmUU6Po/z7I
+ 7iVp1wHzgyHzIz9+pEU+jgAEabEBoWrJqvFmcvFR3d3Xf8jLH1fUtlefrubfXnzHV8vLdO9WYpwj
+ 3O4OFX+NmirXeINMzg6wCigZM+t8tZitZ+9X6/MeaJxGk8Mqz5PlhFPYucnZ7Gw5mS0ns/VzdO1I
+ YRQb+HMEAPDYv7NOq/FBbGA2/mppMEZZodgcnABEcCZbhIyRIkvLYnwElbOMNku3yZgTgJ0zWyWN
+ OSYenseT87FZ0pjt/uHTR/7y8/n1Z3Md3XW6+/73bmXT7CTfQN35XlCZrDo06QQ/2DevkgEIK5s+
+ 9qa76Xs3fu0gQ5UatJxli8dCkPWJC7EpxG1wOimGX7El3G+AbmtnEeZLuA2uKGxR2N9qBIv7lxAE
+ 9AFj5gQJkSpLJSlpGZKvgtQIrsUAPmBLLkXof2qcQibbJTIa/k7SEHdAEfBBoc/FSTOGPXGd4xpK
+ DTSSMZA0EVJEDVwHl6raJZ7CT9hBiZJTwAhklUkaN4Piy87KhhT8EI20GjRFb2QHZBmrIHOiorDL
+ 9ze30EiyoGSDQRaFvZifwwdylhSomvxA9kEyY+jAUIlZLDW58EgtjsHIyGQrkFAmY0DLDlwJNcq2
+ y4KHcgd6iF1kbMD3DccIkZO1OdjXjl0uAXaO60xiqKoZsnTj9pPhSzmrKUuP00HXLy0GaXLDajII
+ +ODRZlUgGb5Zr9dj4JoiaGxJIWg01GIYem0MWoZWmoRQugDe7TFkwSH2WXtFVZC+7gAt1ymSjByn
+ hXgSL67W0+it818nExOwTFGa51F6tj8dZtO4yge3i69GTZRkKdbbgDL2V15Edn7InfP0GUR6MdbC
+ B9d43rK7R5sJz5ZnA584rp4jOp/Pn1F2LM0RWLxbjN8g3GpkSf3gH3aNkqpGfQw97hyZNLkTYHRS
+ 9r/lvMU9lE62+j/0R0DlSUK99QE1qZclH90C5tX8X26HNveCxXBxtyXZCoMP1C9GUfrtO71bzBbn
+ i7IUo6fRPwAAAP//AwDEU6hkJgYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b27180360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 15:59:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3517'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_7fb3d9f5b8400ebb67d1a0b6065ff4c5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU247jNgx9z1cQQh+TwLnMziRvGxRFL0g3O2iBFnURMBJtc1eWtLok4x3Mvxey
+ Z5PMdArUD4bMQx4e0iIfRwCClViDkA1G2To9ef9RfjLbzQ8PGxt+/3N+szjd3369VfW2KO61GOcI
+ e/hEMn6LmkrbOk2RrRlg6QkjZdbZ7aJYFXe3q1UPtFaRzmG1i5PlJCZ/sJN5MV9OiuWkWD1HN5Yl
+ BbGGv0YAAI/9O+s0ih7EGorxN0tLIWBNYn12AhDe6mwRGAKHiCaK8QWU1kQyWbpJWl8B0Vq9l6j1
+ JfHwPF6dL81Crfez3fLnXxv/o9rdLf74vPk4/3D7ZVlQcZVvoO5cL6hKRp6bdIWf7etXyQCEwbaP
+ 3Xbbvnfj1w7o69SSiVm2eCwFG5diKdal2HmrkoxwT0em0xp411hDMFvCztuyNGVpfmsIDJ1eQuDJ
+ eQqZExAC14YrlmgiJFd7VAT2SB6cpyPbFKD/qWEKmeyQWCv4klBz7IAD0IMkl4tDPYYTxybHtZxa
+ aDGSZ9QBUiAFsfE21Y1NcQq/UAcVYUyeArCROilaD4q/7wy2LOGnoNEoUBycxg7YRKo95kRlaZZ3
+ 2x20yAYktuSxLM372TvYsDUsQTbsBrINxki+A80VZbHc5sIDH2kMGkNkUwNClbQGhR3YChrCY5cF
+ D+UO9BC6EKkF1zecAoSYjMnBrrHR5hLgYGOTSTTXTYQsXdvTZPiS1ijO0sN00PXhSB51bljDmoAe
+ HJmsCjDCd6vVagyx4QCKjiwJFGk+kh96rTWZCEfUiaCyHpw9kc+Cfeiz9opqj67pgExsUmAMMUxL
+ 8SReXK2n0Vvnv68mxlOVAurnUXq2P51nU9vaeXsIr0ZNVGw4NHtPGPorL0K0bsid8/QZRHox1sJ5
+ 27q4j/YzmUw4X84HPnFZPRd0Nps9o9FG1BdgcbMYv0G4VxSR+8E/7xqJsiF1Cb3sHEyK7RUwuir7
+ 33Le4h5KZ1P/H/oLIPMkkdo7T4rly5Ivbp7yav4vt3Obe8FiuLj7ik1N3nnuF6Oo3P5GHRbF4t2i
+ qsToafQPAAAA//8DAGUtG9cmBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b3deead60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3845'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_58ac9cbf663d6a4670e6a27e9a94ed4e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jNhC9+1cMiB7txI6dTWwYAXZRoE0XbrNtemjrwhiTI2l2KZLLDznaIP+9
+ oOTYTpoC1UGg+DjvvRlq5nEAIFiJBQhZYZS106P3n+Rn/+NPxXx7vfvt53Ya5qsV/nD5Z7pFFcUw
+ R9jtZ5LxOepM2tppimxND0tPGCmzTq6m4/n4+no87YDaKtI5rHRxNBvF5Ld2dDG+mI3Gs9F4vo+u
+ LEsKYgF/DQAAHrt39mkUPYgFjIfPOzWFgCWJxeEQgPBW5x2BIXCIaHrPe1BaE8lk6yZpfQJEa/VG
+ otZH4f55PFkfi4Vab66Kbx93v3+9183sj/vZp1XxLbovRt+e6PXUresMFcnIQ5FO8MP+4pUYgDBY
+ d7GrdtXVbvj6APoy1WRiti0e14KNS3EtFmuxrCY3d96qJCP8Sg3TbgF8V1lDMJnBnbfL82pys16b
+ 9dos3c19RWBo9/IIeHKeQuYHhMCl4YIlmgjJlR4VgW3Ig/PUsE0BugsOZ5DJtom1gq8JNccWOAA9
+ SHI5UdRD2HGsclzNqYYaI3lGHSAFUhArb1NZ2RTP4CO1UBDG5CkAG6mTosXy3D0bTzqvcimWmm++
+ bw3WLOE2aDQKFAensQU2kUqPWXt5rvk0Yna9uoMa2YDEmjy+xt9P3sEHtoYlyIrdM7w874X72n3A
+ GMm3oLmgnCnXuWqBGxqCxhDZlIBQJK1BYQu2gIqwaXO2fa16bQhtiFSD626NAoSYjMnBrrLR5vxh
+ a2OVSTSXVYScpLa7Uf8lrVGckwxnJxVyN7805FHnolesCejBkcnmACN8N5/PhxArDqCoYUmgSHND
+ vr8vrclEaFAngsJ6cHZHPvv2oRPvjJUeXdUCmVilwBjiXl88iRe/69PgrfXfJ13oqUgB9b499/tP
+ h37XtnTebsOr9hUFGw7VxhOGro1EiNb12lmnUxDpxagQztvaxU20X8hkwovZRc8njuPsiE4ur/Zo
+ tBH1EZjO58M3CDeKInI3TA7zS6KsSB1Dj3MMk2J7AgxO0v63nbe4+9TZlP+H/gjI3JGkNs6TYvky
+ 5eMxT3nc/9exQ5k7w6L/hzcFm5K889wNW1G4zaXaTsfTd9OiEIOnwT8AAAD//wMAMouBGXoGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b572ae060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4692'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_484079f1624ab7b0a3c40c7e42c35aa6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jRgy9+1cQgx5tw46d1PYtQYDtogg2XeTQoCoMeoaSmIxmZudDthDkvxcj
+ ZW0nTYHqIIz4yMdHasiXEYBgJTYgZI1RNk5Prv+QT/vd49fF4+HHob28+qK/PBu9Ojy3t49PYpwj
+ 7O6JZPwZNZW2cZoiWzPA0hNGyqzzXxez9Wy1mq16oLGKdA6rXJwsJzH5nZ1czC6Wk9lyMlu/RdeW
+ JQWxgb9GAAAv/TvrNIoOYgOz8U9LQyFgRWJzdAIQ3upsERgCh4gmivEJlNZEMlm6SVqfAdFavZWo
+ 9Snx8LycnU/NQq23af/n9Zxvmtvfnr/Nr9F0D2r28H1fnuUbqDvXCyqTkccmneFH++ZDMgBhsOlj
+ 77q7vnfjjw7oq9SQiVm2eCkEG5diITaFuPdWJRnhO7VM+w3wfW0NwXwJ994WhSkK81ATGNq/h8CT
+ 8xQyJyAErgyXLNFESK7yqAhsSx6cp5ZtCtD/1DCFTLZLrBX8SKg5dsAB6CDJ5eJQj2HPsc5xDacG
+ GozkGXWAFEhBrL1NVW1TnMLv1EFJGJOnAGykToo2g+LbzmDDEr4GjUaB4uA0dsAmUuUxJyoKs1zd
+ 3UODbEBiQx6LwlzPr+CGrWEJsmY3kN1gjOQ70FxSFstNLjxwS2PQGCKbChDKpDUo7MCWUBO2XRY8
+ lDvQQ+hCpAZc33AKEGIyJge72kabS4CdjXUm0VzVEbJ0bfeT4UtaozhLD9NB17eWPOrcsJo1AR0c
+ mawKMMIv6/V6DLHmAIpalgSKNLfkh15rTSZCizoRlNaDs3vyWbAPfdZeUeXR1R2QiXUKjCGGaSFe
+ xbur9Tr67Pz32cR4KlNA/TZKb/bX42xqWzlvd+HDqImSDYd66wlDf+VFiNYNuXOePoNI78ZaOG8b
+ F7fRPpPJhBfLi4FPnFbPCZ3P529otBH1CVhcLsafEG4VReR+8I+7RqKsSZ1CTzsHk2J7BozOyv63
+ nM+4h9LZVP+H/gTIPEmkts6TYvm+5JObp7ya/8vt2OZesBgu7rZkU5F3nvvFKEq3vVS7xWxxtShL
+ MXod/QMAAP//AwByK3WMJgYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b758f8e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3380'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_24d14c26cf46ebc47767f061e3900b20
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTWvcMBC9+1dMdcnFLrZjyHYvIZcluaUthUIpRpbGtnZtjZDGNEvY/17k/fCG
+ pNCLkN6b9zRvpNcEQBgt1iBUL1mNbsgevqpdrp7a7y/bb7uf1b7dyPZ5I6vnVm9+iDQqqNmi4rPq
+ s6LRDciG7JFWHiVjdC3ubvMv+WpVlDMxksYhyjrHWUXZaKzJyryssvwuK1YndU9GYRBr+JUAALzO
+ a+zTanwRa8jTMzJiCLJDsb4UAQhPQ0SEDMEElpZFupCKLKOdW3+6GWE7BQYJzlPn5ZhCMzFEvEeP
+ IK0Gj1LvgQl6HBzsafoEj/QHZEMTx+N9PN6EuPWg5R46Mra7v77SYzsFGWPbaRhO+OGSYaDOeWrC
+ ib/grbEm9LVHGcjGfgOTEzN7SAB+z7Oa3sQXztPouGbaoY2GRXW0E8sLLWR5JplYDgt+u0o/cKs1
+ sjRDuJq1UFL1qBfl8jBy0oauiOQq8/tmPvI+5ja2+x/7hVAKHaOunUdt1NvAS5nH+H//VXaZ8dyw
+ CPvAONatsR16583x97SuzhuZ66Ks2kIkh+QvAAAA//8DAGhdBntLAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b8bbeb860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '478'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_25fb079209411e32b7d60ac3ba7e0edd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jNhC9+1cMiB7txPJ6s4lhBEjaPRRpUG836G5RF8aYGonTUCSXH7aFIP+9
+ oOTYTroFqoNA8XHeezPUzNMAQHApZiCkwigbp0c3n+Tj+PZz/PL120NhPn5hs/v0y+LdxeePd5Od
+ GOYIu/6bZHyJOpO2cZoiW9PD0hNGyqzFh3fjq/HlZTHpgMaWpHNY7eJoakcNGx5NxpPpaPxhVFzu
+ o5VlSUHM4M8BAMBT984+TUk7MYPx8GWnoRCwJjE7HAIQ3uq8IzAEDhFNFMMjKK2JZLJ1k7Q+AaK1
+ eiVR66Nw/zydrI/FQq1XN80fDw/b33d39ePl1/ePP14wPW79Wp3o9dSt6wxVychDkU7ww/7sjRiA
+ MNh0sfftfVe74dsD6OvUkInZtnhaCjYuxaWYLcVcFdcLb8skI/xGG6btDHihrCEoprDwdn6uiuvl
+ 0iyXZu6uHxSBoe3rI+DJeQqZHxAC14YrlmgiJFd7LAnshjw4Txu2KUB3weEMMtk6sS7hW0LNsQUO
+ QDtJLieKeghbjirHNZwaaDCSZ9QBUqASovI21cqmeAZ31EJFGJOnAGykTiXN5ufuxXjSeZVLMdd8
+ /VNrsGEJPweNpoSSg9PYAptItcesPT/XfBoxvbxfQINsQGJDHt/iN8UF3LI1LEEqdi/w/LwX7mt3
+ izGSb0FzRTlTbnLVAm9oCBpDZFMDQpW0hhJbsBUowk2bs+1r1WtDaEOkBlx3axQgxGRMDnbKRpvz
+ h7WNKpNorlWEnKS221H/Ja0pOScZzk4q5K5/3ZBHnYuuWBPQzpHJ5gAj/HB1dTWEqDhASRuWBCVp
+ 3pDv70trMhE2qBNBZT04uyWfffvQiXfGao9OtUAmqhQYQ9zri2fx6nd9Hnxv/ddJF3qqUkC9b8/9
+ /vOh37Wtnbfr8KZ9RcWGg1p5wtC1kQjRul4763QKIr0aFcJ527i4ivaRTCacTIueTxzH2REt3l/t
+ 0Wgj6iMwHe/H0WvCVUkRuRsmh/klUSoqj6HHOYapZHsCDE7S/red73H3qbOp/w/9EZC5I6lcOU8l
+ y9cpH495yuP+v44dytwZFv0/vKrY1OSd527Yisqtxmscl8VkWhVi8Dz4BwAA//8DABB2CKJ6BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b902ed860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:15 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2246'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_f4cd7ed598598b9b10fce54e9a3fb903
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227bSAx991cQg320A8tx68tbmr0FXWO9Qd/WhUHPUBLb0cx0LnaEIP9ejJRa
+ TpoFVg/CiIc8PKSGfBwBCFZiDULWGGXj9OTmH/n1msspnQ6HL9f3t5tQ3R8Wv514tvq2EeMcYQ9f
+ SMYfUVfSNk5TZGt6WHrCSJm1WFxPV9PlsnjXAY1VpHNY5eJkbicNG57MprP5ZLqYFMvn6NqypCDW
+ 8O8IAOCxe2edRtGDWMN0/MPSUAhYkVifnQCEtzpbBIbAIaKJYjyA0ppIJks3SesLIFqr9xK1HhL3
+ z+PFeWgWar3/OPN490mp+ve77fTmz/d/LG5v5+1fxUW+nrp1naAyGXlu0gV+tq9fJQMQBpsudtNu
+ ut6NXzugr1JDJmbZ4nEn2LgUd2K9E1tvVZIR7unIdFoDb2trCIo5bL3d7cxuZz7VBIZOLyHw5DyF
+ zAkIgSvDJUs0EZKrPCoCeyQPztORbQrQ/dRwBZnskFgr+JZQc2yBA9CDJJeLQz2GE8c6xzWcGmgw
+ kmfUAVIgBbH2NlW1TfEKPlILJWFMngKwkTopWveKJ/Bra7BhCXdBo1GgODiNLbCJVHnMqTq3+XKz
+ hQbZgMSGPHbGm+I9fGBrWIKs2fWUHzBG8i1oLilL5iaXH/hIY9AYIpsKEMqkNShswZZQEx7bLLsv
+ uk8AoQ2RGnBd2ylAiMmYHOxqG20uBA421plEc1VHyPK1PU36L2mN4iw/XPW6/j6SR53bVrMmoAdH
+ JqsCjPDLarUaQ6w5gKIjSwJFmo/k+45rTSbCEXUiKK0HZ0/ks2Afuqydosqjq1sgE+sUGEMMVzvx
+ JF5csKfRW+fPF3PjqUwB9fNAPdufzhOqbeW8PYRXAydKNhzqvScM3cUXIVrX5855ugwivRhu4bxt
+ XNxH+5VMJpzNi55PDAtoQIti8YxGG1EPwPW75fgNwr2iiNyN/3njSJQ1qSF02DyYFNsLYHRR9s9y
+ 3uLuS2dT/R/6AZB5nkjtnSfF8mXJg5unvKD/y+3c5k6w6C/uvmRTkXeeu/UoSrefHnCqitm8LMTo
+ afQdAAD//wMA99lDQiwGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64b9f6aac60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1549'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4732e17356534b0387ea969bef4ed53b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7ageU4G9tvXhQFdot00+4FXawLg56hJGZHM9O5yBGC/Hsx
+ UtZy0hSoHoQRD3l4SA35MAEQrMQGhKwxysbp2fZ3+f3qSxt/udvy9iNWBV6+X/zpju+v6tVWTHOE
+ PdyRjD+iLqRtnKbI1gyw9ISRMmtxfTlfz1er4roHGqtI57DKxdnSzho2PFvMF8vZ/HpWrJ6ia8uS
+ gtjAtwkAwEP/zjqNonuxgfn0h6WhELAisTk5AQhvdbYIDIFDRBPFdASlNZFMlm6S1mdAtFbvJWo9
+ Jh6eh7Pz2CzUen9cL/2bd5+v7i8Xv62/fJx/1ss2fPh6d5ZvoO5cL6hMRp6adIaf7JsXyQCEwaaP
+ velu+t5NXzqgr1JDJmbZ4mEn2LgUd2KzE7feqiQj/EEt03EDfFtbQ1As4dbb3c7sduZTTWDo+BwC
+ T85TyJyAELgyXLJEEyG5yqMisC15cJ5atilA/1PDBWSyQ2Kt4O+EmmMHHIDuJblcHOopHDnWOa7h
+ 1ECDkTyjDpACKYi1t6mqbYoX8Ct1UBLG5CkAG6mTos2geAY/dwYblvAuaDQKFAensQM2kSqPOVXv
+ tlzd3EKDbEBiQx5747Z4A2/ZGpYga3YD5VuMkXwHmkvKkrnJ5QduaQoaQ2RTAUKZtAaFHdgSasK2
+ y7KHoocEELoQqQHXt50ChJiMycGuttHmQuBgY51JNFd1hCxf2+Ns+JLWKM7yw8Wg60NLHnVuW82a
+ gO4dmawKMMJP6/V6CrHmAIpalgSKNLfkh45rTSZCizoRlNaDs0fyWbAPfdZeUeXR1R2QiXUKjCGG
+ i514FM8u2OPktfNfZ3PjqUwB9dNAPdkfTxOqbeW8PYQXAydKNhzqvScM/cUXIVo35M55+gwiPRtu
+ 4bxtXNxH+51MJlwsi4FPjAtoRIth5/SjHVGPwOXVavoK4V5RRO7H/7RxJMqa1Bg6bh5Miu0ZMDkr
+ +99yXuMeSmdT/R/6EZB5nkjtnSfF8nnJo5unvKD/y+3U5l6wGC7uvmRTkXee+/UoSrefH3CuisWy
+ LMTkcfIPAAAA//8DAKW+XrQsBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64baa5b0860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:18 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1671'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_81bfe71b3bd092615b11512dd84ff6ed
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW8jNwy9+1cQQo+24UnctePbbj+ANA2S3e7msHVh0BJnxKxGUvVhZxDkvxea
+ ydpOmgKdw0DDRz4+ckQ+jgAEK7ECITUm2Xozef9Rfnu30DfnaDV++WN3/3B1tZdttf+Jv/wixiXC
+ be9Jpu9RU+labyixswMsA2GiwlotzmcXs+WyWvZA6xSZEtb4NJm7ScuWJ2ezs/lktphUy+do7VhS
+ FCv4cwQA8Ni/i06r6EGsYDb+bmkpRmxIrA5OACI4UywCY+SY0CYxPoLS2US2SLfZmBMgOWc2Eo05
+ Jh6ex5PzsVlozIbVHhd3l/73r5dX+PHu15u7y/b+N80n+QbqzveC6mzloUkn+MG+epUMQFhs+9jr
+ 7rrv3fi1A4Ymt2RTkS0e14Ktz2ktVmtxG5zKMsEn2jHtV8C32lmCag63wa3Xdr22nzWBpf1LCAL5
+ QLFwAkLkxnLNEm2C7JuAisDtKIAPtGOXI/Q/NU6hkG0zGwV/ZzScOuAI9CDJl+LQjGHPSZe4lnML
+ LSYKjCZCjqQg6eByo11OU7iiDmrClANFYCtNVrQaFE/g585iyxIuo0GrQHH0Bjtgm6gJWFL1bvPl
+ 9S20yBYkthSwN76v3sEHdpYlSM1+oPyAKVHowHBNRTK3pfzIOxqDwZjYNoBQZ2NAYQeuBk2464rs
+ oeghAcQuJmrB922nCDFla0uw1y65UghsXdKFxHCjExT5xu0nw5d0VnGRH6eDrpsdBTSlbZoNAT14
+ skUVYIIfLi4uxpA0R1C0Y0mgyPCOwtBxY8gm2KHJBLUL4N2eQhEcYp+1V9QE9LoDsknnyBhTnK7F
+ k3hxwZ5Gb53/OpmbQHWOaJ4H6tn+dJhQ4xof3Da+GjhRs+WoN4Ew9hdfxOT8kLvk6TOI/GK4hQ+u
+ 9WmT3DeyhfBsXg184riAjmhVLZ7R5BKaI3D+43L8BuFGUULux/+wcSRKTeoYetw8mBW7E2B0Uva/
+ 5bzFPZTOtvk/9EdAlnkitfGBFMuXJR/dApUF/V9uhzb3gsVwcTc124aCD9yvR1H7zWyLM1WdzetK
+ jJ5G/wAAAP//AwDE4k5tLAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64bb5ddd860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1573'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_f6ad9c905fbcab2698cd6d161e482b31
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227bRhB911cMFnmUbFEWIlkQDMRoCzitUcXOS1AXwmg5JMde7m73Qpsx/O/F
+ koooOy5QPVDkXM6cOcsZPo8ABOdiBUJWGGRt1eTTF/mwlGyeNvOHmzO+/ePLr5+vLq/8ZfnbtRPj
+ lGF29yTDj6wTaWqrKLDRvVs6wkAJNVucTc+ny+Vs2jlqk5NKaaUNk7mZ1Kx5MpvO5pPpYpIt99mV
+ YUlerOCvEQDAc3dNPHVOT2IFHVZnqcl7LEmsDkEAwhmVLAK9Zx9QBzEenNLoQDpR11GpI0cwRm0l
+ KjUU7n/PR/eDWKjUFsP3pviqz2a33+aL+eJ29+3+5rO+90f1eujWdoSKqOVBpCP/wb56UwxAaKy7
+ 3Ov2utNu/DYAXRlr0iHRFs93grWN4U6s7sS6yi42zuRRBrihhulxBbypjCbI5rBxZn1aZRd3dzrh
+ 7P/W9uJrRaDp8XUoOLKOfKoDCJ5LzQVL1AGiLR3mBKYhB9ZRwyZ66A7an0AC20VWOfwTUXFogT3Q
+ kySbGkY1hkcOVcqrOdZQYyDHqDxETzmEyplYViaGE/idWigIQ3TkgbVUMafV+tS+bSCqH5buUfHF
+ L63GmiVceYU6h5y9VdgC60Clw8Rjfar4bdZ8eb2BGlmDxJocvhfzKfsIl2w0S5AV2+OQ9elAZND2
+ EkMg14LigpISXCdVPTc0BoU+sC4BoYhKQY4tmAIqwqZNavRa9lzAtz5QDbY7XfLgQ9Q6JdvKBJP0
+ gZ0JVQJRXFYBUuPKPE76J2l0zqlxf/KOgvbiz4YcqnQ4FSsCerKkE0nAAB/Oz8/HECr2kFPDkiAn
+ xQ25/lyVIh2gQRUJCuPAmkdyib/zHYmOYOnQVi2QDlX0jD7seYgX8er1fhm9d//30dQ6KqJHtR/n
+ vf3lsB+UKa0zO/9m3EXBmn21dYS+Gzvhg7F97VSnqyDiq9UirDO1DdtgHkgnwNk86/HEsP4Gb7b4
+ uPcGE1ANjnm2GL8DuM0pIHfL57DvJMqK8iF12HsYczZHjtFR2z/TeQ+7b511+X/gB4dMk0v51jrK
+ Wb5ueQhzlD4P/xV2kLkjLPp3eVuwLslZx91yFoXdTnc4zbPZvMjE6GX0LwAAAP//AwCOgFohqgYA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64bc1688b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:23 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2399'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_8c170b66e8592bdc5f569f21742aadf4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBDd9RVXLllkw4pjNPESJF1iFBmaokMRFAZFnkQ6FI8gT0mNwP9eiHYs
+ B02BLhzeu/fw3h1fCwBhtViCUEay6oKb3HxTT7e3rrr//oODeTDNdvNA1de6+Xn/JYpyUFC9QcVv
+ qqmiLjhkS35Pq4iScXCtPs9nV7PLy/N5JjrS6AZZG3gyny4m3MeaJrPqfHFQGrIKk1jCYwEA8Jrf
+ IaPX+FssYVa+IR2mJFsUy+MQgIjkBkTIlGxi6VmUI6nIM/oc+w6do0+wOutg0ycGCc82ci8dHJUl
+ JIIVaPJnDEY+IzSIzvo2lVD3nLUGIwITGHQBttTDi2UD0m/ZWN9mxCPqKdzRCyjpYXXwzxSTltvr
+ 04QRmz7JYUO+d+6A746VHbUhUp0O/BFvrLfJrCPKRH6ol5iCyOyuAPiVV9u/25YIkbrAa6Yn9INh
+ dbG3E+MxR3K+OJBMLN2IX1yVH7itNbK0Lp2cRiipDOpROd5R9trSCVGcdP47zEfe+97Wt/9jPxJK
+ YWDU6xBRW/W+8DgWcfjq/xo77jgHFmmbGLt1Y32LMUSbP1s+5a74AwAA//8DAEOjjMtrAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64bd1f89760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '901'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_c14d7d376740be7e46720d6442464391
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mQZqk1yRv1+1lG4J1uO0Ot3UIGIm2ucqSTqKSGkX/+yC7
+ l6TdDZgfDJkf+fEjLfJpBKDYqA0o3aDoNtjJ+1/1w/fvPhx+/8lVJn/ELeXjaiaPt9ubaq7GJcLv
+ /yYtX6Om2rfBkrB3A6wjoVBhvbpZzNaz1Wq+7IHWG7IlrA4yWUyvJ5Lj3k9mV/Prl8jGs6akNvDn
+ CADgqX8Xjc7Qo9rAbPzV0lJKWJPanJwAVPS2WBSmxEnQiRqfQe2dkCuyXbb2AhDv7U6jtefEw/N0
+ cT43Cq3d7T9/WX2YLz4110fafn64cYvFR/dJ/3GRb6DuQi+oyk6fGnSBn+ybN8kAlMO2j912275v
+ 47cOGOvckpMiWz3dq4rI7FE/3KvNvfqtIXB0BL5rvCO4WsJd9BApREolBhAS144r1ugEcqgjGgJ/
+ oAgh0oF9TtD/sDSFQrbPbA18yWhZOuAE9KgpFPFox3BkaUpcy7mFFoUio02QExmQJvpcNz7LFH6m
+ DipCyZESsNM2G4IfOocta/gxWXQGDKdgsQN2QnXEkmIMy9X2DlpkBxpbijiG4vr+6h3csnesQTcc
+ pnCLIhQ7sFxREcltKTjxgcZgMQm7GhCqbC0Y7MBX0BAeuiJ0KHNgh9QloRZC9CZrSpAkO1eCQ+PF
+ F+mw99IUEst1I70a64+T4Ut7Z7gIT1P45UARbelRw5aAHgO5IghQ4Lv1ej0GaTiBoQNrAkOWDxSH
+ 9lpLTuCANhNUPkLwR4pFa0x9wl5MHTE0HZCTJifGJGl6r57Vq9vyPPrW+a+LIYhU5YT2ZTpe7M+n
+ cbO+DtHv05vpURU7Ts0uEqb+FqskPgy5S54+g8qvJlWF6NsgO/EP5ArhfDkf+NR5k5zR9eoFFC9o
+ z/bF8mUZvObbGRLkfpRP20OjbsicQ89bBLNhfwGMLqr+t5pvcQ+Vs6v/D/0Z0GV2yOxCJMP6dcVn
+ t0hl0f6X26nLvWA1XNldxa6mGCKfVt3oefQPAAAA//8DACy0tEnpBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64bd9bb8460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:26 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2003'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_dffd4b2684fb64fabe82f011a89fe7d8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghD7aRuy4Tey3BlmxYsiSpgNWdBkMWuLdcdFJqkQ5OQT574Pu
+ XNtJO2D3cNDxIz9+5Il8GgEoNmoFSjcoug128v6Tvv+w+IU/34bN9ez2Ej9cOvfn5dnFtbkNalwi
+ /OYf0vI9aqp9GywJezfAOhIKFdbZ2enJ8uT8fH7WA603ZEtYHWRyOn07kRw3fnIym7/dRTaeNSW1
+ gr9GAABP/btodIYe1QpOxt8tLaWENanV3glARW+LRWFKnASdqPEB1N4JuSLbZWuPAPHerjVae0g8
+ PE9H50Oj0Nr1t/brF2duPp198d3NnH6X+edfP36t3x3lG6i70AuqstP7Bh3he/vqVTIA5bDtY6+6
+ q75v49cOGOvckpMiWz3dqYrIbFDf36nVnfqjIXD0AHzTeEcwW8BN9BApREolBhAS144r1ugEcqgj
+ GgK/pQgh0pZ9TtD/sDSFQrbJbA18y2hZOuAE9KgpFPFox/DA0pS4lnMLLQpFRpsgJzIgTfS5bnyW
+ KfxGHVSEkiMlYKdtNgSXncOWNXxMFp0BwylY7ICdUB2xpBjD4vzqBlpkBxpbijiG4vp+9g4u2DvW
+ oBsOU7hAEYodWK6oiOS2FJx4S2OwmIRdDQhVthYMduAraAi3XRE6lDmwQ+qSUAshepM1JUiSnSvB
+ ofHii3TYeGkKieW6kV6N9Q+T4Ut7Z7gIT1O43lJEW3rUsCWgx0CuCAIUeLNcLscgDScwtGVNYMjy
+ luLQXmvJCWzRZoLKRwj+gWLRGlOfsBdTRwxNB+SkyYkxSZreqWf14rY8j352/vtoCCJVOaHdTcfO
+ /rwfN+vrEP0mvZoeVbHj1KwjYepvsUriw5C75OkzqPxiUlWIvg2yFn9PrhDOF/OBTx02yQFdnu9A
+ 8YL2YD9d7JbBS761IUHuR3m/PTTqhswh9LBFMBv2R8DoqOof1fyMe6icXf1/6A+ALrNDZh0iGdYv
+ Kz64RSqL9r/c9l3uBavhyq4rdjXFEHm/6kbPo38BAAD//wMAcY1oL+kFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64be7ffaf60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1918'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_c7c17eaa73edfcb1021cf824848af242
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUbW8bNwz+7l9BCP1oG35Jt9jf0qxFii2rA7RbgWUwaIl34qKTVL04uQb574Pu
+ XJ+TdsDuw0HHh3z4kCfycQQgWIk1CKkxycabycWNvLvavF/9pi+WX/WHj1effvf7y5s/3i0+L2di
+ XCLc7h+S6VvUVLrGG0rsbA/LQJiosM5/Xs5Ws/PzxaoDGqfIlLDap8ly+nqScti5yWy+eH2I1I4l
+ RbGGv0YAAI/du2i0ih7EGmbjb5aGYsSaxProBCCCM8UiMEaOCW0S4wGUziayRbbNxpwAyTmzlWjM
+ kLh/Hk/OQ6PQmO3lnzfX89yu5OeYv9xdms3s6tPq7cPFSb6euvWdoCpbeWzQCX60r18kAxAWmy72
+ ur3u+jZ+6YChzg3ZVGSLx1tREakdyrtbsb4VHzWBpXvgjXaWYH4Gm+AgkA8USwwgRK4tVyzRJsi+
+ DqgI3J4C+EB7djlC98PiFArZLrNR8CWj4dQCR6AHSb6IRzOGe066xDWcG2gwUWA0EXIkBUkHl2vt
+ cprCr9RCRZhyoAhspcmK4JfWYsMS3keDVoHi6A22wDZRHbCkGMPZ+fUGGmQLEhsKOIbiejH/Cd6w
+ syxBavZTeIMpUWjBcEVFJDel4Mh7GoPBmNjWgFBlY0BhC64CTbhvi9C+zJ4dYhsTNeCDU1lShJiy
+ tSXYa5dckQ47l3QhMVzr1Kkx7n7Sf0lnFRfhcQof9hTQlB5pNgT04MkWQYAJXq1WqzEkzREU7VkS
+ KDK8p9C31xiyCfZoMkHlAnh3T6FoDbFL2ImpA3rdAtmkc2SMKU5vxZN4dlueRj86/30yBIGqHNEc
+ puNgfzqOm3G1D24XX0yPqNhy1NtAGLtbLGJyvs9d8nQZRH42qcIH1/i0Te6ObCFcnC16PjFskgFd
+ nR/A5BKawb48OyyD53xbRQm5G+Xj9pAoNakhdNgimBW7E2B0UvX3an7E3VfOtv4/9AMgy+yQ2vpA
+ iuXzige3QGXR/pfbscudYNFf2W3FtqbgAx9X3ehp9C8AAAD//wMASdJ3sekFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64bf5dd8960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2022'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_e9a7099d08f2aca88606145a95b7f6fc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bNhB+919xIPYoG3bsZLHfGnTo1iVY2g1FgWYwzuRJvIUiWf5wogX53wdK
+ ruVkHTA9CNR9d999d+Ld0wRAsBIbEFJjkq030zcf5P17utfv269vrz92n7C5uPhdtmfLi8/v9qIq
+ EW73F8n0LWomXesNJXZ2gGUgTFRYFz8u5+v55eVy0QOtU2RKWOPTdDk7n6Ycdm46X5ydHyK1Y0lR
+ bODLBADgqX8XjVbRo9jAvPpmaSlGbEhsjk4AIjhTLAJj5JjQJlGNoHQ2kS2ybTbmBEjOma1EY8bE
+ w/N0ch4bhcZspV99lj/Zd93f50Fdf9RXV4vrn+eyOck3UHe+F1RnK48NOsGP9s2rZADCYtvH3nQ3
+ fd+q1w4YmtySTUW2eLoTNZHaoby/E5s78YcmsPQAfKudJVis4DY4COQDxRIDCJEbyzVLtAmybwIq
+ ArenAD7Qnl2O0P+wOINCtstsFHzNaDh1wBHoUZIv4tFU8MBJl7iWcwstJgqMJkKOpCDp4HKjXU4z
+ +JU6qAlTDhSBrTRZEbztLLYs4Zdo0CpQHL3BDtgmagKWFBWsLm9uoUW2ILGlgBUU1zeLC7hiZ1mC
+ 1OxncIUpUejAcE1FJLel4Mh7qsBgTGwbQKizMaCwA1eDJtx3RehQ5sAOsYuJWvDBqSwpQkzZ2hLs
+ tUuuSIedS7qQGG506tUY9zAdvqSziovwOIPf9hTQlB5pNgT06MkWQYAJfliv1xUkzREU7VkSKDK8
+ pzC01xiyCfZoMkHtAnj3QKFoDbFP2ItpAnrdAdmkc2SMKc7uxLN4cVueJ987/3kyBIHqHNEcpuNg
+ fz6Om3GND24XX02PqNly1NtAGPtbLGJyfshd8vQZRH4xqcIH1/q0Te6ebCE8W50NfGLcJCO6vjyA
+ ySU0o325OiyDl3xbRQm5H+Xj9pAoNakxdNwimBW7E2ByUvW/1XyPe6icbfN/6EdAltkhtfWBFMuX
+ FY9ugcqi/S+3Y5d7wWK4stuabUPBBz6uusnz5B8AAAD//wMASiqwAukFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c040beb60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2140'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_f1c2438f33a2e12a45bf2231eae90bf8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghD46RhI7i+23dFuBYs2WAkOHZBkMWuLdsdFJikTZOQT574Pu
+ XNtJO2D3cNDxIz9+5Il8HgEoNmoJSjcoug325Oqzfvj05edtTnJ3cflhM3esf/10+/vXv2Z3H9S4
+ RPj1V9LyLWqifRssCXs3wDoSChXWs8vp6eJ0Pp9Oe6D1hmwJq4OcTCcXJ5Lj2p+cnp1f7CIbz5qS
+ WsLfIwCA5/5dNDpDT2oJp+NvlpZSwprUcu8EoKK3xaIwJU6CTtT4AGrvhFyR7bK1R4B4b1carT0k
+ Hp7no/OhUWjtan57dTl/vL25a7/Q3dTcBv3x0Unmo3wDdRd6QVV2et+gI3xvX75JBqActn3sdXfd
+ 92381gFjnVtyUmSr53tVEZk16od7tbxXfzYEjrbAN413BGczuIkeIoVIqcQAQuLaccUanUAOdURD
+ 4DcUIUTasM8J+h+WJlDI1pmtgceMlqUDTkBPmkIRj3YMW5amxLWcW2hRKDLaBDmRAWmiz3Xjs0zg
+ N+qgIpQcKQE7bbMh+KVz2LKGj8miM2A4BYsdsBOqI5YUY5jNr2+gRXagsaWIYyiuV2c/wXv2jjXo
+ hsME3qMIxQ4sV1REclsKTryhMVhMwq4GhCpbCwY78BU0hJuuCB3KHNghdUmohRC9yZoSJMnOleDQ
+ ePFFOqy9NIXEct1Ir8b67cnwpb0zXISnCfyxoYi29KhhS0BPgVwRBCjwbrFYjEEaTmBow5rAkOUN
+ xaG91pIT2KDNBJWPEPyWYtEaU5+wF1NHDE0H5KTJiTFJmtyrF/XqtryMfnT+52gIIlU5od1Nx87+
+ sh836+sQ/Tq9mR5VsePUrCJh6m+xSuLDkLvk6TOo/GpSVYi+DbIS/0CuEJ7Pzgc+ddgkB3Qx34Hi
+ Be3BPp3tlsFrvpUhQe5Heb89NOqGzCH0sEUwG/ZHwOio6u/V/Ih7qJxd/X/oD4Aus0NmFSIZ1q8r
+ PrhFKov2v9z2Xe4Fq+HKrip2NcUQeb/qRi+jfwEAAP//AwAVD+W06QUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c12aa6660a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2057'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_f70f7b35f2b75a02f4a370d1d30f078a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTU/cMBS851e8+sJlgwIbtsteKrgAp4pDD7SqImO/JC6On7FfBBHa/17lg01W
+ LRIXH2bejGZGfksAhNFiB0LVklXjbXp1r56+Bx2vu+2P9jK/vvcvWD686ofnnzelWPUKevyDit9V
+ p4oab5ENuZFWASVj73r2dZ1dZtvtejMQDWm0vazynOaUnmfneZpt02wzCWsyCqPYwa8EAOBtePuI
+ TuOr2EG2ekcajFFWKHaHIwARyPaIkDGayNKxWM2kIsfohtS3aC19gbuTBmoMCNJpCCh1B0xQo/Wn
+ cEsvoKSDOxjNoKMWmLTsvi1NA5ZtlH0n11o74ftDSkuVD/QYJ/6Al8aZWBcBZSTXJ4pMXgzsPgH4
+ PazRHhUUPlDjuWB6QtcbnuWjnZjnX5CbiWRiaWd8PS147FZoZGlsXKwplFQ16lk5Ty9bbWhBJIvO
+ /4b5n/fY27jqM/YzoRR6Rl34gNqo48LzWcD+c350dth4CCxiFxmbojSuwuCDGf9H6Yv8QpUXuUaJ
+ ItknfwEAAP//AwBElxVQKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c20bf5b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '402'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_028fae13ca59827d2569b9881c626806
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghAF7OQd24iS23zoUKAI0WNYV2NBlMGiJd8dYJ2mi5MYN8t8H
+ nV2fk2bA/GDc8RM/fvxO5NMIQLFRS1C6xaS7YMfvftObXxs3/fD74812+u2jfN7ww81H88k5915V
+ JcOvH0in71ln2nfBUmLv9rCOhIkK6/T6YrKYzOcXVz3QeUO2pDUhjWd+fD45n40n8/Hk6pDYetYk
+ agl/jQAAnvr/ItEZelRLmFTfIx2JYENqeTwEoKK3JaJQhCWhS6oaQO1dIldUu2ztCZC8tyuN1g6F
+ 97+nk+fBJ7R2lbemfrim9eRPuvzyaXMd69v2jw/zLyf19tS70Auqs9NHf07wY3z5qhiActj1ube7
+ 29626vUBjE3uyKUiWz3dq5rIrFFv7tXyXn1uCRI9JgjRb9mQAEL5TpFacsJbgkhbpq/ga0gtAd+1
+ 3hFMZ3AXfQUtN63lpk3sGuAkINw4rlmjS5BDE9GQVBAidZw7WGe2Bv7JaDntKkBnYEM7qAlTjiQg
+ WbeA0ld6v3PYsYYbseWcYQkWdxXM5rd30CE70NhRxD3Nu+kV/MLesQbdcjiD0thBeojIQntWLq1J
+ 39gaU6K4A8s19RwF33P+LIBrLiIh+WKNyZpAUnauNBpan7wAO9hiZJ8Fjh5o7wyXTyVncJPKq7bZ
+ 9MUxgSEJnKh3qlgHIbKm4u1Pi8Wi+tFh8HVNUYAeNVlLLsEWbSaofYTgv1KELAUv8ntVTcTQ7oBc
+ arMwSpKze/WsXtyJ59Fbz3+fXPVIdRa0hxk4xJ+PQ2V9E6Jfy6sZUTU7lnYVCaW/q0qSD/vapU5f
+ QeUX86hC9F1Iq+Q35Arh+Wy651PDuhjQxfwAJp/QDvGLi0X1Bt/KUELuB/a4IzTqlsyQOuwKzIb9
+ CTA66fpHNW9x7ztn1/wf+gHQmkIiswqRDOuXHQ/HIpVt+l/Hji73gpXsJFG3qtk1FEPkfqGpOqxm
+ l7q+nBlCUqPn0b8AAAD//wMAHtmVMNkFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c249cfe60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4895'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c93f7f90d9eb696db0cb392053c6adab
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwW4jNwy9+ysIoUAv48COvant2xbNAimaRYrdpoemMGiJM8ONRlIlyhtvkH8v
+ NOPYTjYF6oMxwyc+Pr4R+TgCUGzUCpRuUXQX7Pj97/r+8/KPWTAfrpC4vZy621+3XbO9/saoqpLh
+ N19Iy3PWmfZdsCTs3QDrSChUWKc/zSbLyWIxn/ZA5w3ZktYEGc/9+HxyPh9PFuPJxT6x9awpqRX8
+ NQIAeOz/i0Rn6EGtYFI9RzpKCRtSq8MhABW9LRGFKXESdKKqI6i9E3JFtcvWngDivV1rtPZYePg9
+ njwffUJr139+u3SXHzfzi8Vvs9h9uZUP84+LT5Pbk3oD9S70gurs9MGfE/wQX70qBqAcdn3u9e66
+ t616fQBjkztyUmSrxztVE5kN6vs7tbpTn1sCoQeBEP2WDSVAKN8pUksu8ZYg0pbpK/gapCXgm9Y7
+ gukcbqKvoOWmtdy0wq4BlgSJG8c1a3QCOTQRDaUKQqSOcwebzNbAPxkty64CdAbuaQc1oeRICVLW
+ LWDqK/2yc9ixhqtkyznDKVjcVTBfXN9Ah+xAY0cRB5r30wv4mb1jDbrlcAalsb30EJETDaxcWkt9
+ YxsUobgDyzX1HAUfOH9MgBsuIkF8scZkTZAkO1caDa0Xn4AdbDGyzwkOHmjvDJdPlc7gSsqrttn0
+ xVHAUAos1DtVrIMQWVPx9oflcll97zD4uqaYgB40WUtOYIs2E9Q+QvBfKUJOBS/ye1VNxNDugJy0
+ OTEmSWd36km9uBNPo7ee/z656pHqnNDuZ2AffzoMlfVNiH6TXs2IqtlxateRMPV3VSXxYahd6vQV
+ VH4xjypE3wVZi78nVwjPhx3QD+Lzujiiy8UeFC9oj/HZbFm9wbc2JMj9wB52hEbdkjmmHncFZsP+
+ BBiddP29mre4h87ZNf+H/ghoTUHIrEMkw/plx8djkco2/a9jB5d7wSrtklC3rtk1FEPkfqGpOqzn
+ 73T9bm4ISY2eRv8CAAD//wMArd4oCtkFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c440d8960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3331'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_ed64231b670e94b72f27882f77676bd2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227bOBB991cM+LIvtmEnTuP4Lb0BaZtFEhRIt83CGJMjcWqK5PLiRAjy7wvK
+ juVku0D1IFBzOWfOiDOPAwDBSixASI1JNt6Mzq/l+tvFzUm4fdhMb+YNfft0Ojmi79dvdf4shiXD
+ rX6STM9ZY+kabyixs1u3DISJCur09HhyNpnPZyedo3GKTEmrfRrN3OhocjQbTeajyZtdonYsKYoF
+ /BgAADx271KiVfQgFjAZPlsaihFrEot9EIAIzhSLwBg5JrRJDHundDaRLVXbbMyBIzlnlhKN6Ym3
+ z+PBue8TGrP0zZ8fP6zNXw+37pzO3l2f3+R3p+2XeMC3hW59V1CVrdz358C/ty9ekQEIi02Xe9le
+ dm0bvg7AUOeGbCpli8c7URGpFcr1nVjcia+aINFDAh/chhVFQCj/KZAmG3lDEGjDdA+ugqQJ+Eo7
+ SzCdwVVwQ9Bca8O1Tmxr4BQhcm25Yok2QfZ1wA7SKvCBGs4NrDIbBf9kNJzaMXymFirClANFiFlq
+ wNgRvW8tNizhIpqSrjh6g+0QZvPLK2iQLUhsKOCwQz+fvoG37CxLkJo9YCAomtlZUmMoKnc60EQH
+ PiBH2hJxERs7qStMiUILhivqYLcU4ClULjRoJQFb2GBglyPshUtnFReuOIaLVD6lyUX4qgWUa+vu
+ Dam6RBbC0jPwgSXBKif4mWPiiikCJ7jnpLsgRRuW9EeEDZpMULkA3t1TgBwp7DqqXXJ1QK9bIJt0
+ jowxxfGdeBIv7sDT4Ffnvw+udqAqRzS7O7+zP+2HyLjaB7eKr2ZCVGw56mUgjN3dFDE5v+UuPB2D
+ yC/mT/jgGp+Wya3JFsCj2XSLJ/r10HvPdpMskktoevvx8XPWC7ylooTcDeh+J0iUmlSf2u8GzIrd
+ gWNwoPq/1fwKe6ucbf078L1DSvKJ1NIHUixfKu7DApXt+X9h+y53BYvYxkTNsmJbU/CBuwUmKr+c
+ ncjqZKYISQyeBv8CAAD//wMA8Rnbh8kFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c59e86160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2930'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_cc29e070d91a39e62e6857c74ca291c5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968g9GwbTuJmjt+SDcWKLlsKFG3RZTBoiXfHWSdpEs/xIch/HyQ7
+ PifNgN2Dcean7/tIHsXHEYBio5agdIOi22An15/0Bg1eya5/v364/lSFy5+33359/+X3b7Ooxpnh
+ 13+TlmfWVPs2WBL2bg/rSCiUVc9+uphdzRaL+aIArTdkM60OMpn7yfnsfD6ZLSazywOx8awpqSX8
+ OQIAeCy/OUVnaKeWMBs/R1pKCWtSy+MhABW9zRGFKXESdKLGA6i9E3I5a9dZewKI93al0drBeP88
+ nrwPfUJrV7L7eLfZfP/623X1vet1+nqzbm++2D9O/PbSfSgJVZ3Tx/6c4Mf48pUZgHLYFu5tf1va
+ Nn59AGPdteQkp60e71VFZNaoN/dqea8+NwRCO4EQ/ZYNJUDI3ylSQy7xliDSlukBfAXSEPBd4x3B
+ 2Rzuoh9Dw3VjuW6EXQ0sCRLXjivW6AS6UEcsks5AiNRy18K6Y2vgnw4tSz+Fj9RDRShdpASp0w1g
+ Kka/9A5b1vAh2Uw3nILFfgzzxe0dtMgONLYUcVzUr88u4Ya9Yw264QAYCXLN7B2ZKeQqD3WEiJxo
+ 78G5zlSqXKMIxR4sV1QUaacpZD7agxMEipWPLTpNwA62GNl3CY71a+8MZ0qawgfJf7XtTPFCAUMp
+ sFDpUm4bhMiaxj92FXxVUUwlA2vJCWzRdgSVjxD8A0XoUsZLVxsvvo4Ymh7ISdMlxiRpeq+e1Is5
+ eBq99f7XyXhHqrqE9jD3h/jT8SJZX4fo1+nVvVAVO07NKhKmMp8qiQ977+xTHFT34g6qEH0bZCV+
+ Qy4Lns/P9npqWBEDevUMihe0Q/zi4nz8ht7KkCCXS3rcCxp1Q2agDvsBO8P+BBidVP1jNm9p7ytn
+ V/8f+QHQebzIrEIkw/plxcOxSHmD/texY5dLwir1SahdVexqiiFyWWKqCqv5O129mxtCUqOn0b8A
+ AAD//wMAFdbDw80FAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c6d8ed960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:00:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '7545'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_e63136a81a21434abc36c2f9df97ad9c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghAF7OQd24mS239J1KwI0RYoVQ7tlMGiJd8dEJ6mi5MYI8t8H
+ nV2fk2bA/GDc8RM/fvxO5OMIQLFRS1C6xaS7YMeXH/U91/KbD+s/3+n3X6/47Hf94a+bL79ubu5U
+ VTL8+o50+p51on0XLCX2bgfrSJiosE5/OZssJvP5+UUPdN6QLWlNSOOZH59OTmfjyXw8udgntp41
+ iVrC3yMAgMf+v0h0hh7UEibV90hHItiQWh4OAajobYkoFGFJ6JKqBlB7l8gV1S5bewQk7+1Ko7VD
+ 4d3v8eh58AmtXb37PH17OfkU5ncONx82Otr15P2b+R9H9XbU29ALqrPTB3+O8EN8+aIYgHLY9bnX
+ 2+veturlAYxN7silIls93qqayKxR39+q5a361BIkekgQot+wIQGE8p0iteSENwSRNkzfwNeQWgK+
+ ab0jmM7gJvoKWm5ay02b2DXASUC4cVyzRpcghyaiIakgROo4d7DObA18zWg5bStAZ+CetlATphxJ
+ QLJuAaWv9HbrsGMNV2LLOcMSLG4rmM2vb6BDdqCxo4g7msvpBbxh71iDbjmcQGlsLz1EZKEdK5fW
+ pG9sjSlR3ILlmnqOgu84fxbANReRkHyxxmRNICk7VxoNrU9egB1sMLLPAgcPtHeGy6eSE7hK5VXb
+ bPrimMCQBE7UO1WsgxBZU/H2p8ViUf3oMPi6pihAD5qsJZdggzYT1D5C8N8oQpaCF/m9qiZiaLdA
+ LrVZGCXJya16Us/uxNPoted/jq56pDoL2v0M7ONPh6GyvgnRr+XFjKiaHUu7ioTS31UlyYdd7VKn
+ r6Dys3lUIfoupFXy9+QK4elsuuNTw7oY0MV8Dyaf0A7xs7NF9QrfylBC7gf2sCM06pbMkDrsCsyG
+ /REwOur6RzWvce86Z9f8H/oB0JpCIrMKkQzr5x0PxyKVbfpfxw4u94KVbCVRt6rZNRRD5H6hqTqs
+ Zue6Pp8ZQlKjp9G/AAAA//8DAHdjqyrZBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64c9e3ad560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4845'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_3321427ce45b566eacb3a52f80273381
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTU/cMBS851c8fOllg7Jk+dpLhUTVcuiBlqqVEIq89kticPxc+6Vii/a/V84u
+ myBA6sWHmTejmZGfMgBhtFiCUK1k1XmbX1yrB/fr8vvX338/q3hdX8ibxv25//HpslXfxCwpaHWP
+ ip9Vh4o6b5ENuS2tAkrG5Do/LYvz4uzsZD4QHWm0SdZ4zhc592FF+VFxtMiLRV6c79QtGYVRLOE2
+ AwB4Gt6U02l8FEsoZs9IhzHKBsVyfwQgAtmECBmjiSwdi9lIKnKMboj+Ba2lA7j60EGLAYEJWrQe
+ 1tQfws9WMijp4Ao0QU0hwcCk5frj1C9g3UeZOrne2h2+2Qe01PhAq7jj93htnIltFVBGcilMZPJi
+ YDcZwN0wRP+im/CBOs8V0wO6ZDhfbO3EOP+EPN2RTCztiJfz2RtulUaWxsbJkEJJ1aIelePqsteG
+ JkQ26fw6zFve297GNf9jPxJKoWfUlQ+ojXpZeDwLmD7ne2f7jYfAIq4jY1fVxjUYfDDbr1H76liv
+ yqI8KetaZJvsHwAAAP//AwC3IsDfKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64cbd6d8960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '619'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_72e13f111d3a068dc87183cfaed3da34
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227bSAx991cQgz7ahh07aey3BukNi2DTbLFFsF4Y9AwlsRnNTOciRwjy74uR
+ UstJs0D1IIx4yMNDasiHEYBgJdYgZIVR1k5P3n2Rd8b502/fLs/+Xr3H25sbvwhfDX28DVqMc4Td
+ fScZf0ZNpa2dpsjW9LD0hJEy6/ztYraanZ+fzTugtop0DitdnCwnMfmdnZzMTpaT2XIyWz1FV5Yl
+ BbGGf0YAAA/dO+s0iu7FGmbjn5aaQsCSxPrgBCC81dkiMAQOEU0U4wGU1kQyWbpJWh8B0Vq9laj1
+ kLh/Ho7OQ7NQ6+2X2xhu8L271PuLz636ZL7/+ND8tbg8ytdTt64TVCQjD006wg/29YtkAMJg3cVe
+ tVdd78YvHdCXqSYTs2zxsBEFkdqhvNuI9UZce6uSjHBDDdN+DXxdWUMwX8K1t5uN2WzM14rA0P45
+ BJ6cp5BpASFwabhgiSZCcqVHRWAb8uA8NWxTgO6/hilksl1ireBHQs2xBQ5A95Jcrg/1GPYcqxxX
+ c6qhxkieUQdIgRTEyttUVjbFKfxBLRSEMXkKwEbqpGjdK57AZWuwZgmfg0ajQHFwGltgE6n0mFN1
+ bsvzq2uokQ1IrMljZ3w3P4MLtoYlyIpdT3mBMZJvQXNBWTLXufzADY1BY4hsSkAoktagsAVbQEXY
+ tFl2X3SfAEIbItXgurZTgBCTMTnYVTbaXAjsbKwyieayipDla7uf9F/SGsVZfpj2uv5syKPObatY
+ E9C9I5NVAUZ4s1qtxhArDqCoYUmgSHNDvu+41mQiNKgTQWE9OLsnnwX70GXtFJUeXdUCmVilwBhi
+ mG7Eo3h2xx5Hr53/PRodT0UKqJ9m6sn+eBhSbUvn7S68mDlRsOFQbT1h6O6+CNG6PnfO02UQ6dl8
+ C+dt7eI22jsymfBkedLziWEHDeh8fvqERhtRD8Di9O34FcKtoojcbYDD0pEoK1JD6LB8MCm2R8Do
+ qOxf5bzG3ZfOpvwd+gGQeZ5IbZ0nxfJ5yYObp7yj/8/t0OZOsOgv7rZgU5J3nrsNKQq3PVW7xWxx
+ tigKMXoc/QcAAP//AwCbVNEVLwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64cc22d3e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4156'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_f1ab05e2f0d7f6ba45156e385ea5fcf4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW8jNwy9+1cQQo924K84sW9Ji6LtNk1228Ni68KgJc6IG42k6MPONMh/LzST
+ tZ00BTqHgYaPfHzkiHwaAAhWYgVCakyy8WZ09VHex6n+frd9+KLNhRrfhofP/qeaqttqIYYlwm2/
+ kkzfos6ka7yhxM72sAyEiQrr5GI2Xo4vLxeLDmicIlPCap9G81HKYetG0/F0PhrPR+PlS7R2LCmK
+ Ffw5AAB46t5Fp1X0KFYwHn6zNBQj1iRWBycAEZwpFoExckxokxgeQelsIluk22zMCZCcMxuJxhwT
+ 98/TyfnYLDRmc/WJ/v6qfx3PA6XFB44//nb9O+df8CRfT936TlCVrTw06QQ/2FdvkgEIi00Xe9Pe
+ dL0bvnXAUOeGbCqyxdNaVERqi/J+LVZrcRecyjLBJ9ox7VfAd9pZgskc7oJbr+16bf/QBJb2ryEI
+ 5APFQgsIkWvLFUu0CbKvAyoCt6MAPtCOXY7Q/dd4BoVsm9koeMhoOLXAEehRki/1oRnCnpMucQ3n
+ BhpMFBhNhBxJQdLB5Vq7nM7gA7VQEaYcKAJbabKiVa94BD+0FhuW8HM0aBUojt5gC2wT1QFLqs5t
+ fnlzBw2yBYkNBeyMV5MFXLOzLEFq9j3lNaZEoQXDFRXJ3JTyI+9oCAZjYlsDQpWNAYUtuAo04a4t
+ svui+wQQ25ioAd+1nSLElK0twV675EohsHVJFxLDtU5Q5Bu3H/Vf0lnFRX4863Xd7iigKW3TbAjo
+ 0ZMtqgATfLdcLoeQNEdQtGNJoMjwjkLfcWPIJtihyQSVC+DdnkIRHGKXtVNUB/S6BbJJ58gYUzxb
+ i2fx6o49D947/3UyOoGqHNG8zNSL/fkwpMbVPrhtfDNzomLLUW8CYezuvojJ+T53ydNlEPnVfAsf
+ XOPTJrl7soVwOp/2fOK4g47oZHL+giaX0ByB2fnF8B3CjaKE3G2Aw9KRKDWpY+hx+WBW7E6AwUnZ
+ /5bzHndfOtv6/9AfAVnmidTGB1IsX5d8dAtUdvR/uR3a3AkW/cXdVGxrCj5wtyFF5Tfnajsbzxaz
+ qhKD58E/AAAA//8DAPIhuYQvBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64cdd6bb260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:10 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4581'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_fbceb8ff2f12ed2ffcc076c0c0f740fc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7ahh07ie23zSbobosgF2wXBerCoGcoic1oZjoX2UKQfy9G
+ ytpOmgLVgzDiIQ8PqSGfBwCClViBkBVGWTs9+vQgn/bN5+vvixt/s9h+XX7Znl9sf75a3FzXX8Qw
+ R9jtXyTjj6ixtLXTFNmaHpaeMFJmnV7OJsvJYnE57YDaKtI5rHRxNB/F5Ld2dDY5m48m89Fk+Rpd
+ WZYUxAr+GAAAPHfvrNMo2osVTIY/LDWFgCWJ1cEJQHirs0VgCBwimiiGR1BaE8lk6SZpfQJEa/VG
+ otbHxP3zfHI+Ngu13vhfHr9/fljeP158u2t+218W8W7xOz7gSb6eunWdoCIZeWjSCX6wr94lAxAG
+ 6y72tr3tejd874C+TDWZmGWL57UoiNQW5dNarNbi3luVZIRHaph2K+D7yhqC6RzuvV2vzXptvlUE
+ hnZvIfDkPIVMCwiBS8MFSzQRkis9KgLbkAfnqWGbAnT/NYwhk20TawV/J9QcW+AAtJfkcn2oh7Dj
+ WOW4mlMNNUbyjDpACqQgVt6msrIpjuFXaqEgjMlTADZSJ0WrXvEIrluDNUv4GjQaBYqD09gCm0il
+ x5yqc5svbu+hRjYgsSaPnfHT9AKu2BqWICt2PeUVxki+Bc0FZclc5/IDNzQEjSGyKQGhSFqDwhZs
+ ARVh02bZfdF9AghtiFSD69pOAUJMxuRgV9locyGwtbHKJJrLKkKWr+1u1H9JaxRn+WHc67pryKPO
+ batYE9DekcmqACP8tFwuhxArDqCoYUmgSHNDvu+41mQiNKgTQWE9OLsjnwX70GXtFJUeXdUCmVil
+ wBhiGK/Fi3hzx14GH53/PBkdT0UKqF9n6tX+chhSbUvn7Ta8mzlRsOFQbTxh6O6+CNG6PnfO02UQ
+ 6c18C+dt7eIm2icymfBsftbzieMOOqLT6fkrGm1EfQRm55fDDwg3iiJytwEOS0eirEgdQ4/LB5Ni
+ ewIMTsr+t5yPuPvS2ZT/h/4IyDxPpDbOk2L5tuSjm6e8o//L7dDmTrDoL+6mYFOSd567DSkKtzlX
+ 29lkdjErCjF4GfwDAAD//wMAM/C2sy8GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64cfb5d2760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:15 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4176'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_116e0ef6a1a891a67b793893cb7b08a4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7ahq+b2G8JggJpNmjaLBYo6sKgZyiJ3dHMdC5yhCD/vhgp
+ azlpClQPwoiHPDykhnweAQhWYgtCVhhl7fTk6jep50/Ln78ebm/skevP4bCh2ePx8W71RxLjHGEP
+ f5OMP6Km0tZOU2Rrelh6wkiZdX6xnG1ml5cX6w6orSKdw0oXJ6tJTP5gJ4vZYjWZrSazzWt0ZVlS
+ EFv4cwQA8Ny9s06j6ElsYTb+YakpBCxJbE9OAMJbnS0CQ+AQ0UQxHkBpTSSTpZuk9RkQrdV7iVoP
+ ifvn+ew8NAu13v/yFevrcnF3c2vXV4+fjzf3S8P64stZvp66dZ2gIhl5atIZfrJv3yUDEAbrLva+
+ ve96N37vgL5MNZmYZYvnnSiI1AHlt53Y7sSDtyrJCL9Tw3TcAj9U1hDMV/Dg7W5ndjvzpSIwdHwL
+ gSfnKWRaQAhcGi5YoomQXOlREdiGPDhPDdsUoPuvYQqZ7JBYK/gnoebYAgegJ0ku14d6DEeOVY6r
+ OdVQYyTPqAOkQApi5W0qK5viFO6ohYIwJk8B2EidFG17xRO4aQ3WLOE2aDQKFAensQU2kUqPOVXn
+ trq8f4Aa2YDEmjx2xqv5J7hma1iCrNj1lNcYI/kWNBeUJXOdyw/c0Bg0hsimBIQiaQ0KW7AFVIRN
+ m2X3RfcJILQhUg2uazsFCDEZk4NdZaPNhcDBxiqTaC6rCFm+tsdJ/yWtUZzlh2mv69eGPOrctoo1
+ AT05MlkVYISfNpvNGGLFARQ1LAkUaW7I9x3XmkyEBnUiKKwHZ4/ks2AfuqydotKjq1ogE6sUGEMM
+ 0514EW/u2Mvoo/NfZ6PjqUgB9etMvdpfTkOqbem8PYR3MycKNhyqvScM3d0XIVrX5855ugwivZlv
+ 4bytXdxH+41MJlysFj2fGHbQgM7n61c02oh6AJbri/EHhHtFEbnbAKelI1FWpIbQYflgUmzPgNFZ
+ 2f+W8xF3Xzqb8v/QD4DM80Rq7zwplm9LHtw85R39X26nNneCRX9x9wWbkrzz3G1IUbj9Wh2Ws+Wn
+ ZVGI0cvoOwAAAP//AwC8sUIsLwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d165ddc60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4233'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_055d89dd7f08c26b6ee9ee7e3b8ea568
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=paWL9CVz11bEg5.Dc6APFbsqe9K6ILcNsWLfAZEqZ3U-1730907983-1.0.1.1-5kLmk_MMacWKBLipApc4yc5RWvR5dIlLV9tdohqaU_sHDBgiyy_zZ7aZF6Rf.N.MSsfgLuuphoWZXvsVbOG6VQ;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7ahh07m9hv2W6Bpm2wbnpJgLow6BlK4u5oZnYucrRB/r0Y
+ KWs5aQpUD8KIhzw8pIZ8HAEIVmINQlYYZe305OpXqc95Llt3/8PDn5++Xt9c391/3fx41f5WBzHO
+ EXb/iWT8FjWVtnaaIlvTw9ITRsqs84vFbDW7vLxYdUBtFekcVro4WU5i8ns7OZudLSez5WS2eo6u
+ LEsKYg1/jQAAHrt31mkUPYg1zMbfLDWFgCWJ9dEJQHirs0VgCBwimijGAyitiWSydJO0PgGitXon
+ Ueshcf88npyHZqHWu7sPd/eVouane776cvuHiqvw8e6X729P8vXUresEFcnIY5NO8KN9/SoZgDBY
+ d7E37U3Xu/FrB/RlqsnELFs8bkVBpPYoP2/Feis23qokI9xSw3RYA28qawjmS9h4u92a7db8XhEY
+ OryEwJPzFDItIAQuDRcs0URIrvSoCGxDHpynhm0K0P3XMIVMtk+sFXxJqDm2wAHoQZLL9aEew4Fj
+ leNqTjXUGMkz6gApkIJYeZvKyqY4hZ+phYIwJk8B2EidFK17xRP40BqsWcJ10GgUKA5OYwtsIpUe
+ c6rObXl5s4Ea2YDEmjx2xqv5O3jP1rAEWbHrKd9jjORb0FxQlsx1Lj9wQ2PQGCKbEhCKpDUobMEW
+ UBE2bZbdF90ngNCGSDW4ru0UIMRkTA52lY02FwJ7G6tMormsImT52h4m/Ze0RnGWH6a9ro8NedS5
+ bRVrAnpwZLIqwAjfrVarMcSKAyhqWBIo0tyQ7zuuNZkIDepEUFgPzh7IZ8E+dFk7RaVHV7VAJlYp
+ MIYYplvxJF7csafRW+e/T0bHU5EC6ueZerY/HYdU29J5uw+vZk4UbDhUO08YursvQrSuz53zdBlE
+ ejHfwnlbu7iL9jOZTHi2POv5xLCDBnQ+P39Go42oB2BxfjF+g3CnKCJ3G+C4dCTKitQQOiwfTIrt
+ CTA6Kfvfct7i7ktnU/4f+gGQeZ5I7ZwnxfJlyYObp7yj/8vt2OZOsOgv7q5gU5J3nrsNKQq3O1f7
+ xWzxblEUYvQ0+gcAAP//AwA6T0kwLwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d31bbb560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:24 GMT
+ Server:
+ - cloudflare
+ Set-Cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ path=/; expires=Wed, 06-Nov-24 16:31:24 GMT; domain=.api.openai.com; HttpOnly;
+ Secure; SameSite=None
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5098'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_04903832714e9f029a0bb71610bd9154
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWrcMBC9+yumuvRiF3uzYd29hPZQkh4ChSalLcXI0thWI2uENGazhP33Yu9m
+ 7dAUetHhvXmP92b0lAAIo8UWhOokq97b7MMXZT/Kz3h/3dx+2n3/cX+52d362qq7u6+PIh0VVP9G
+ xc+qd4p6b5ENuSOtAkrG0bXYXOTv87IsLyeiJ412lLWeszVlvXEmW+WrdZZvsqI8qTsyCqPYws8E
+ AOBpesecTuOj2EKePiM9xihbFNvzEIAIZEdEyBhNZOlYpDOpyDG6KfrN2x40GdfCDq1NgTvpHuIb
+ uKYdyJoGhj0NV/CtkwxKOriBDq0fQdgZ7oBJy/3V0jxgM0Q5FnSDtSf8cE5rqfWB6njiz3hjnIld
+ FVBGcmOyyOTFxB4SgF/TVoYXRYUP1HuumB7QjYbF+mgn5lssyPJEMrG0M36xSl9xqzSyNDYutiqU
+ VB3qWTmfQA7a0IJIFp3/DvOa97G3ce3/2M+EUugZdeUDaqNeFp7HAo4/9V9j5x1PgUXcR8a+aoxr
+ Mfhgjv+k8VVey1wXq3VTiOSQ/AEAAP//AwDFyr2wNQMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d53499260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '476'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_f8e1a8d623993053385dd543d2777f43
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/bMAy951cQwo5JkKRpm+TWbjtsQLdu2GHDOgS0TFtsZUnVRze36H8fZKdx
+ 2m3AfBAEPvLxkSb1MAIQXIoNCKkwysbpydknqc/Plhiu790Cb45Pvuhv529vufh4ET+LcY6wxTXJ
+ +BQ1lbZxmiJb08PSE0bKrPPTo9l6tlqtjjugsSXpHFa7OFnaScOGJ4vZYjmZnU7mq120siwpiA18
+ HwEAPHRn1mlK+iU2MBs/WRoKAWsSm70TgPBWZ4vAEDhENFGMB1BaE8lk6SZpfQBEa/VWotZD4v57
+ OLgPzUKtt0fvV68/n8+Kr/fqOn24PTq948Xt2/v7g3w9des6QVUyct+kA3xv37xIBiAMNl3sRXvR
+ 9W780gF9nRoyMcsWD1eiIioLlDdXYnMlvigCvlTWEMyXcOktcACEwLXhiiWaCMnVHkuCnxwV0C9J
+ LktBDUViXcJtQs2xBTQlOE8NpwYajOQZdZjCuwgVYUyeMu+b1mDDEt4Fnf1LDk5jOwaE5eriEhpk
+ AxIb8jjuCNHA2fwEztkaliAVuylkyQXGSL4FjSFm3ippDSW2vUhFeNdCCtSTREU70k6+DsAG7tCz
+ TQE01yqyqUFaU3KuLEzhTEdlU63AeZZUAkZ4tV6vx8ARbFWRD1DnCYY71Imgsh6c/Uk+5/Shb4Wy
+ 0dYenWqBTFQpcNY6vRKP4tkfehz97f7jYPA8VSmg3k3kzv64H3Fta+dtEV5MrKjYcFBbTxi6yREh
+ Wtfnznm6DCI92w7hvG1c3EZ7QyYTLpbznk8MGzygq92eiWgj6sF+tHiKesa3LSkid+uz31iJUlE5
+ hA6bi6lkewCMDqr+U83fuPvK2dT/Qz8AMk84lVvnqWT5vOLBzVN+4P7ltu9yJ1iENkRqthWbmrzz
+ 3D0vonLbdXG6Kk7m8nghRo+j3wAAAP//AwCqfyKibAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d57df4660a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1765'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_5fd5a16db7e93cab301398945708e20c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXU/bMBR976+4svbYoraUfr0xMQk2dYINBtM6VbfOTXLBsY3tDLKq/31yWpqW
+ MWl5iKJ77jn3I8detQAEJ2IKQuYYZGFV5/RKqjP1+8p9/liGy8/VqZzc3obzm5PqbvYo2pFhlvck
+ wwvrSJrCKgps9AaWjjBQVO2NjruT7ng8HtVAYRJSkZbZ0BmYTsGaO/1uf9Dpjjq98ZadG5bkxRR+
+ tAAAVvU79qkTehZT6LZfIgV5jxmJ6S4JQDijYkSg9+wD6iDaDSiNDqRj67pUag8IxqiFRKWawptn
+ tffdLAuVWnz7+uFeDe6r4+/nV19Gj2fDT9fPjDd3e/U20pWtG0pLLXdL2sN38emrYgBCY1FzZ9Ws
+ 3l37dQK6rCxIh9i2WM1FSpQsUT7MxXQurnMCvsyNJugN4NIZYA+ogZ4l2VgSFZQ2c5gQPHHIwToq
+ uCxgWbJK4LFExaFqA8JZpbFgCRdeoU4gYW8V1shgPLuEAlmDxIIctiEmoIbT3hDes9EsQeZsj+Ai
+ gElTch64sI68518ESwyBXAWKU6qZPpRas87A5iaYpocCH2KUAyBk0WCwMQqkxoE1T+Sg9FE8itTc
+ zKHNKyAd8tIz+uDbkJC3HAg4eMg5ixNHDZPCu8lkcjQXa3Gw4XXrre+fe8ZxlJYe1dZR2/h6Z1Fl
+ MuvM0r9ynEhZs88XjtDXf174YOymdqxTVxDlgbuFdaawYRHMA+ko2B/0NnqiOYENOpxswWACqiZ+
+ 3NseoEO9RUIBubb/7sRJlDklDbU5eVgmbPaA1t7Uf3fzlvZmctbZ/8g3gIzOpWRhHSUsDydu0hzF
+ C+pfabst1w0LX/lAxSJlnZGzjuvrQaR2MVmOxsthT570RWvd+gMAAP//AwDURwm5LAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d642ef160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1440'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_cac1ff688917d75c717795148fa52d12
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/bSAy9+1cQgz3Khu248cfNRbdAgQZN2xwKbBYGPaI0rEcz0/lwKgT574uR
+ XMvJpkB1EEZ85HskNeTjCEBwKTYgpMIoG6fH289Sv2/Vlzukb7O/D82Nuv44/3Sgt6utUqLIEXb/
+ nWT8FTWRtnGaIlvTw9ITRsqss+XVdD1drVbrDmhsSTqH1S6OF3bcsOHxfDpfjKfL8Wx1ilaWJQWx
+ gX9GAACP3TvnaUr6KTYwLX5ZGgoBaxKbsxOA8FZni8AQOEQ0URQDKK2JZHLqJml9AURr9U6i1oNw
+ /zxenIdmodY79eOd+/L9zcet083+WC/vrr59fVBhf6HXU7euS6hKRp6bdIGf7ZsXYgDCYNPF3rQ3
+ Xe+Klw7o69SQiTlt8XgvKqJyj/JwLzb34k4R8K2yhmC2gFtvgQOgAfopyWVJ1FDSkSXBA0cFCIFr
+ wxVLNBGSqz2WBGxgn1iX8COh5tgWUBHG5NnU4Dw1nBpoMJJn1GECH2KAA7UnJwrARupUEiC8aw02
+ LOFD0GhKKDk4jW0BCIvVzS00yAYkNuSxgOyABraza3jL1rAEqdhNINe0xxjJt6C5olwSN85TCHyk
+ AjSGmDNDqJLWUGILdCTTF6gIjy2kQD1/VHTSg9CGSE3XGR26km1UOVpzrWLnre3DuP+S1pSc+xcm
+ sNVR2VQrcJ4llYAR/lqv1wVwBFtV5APUeR7giDpRAQ59ZJk0et1CZT04+0A+5+RDJ+OUjbb26FQL
+ ZKJKgTHEMLkXT+LZ338avXb+9+JSe6pSQH267Sf703l8tK2dt/vwYhpExYaD2nnC0N1KEaJ1vXbW
+ 6RREejZ5wnnbuLiL9kAmE84Xs55PDNthQNfLExhtRD3Yr65WxSt8u5Iicjea520gUSoqh9BhK2Aq
+ 2V4Ao4uq/5/Na9x95WzqP6EfAJmnisqd81SyfF7x4OYpL8/fuZ273CUs+mu5q9jU5J3nbnWJyu3W
+ ++Vqfz2Tb+Zi9DT6DwAA//8DAESrOHDIBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d6e3ce260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2535'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ad6e818ca96158ab8ada4278629ccd63
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224jNwx991cQQh9tw/a6ie23bItF0yJoCixatE1h0BJnxF3dVpck0yD/XmjG
+ 8TjpFug8CAIPeXjIIfU0ARCsxA6E1JilDWZ29Ys017erBSv/48XP3a+bhf3wsNzovz+prRHTGuEP
+ n0jml6i59DYYyuzdAMtImKmyLi/fLbaLzWa76gHrFZka1oY8W/uZZcez1WK1ni0uZ8vNMVp7lpTE
+ Dv6cAAA89WfV6RQ9ih0spi8WSylhS2J3cgIQ0ZtqEZgSp4wui+kISu8yuSrdFWPOgOy92Us0Zkw8
+ fE9n97FZaMz+snn4Yh4f34flh5+acvMb/7H44Tv7+/os30DdhV5QU5w8NekMP9l3b5IBCIe2j73p
+ bvreTd86YGyLJZerbPF0JxoidUD5+U7s7sRHTcC32juC5RpuowdOgJC4ddywRJehhDaiInjgrIEe
+ JYUqBQ0cChsFXwoazh2gUxAiWS4WLGaKjCbN4TpDQ5hLpMr7fefQsoTrZKq/4hQMdlNAWG9ubsEi
+ O5BoKeK0J0QHV8sLeM/esQSpOcyhSj5gzhQ7MJhy5W2KMaCwG0RqwvsOSqKBJGs6kvbyTQJ2cI+R
+ fUlguNWZXQvSO8W1sjSHK5O1L62GEFmSAszwzXa7nQJn8E1DMUFbJxju0RSCxkcI/oFizRnT0Art
+ s28jBt0BuaxL4qp1fieexas/9Dz52v2vs8GL1JSE5jiRR/vzacSNb0P0h/RmYkXDjpPeR8LUT45I
+ 2Ychd83TZxDl1XaIEL0NeZ/9Z3KVcLVeDnxi3OAR3Rz3TGSf0Yz2d6uXqFd8e0UZuV+f08ZKlJrU
+ GDpuLhbF/gyYnFX9bzVf4x4qZ9f+H/oRkHXCSe1DJMXydcWjW6T6wP2X26nLvWCRupTJ7ht2LcUQ
+ uX9eRBP228Pl5nCxlN+uxOR58g8AAAD//wMA5SdpGWwFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d7f2bc960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:34 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2340'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_54b9f0e0f4c610cf109e8d98817338b1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224jNwx991cQQh/Hhu048eXNe8FuL0bTolgUbRYGLXFGbDSSVtJ4Mwjy74Vm
+ vB4nTYGdh4HAQ55DUqQeRwCCldiAkBqTrL0Zb3+T5uft/ULSrx/99Eof3tMvyzU/3H55u5WiyBHu
+ 8A/J9C1qIl3tDSV2todlIEyUWWfLq+l6ulqtFx1QO0Umh1U+jRduXLPl8Xw6X4yny/FsdYrWjiVF
+ sYG/RwAAj90/52kVPYgNTItvlppixIrE5uwEIIIz2SIwRo4JbRLFAEpnE9mcum2MuQCSc2Yv0ZhB
+ uP8eL85Ds9CY/e6nT8t3h7/ezj982k1/n/3JZNoP19PFhV5P3fouobKx8tykC/xs37wQAxAW6y52
+ 1+663hUvHTBUTU025bTF450oidQB5f2d2NyJPzQB32pnCWYLuA0OOAJaoAdJPkuiAUVHlgRfOWlA
+ iFxZLlmiTdD4KqAiYAuHho2CLw0aTi2gVVASpiZQnEAWeddarFnCj9FkUHH0BtsCFqvdLdTIFiTW
+ FLDoYrezG3jDzrIEqdkDBoJ8U8o1CchQV88E3mBKFFowXFJOnGsfKEY+UgEGY2JbAULZGAMKW6Aj
+ 2b4MTXhsoYnUyyVNJ/mucBNzRUcM7JoIhivdMUlnFeeexAlsTdKuqTT4wJIUYIIf1ut1AZzAlSWF
+ 2DMZsgmOaBqC0gXw7iuFrBtiJ+y1S64K6HULZJNuImNMcXInnsSze3wavXb+fDGegcomojnN7cn+
+ dF4E4yof3CG+mGtRsuWo94EwdvMlYnK+1846nYJonu2Q8MHVPu2TuyebCeeLWc8nhj0f0NX1CUwu
+ oRnsV/Ob4hW+vaKE3C3Zea8lSk1qCB32GxvF7gIYXVT932xe4+4rZ1t9D/0AyLwfpPY+kGL5vOLB
+ LVB+Bv/P7dzlLmER25io3pdsKwo+cPcIidLv14fl6nAzk9dzMXoa/QsAAP//AwCWGO3TkgUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d8e9aaf60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2365'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_64b5f1daf6e99d2708849105167dc11b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWobMRC971dMdcllbezaxl5fQguFGEpKS+ghpRhZGu/K1WpUaTbpEvzvZWVn
+ 16Ep5KLDe/Me783oKQMQRos1CFVJVrW3ow9flb0t7r7c3n3E38tP3w7trPj8Xc1dUa/uRd4paHdA
+ xc+qsaLaW2RD7kSrgJKxc50uZ5NisloVy0TUpNF2stLzaDZejLgJOxpNpu8XZ2VFRmEUa/iRAQA8
+ pbfL6DT+EWuY5M9IjTHKEsW6HwIQgWyHCBmjiSwdi3wgFTlGl2LfoLX0DjZXNRyayCDhwQRupIVe
+ mUMk2IAmd8VQyQeEPaI1row57BpO2goDAhNUaD201MCj4Qqka7kyrkyIQ9RjuKFHUNLB5uyfKCYt
+ 2+vLhAH3TZTdhlxj7Rk/9pUtlT7QLp75Ht8bZ2K1DSgjua5eZPIisccM4GdabfNiW8IHqj1vmX6h
+ 6wyn85OdGI45kLPFmWRiaQd8XuSvuG01sjQ2XpxGKKkq1INyuKNstKELIrvo/G+Y17xPvY0r32I/
+ EEqhZ9RbH1Ab9bLwMBaw++r/G+t3nAKL2EbGers3rsTgg0mfLZ3ymP0FAAD//wMAtF8DcGsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64d9ecf2e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '825'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_6b47f194bc75afdb0b29acbf6ae1ed48
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTY/jNgy951cQQo9JkOx8NMltgqLTYjHdbDCH7jRFoEi0zaksaSUqGWMw/30h
+ Oxsn0y1QHwyZj3x8pEW+DgAEabEAoSrJqvZmdPdZmU/Lq4R2sj6sDzefH3/9jb48rZJ+fl6KYY5w
+ u2dU/D1qrFztDTI528EqoGTMrNOfrybzyWw2n7VA7TSaHFZ6Hl2Nb0acws6NJtMPN8fIypHCKBbw
+ 1wAA4LV9Z41W44tYwGT43VJjjLJEsTg5AYjgTLYIGSNFlpbFsAeVs4w2y7bJmDOAnTNbJY3pE3fP
+ 69m5b5Q0Znv3xd27+6fbj6imf67D/ezrU7n+wy7P8nXUjW8FFcmqU4PO8JN98S4ZgLCybmMfmoe2
+ b8P3DjKUqUbLWbZ43QjUxI/4whux2IhVcDophjXuCQ8LoFXlLML0GlbBbTZ2s7GPFYLFwyUEAX3A
+ mGlBQqTSUkFKWobkyyA1gttjAB9wTy5FaP9pHEMm2yUyGr4maYgboAj4otDn+qQZwoG4ynE1pRpq
+ yRhImggpogaugktl5RKP4SM2UKDkFDACWWWSxkWneAS/NFbWpOD3aKTVoCl6Ixsgy1gGmVO1btez
+ hxXUkiwoWWOQrfFuegtLcpYUqIp8R7mUzBgaMFRglkx1Lj/SHodgZGSyJUgokjGgZQOugArlvsmy
+ u6K7BBCbyFiDb9uOESIna3Owrxy7XAjsHFeZxFBZMWT5xh1G3ZdyVlOWH8edrk97DNLktlVkEPDF
+ o82qQDL8NJ/Ph8AVRdC4J4Wg0dAeQ9dxY9Ay7KVJCIUL4N0BQxYcYpu1VVQG6asG0HKVIsnIcbwR
+ b+Lijr0NfnT++2x0AhYpSnOcqaP97TSkxpU+uF18N3OiIEux2gaUsb37IrLzXe6cp80g0sV8Cx9c
+ 7XnL7h+0mfDD9XXHJ/r906PT6e0RZcfS9MDV7XGHXBJuNbKkdgOclo6SqkLdh/bLRyZN7gwYnJX9
+ bzk/4u5KJ1v+H/oeUHmeUG99QE3qsuTeLWDez//ldmpzK1h0F3dbkC0x+ECnDTl4G3wDAAD//wMA
+ MvIGCiAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64da5e88260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1477'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_5257b144964045715fcd518ec7a73432
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUbY/bNgz+nl9BCP2YBEnvpZd8a9Hh1u3ulm5Fh24ZAkambbaypElUEvdw/32Q
+ nebl1gHzB0PmQz58SIt8HAAoLtQclK5RdOPN6PV7bRa7j7d//PDlp68P9sd4w9Xs1Vvf3pUPMzXM
+ EW79mbR8ixpr13hDws72sA6EQpl1+upiMpvc3MxmHdC4gkwOq7yMLsZXI0lh7UaT6curfWTtWFNU
+ c/hzAADw2L2zRlvQTs1hMvxmaShGrEjND04AKjiTLQpj5ChoRQ2PoHZWyGbZNhlzAohzZqXRmGPi
+ /nk8OR8bhcasfov0dX13d2duP199fPe+vqfbT2Hy8PtJvp669Z2gMll9aNAJfrDPnyUDUBabLva+
+ ve/6NnzugKFKDVnJstXjUlHB8oF2slTzpVoEVyQt8CttmLZz4EXtLMH0EhbBLZd2ubQfagJL23MI
+ AvlAMdMCQuTKcskarUDyVcCCwG0ogA+0YZcidP80jiGTrRObAv5OaFha4Ai00+RzfWiGsGWpc1zD
+ qYEGhQKjiZAiFSB1cKmqXZIx/EwtlISSAkVgq00qaN4rHsHb1mLDGt5Fg7aAgqM32AJboSpgTtW5
+ Xd7cL6BBtqCxoYCd8fX0Gt6ws6xB1+x7yjcoQqEFwyVlydzk8iNvaAgGo7CtAKFMxkCBLbgSasJN
+ m2X3RfcJILZRqAHftZ0iREnW5mBfO3G5EFg7qTOJ4aoWyPKN2476L+1swVl+HPe6ftlQQJPbVrMh
+ oJ0nm1UBCryYzWZDkJojFLRhTVCQ4Q2FvuPGkBXYoEkEpQvg3ZZCFhxil7VTVAX0dQtkpU6RMUoc
+ L9WTOrtjT4Pvnf86GZ1AZYpo9jO1tz8dhtS4yge3js9mTpVsOdarQBi7u6+iON/nznm6DCqdzbfy
+ wTVeVuK+kM2ELy8vez513D9HdDq93qPiBM0RuLje75BzwlVBgtxtgMPS0ahrKo6hx+WDqWB3AgxO
+ yv63nO9x96Wzrf4P/RHQeZ6oWPlABevzko9ugfJ+/i+3Q5s7waq/uKuSbUXBBz5syMHT4B8AAAD/
+ /wMAOnidhyAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64db01d4460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1897'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_e48716ef824bf300cc3e95aaa9fd5fc2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqRN20ve2g3Y7m7FZbdue1iGgJFpm5ssaRLl1Cj6vw+y
+ c/nR3YD5wZD5kR8/0iJfRgCKC7UCpWsU3Xgzuf9Jm58Xhu8fzH21tndtt/xc8mz5qN8/flLjHOF2
+ f5KWL1FT7RpvSNjZAdaBUCizzu+uZ8vZu+XsqgcaV5DJYZWXyfX0ZiIp7NxkNr+6OUTWjjVFtYLf
+ RwAAL/07a7QFPasVzMZfLA3FiBWp1dEJQAVnskVhjBwFrajxCdTOCtks2yZjzgBxzmw1GnNKPDwv
+ Z+dTo9CY7cffbspf7j7Mlt/+sPz+x19LbNfd04ebq7N8A3Xne0FlsvrYoDP8aF+9SQagLDZ97GP3
+ 2Pdt/NYBQ5UaspJlq5eNooLliZ5lo1YbtQ6uSFrgM7VM+xXwunaWYL6AdXCbjd1s7FNNYGl/CUEg
+ HyhmWkCIXFkuWaMVSL4KWBC4lgL4QC27FKH/p3EKmWyX2BTwd0LD0gFHoGdNPteHZgx7ljrHNZwa
+ aFAoMJoIKVIBUgeXqtolmcJH6qAklBQoAlttUkGrQfEEvussNqzhfTRoCyg4eoMdsBWqAuZUvdvi
+ 3eMaGmQLGhsK2Bvv57fwwM6yBl2zHygfUIRCB4ZLypK5yeVHbmkMBqOwrQChTMZAgR24EmrCtsuy
+ h6KHBBC7KNSA79tOEaIka3Owr524XAjsnNSZxHBVC2T5xu0nw5d2tuAsP04HXZ9aCmhy22o2BPTs
+ yWZVgALfLJfLMUjNEQpqWRMUZLilMHTcGLICLZpEULoA3u0pZMEh9ll7RVVAX3dAVuoUGaPE6Ua9
+ qos79jr62vmPs9EJVKaI5jBTB/vrcUiNq3xwu/hm5lTJlmO9DYSxv/sqivND7pynz6DSxXwrH1zj
+ ZSvuL7KZ8GqxGPjUaf+c0Pn89oCKEzQn4Pr2sEMuCbcFCXK/AY5LR6OuqTiFnpYPpoLdGTA6K/vf
+ cr7GPZTOtvo/9CdA53miYusDFawvSz65Bcr7+b/cjm3uBavh4m5LthUFH/i4IUevo38AAAD//wMA
+ I96vKSAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64dbcedf860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1691'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_d20953c100fd334c5615ba9d7658cf99
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU34/bNgx+z19BCHtMgqSXXpu8tV2BbsW1t+4wtF2GgJFpmzdZUiXKiXG4/32Q
+ nebHrQPmB0PmR378SIt8GAEoLtQKlK5RdOPN5NVv2tx9sFz+2n50958+mP1bl/zX7n73+f1cjXOE
+ 296Tlu9RU+0ab0jY2QHWgVAos85fXM2Ws5fL2VUPNK4gk8MqL5Or6fOJpLB1k9n82fNDZO1YU1Qr
+ +HMEAPDQv7NGW9BerWA2/m5pKEasSK2OTgAqOJMtCmPkKGhFjU+gdlbIZtk2GXMGiHNmo9GYU+Lh
+ eTg7nxqFxmxefK3ojV68+/3+Tful/Gbe7tpl88f1u7N8A3Xne0FlsvrYoDP8aF89SQagLDZ97E13
+ 0/dt/NQBQ5UaspJlq4e1ooLljvayVqu1ug2uSFrgE7VMuxXwbe0swXwBt8Gt13a9tnc1gaXdJQSB
+ fKCYaQEhcmW5ZI1WIPkqYEHgWgrgA7XsUoT+n8YpZLJtYlPAt4SGpQOOQHtNPteHZgw7ljrHNZwa
+ aFAoMJoIKVIBUgeXqtolmcJ76qAklBQoAlttUkGrQfEEfu4sNqzhl2jQFlBw9AY7YCtUBcyperfF
+ y5tbaJAtaGwoYG98Nb+G1+wsa9A1+4HyNYpQ6MBwSVkyN7n8yC2NwWAUthUglMkYKLADV0JN2HZZ
+ 9lD0kABiF4Ua8H3bKUKUZG0O9rUTlwuBrZM6kxiuaoEs37jdZPjSzhac5cfpoOtjSwFNblvNhoD2
+ nmxWBSjw03K5HIPUHKGgljVBQYZbCkPHjSEr0KJJBKUL4N2OQhYcYp+1V1QF9HUHZKVOkTFKnK7V
+ o7q4Y4+jH53/OhudQGWKaA4zdbA/HofUuMoHt41PZk6VbDnWm0AY+7uvojg/5M55+gwqXcy38sE1
+ Xjbi/iabCZ8tFgOfOu2fEzqfXx9QcYLmBFxdH3bIJeGmIEHuN8Bx6WjUNRWn0NPywVSwOwNGZ2X/
+ W86PuIfS2Vb/h/4E6DxPVGx8oIL1Zcknt0B5P/+X27HNvWA1XNxNybai4AMfN+TocfQPAAAA//8D
+ ANj+0lggBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64dc92da760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2120'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_188068307a9532622c7d5b4a115f94e5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mQdKmXZO3FtvDYeg13RU7HJYhYCTa5iZLmkSl9RX974Ps
+ XpJ2N2B+MGR+5MePtMjnEYBio1agdIOi22An1/fafv7c7O/XiRZ+/cXw/e3HYBfxDMPPalwi/O5P
+ 0vItaqp9GywJezfAOhIKFdb5j+ez5exqObvsgdYbsiWsDjI5n15MJMedn8zmZxevkY1nTUmt4PcR
+ AMBz/y4anaEntYLZ+JulpZSwJrU6OAGo6G2xKEyJk6ATNT6C2jshV2S7bO0JIN7brUZrj4mH5/nk
+ fGwUWrt9+PTpav3l7uI63Znf8s3Xj093H9LDLp7kG6i70AuqstOHBp3gB/vqXTIA5bDtY2+7275v
+ 4/cOGOvckpMiWz1vFBmWB3qSjVpt1Dp6k7XAr7RnelwBrxvvCOYLWEe/2bjNxj00BI4e30IQKURK
+ hRYQEteOK9boBHKoIxoCv6cIIdKefU7Q/9M0hUK2y2wN/J3RsnTACehJUyj1oR3DI0tT4lrOLbQo
+ FBltgpzIgDTR57rxWabwC3VQEUqOlICdttnQalA8gZ86hy1r+JAsOgOGU7DYATuhOmJJ1bstrm7X
+ 0CI70NhSxN54Pb+EG/aONeiGw0B5gyIUO7BcUZHMbSk/8Z7GYDEJuxoQqmwtGOzAV9AQ7rsieyh6
+ SACpS0IthL7tlCBJdq4Eh8aLL4XAzktTSCzXjUCRb/3jZPjS3hku8tN00HW3p4i2tK1hS0BPgVxR
+ BSjww3K5HIM0nMDQnjWBIct7ikPHrSUnsEebCSofIfhHikVwTH3WXlEdMTQdkJMmJ8YkabpRL+rN
+ HXsZfe/8x8noRKpyQvs6U6/2l8OQWl+H6Hfp3cypih2nZhsJU3/3VRIfhtwlT59B5TfzrUL0bZCt
+ +L/IFcKzxWLgU8f9c0Tn88tXVLygPQLnl6875C3h1pAg9xvgsHQ06obMMfS4fDAb9ifA6KTsf8v5
+ HvdQOrv6/9AfAV3micw2RDKs35Z8dItU9vN/uR3a3AtWw8XdVuxqiiHyYUOOXkb/AAAA//8DAMiF
+ K8YgBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64dd75feb60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2275'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_84b258b1e46ace4a4102d9d0b2dd7316
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBS8+ytedeklXpxNNnVyWVp62MBSKD0tZTFa6cXWVtZTpWfasOTfi2xv
+ 7NAW9qLDzJthZtBLBiCMFjsQqpGsWm/zj1+Vffi8+lLf758/3dQNbVz501NX3H+LD2KRFPT0jIpf
+ VVeKWm+RDbmBVgElY3JdflgV26LcFmVPtKTRJlntOV9Tfl1cr/OizIvNKGzIKIxiB98zAICX/k0R
+ ncbfYgfF4hVpMUZZo9idjwBEIJsQIWM0kaVjsZhIRY7R9anv0Fp6B/v3LTQYEKTTEFDqIzBBg9Zf
+ wR39AiUd7GEwgyN1wKTl8XZuGvDQRZk6uc7aET+dU1qqfaCnOPJn/GCciU0VUEZyKVFk8qJnTxnA
+ Y79Gd1FQ+ECt54rpB7pkuFwPdmKaf0ZuRpKJpZ3w1bjgpVulkaWxcbamUFI1qCflNL3stKEZkc06
+ /x3mX95Db+Pqt9hPhFLoGXXlA2qjLgtPZwHT5/zf2XnjPrCIx8jYVgfjagw+mOF/HHy1vNnqcrVe
+ KiWyU/YHAAD//wMARTanbCgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64de67c6d60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '544'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_935d1c5541b44498736909f825ceebb6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU72/bNhD97r/iQOyjndipk8aGEaBdgGAbjKVFVxSdB+NCnsTbKJLjDzlqkP99
+ oJTYTtYB0weB4uO79+6ou4cRgGAlliCkxiQbbybvPkjzNVzLmVaXF7+tF93NN9rxl/rDddO2YlwY
+ 7u5PkumZdSJd4w0ldnaAZSBMVKLO3r6ZLqaXi+miBxqnyBRa7dNk7iZn07P5ZHo5mV48EbVjSVEs
+ 4fcRAMBD/y4WraJ7sYTp+HmnoRixJrHcHwIQwZmyIzBGjgltEuMDKJ1NZItrm405ApJzZivRmIPw
+ 8DwcrQ91QmO2658/v72++/rj2c3n9fTj7AuT6W7Op/MjvSF053tDVbZyX58jfL+/fCUGICw2PXfd
+ rfuyjV8fwFDnhmwqtsXDRpDi9Inu00YsN2KlZ1e3waksE3yklmm3BL7VzhLM5nAb3OpUz642G7vZ
+ 2JW/+qQJLO1eHoFAPlAsEoAQubZcsUSbIPs6oCJwLQXwgVp2OUJ/vfEESrC7zEbB3xkNpw44At1L
+ 8iVXNGPYcdKF13BuoMFEgdFEyJEUJB1crrXL6QR+oQ4qwpQDRWArTVa0XJ36Z+PZlFWpxsrw1XVn
+ sWEJP0WDVoHi6A12wDZRHbBor04NHzPml+tbaJAtSGwo4Gv83ewC3rOzLEFq9s/w6nQQHmr3HlOi
+ 0IHhikqm3JSqRW5pDAZjYlsDQpWNAYUduAo0YduVbIdaDdoQu5ioAd/fGkWIKVtbyF675Er+cOeS
+ LkEM1zpBSdK43WT4ks4qLknGk6MK+atfWwpoStE1GwK692SLOcAEPywWizEkzREUtSwJFBluKQz3
+ ZQzZBC2aTFC5AN7tKBTfIfbivbE6oNcdkE06R8aYnvTFo3jxxz6Ovrf+46gRA1U5onnq0Kf9x33L
+ G1f74O7iqw4WFVuOehsIY99JIibnB+2i0yuI/GJaCB9c49M2ub/IloBn8zdDPHEYZgd0dvE0eERy
+ Cc0BmE+faS8CbhUl5H6e7EeYRKlJHaiHUYZZsTsCRkdp/9vO92IPqbOt/0/4AyBLR5La+kCK5cuU
+ D8cClWH/X8f2Ze4Ni+Ef3lZsawo+cD9vReW383NZnc8VIYnR4+gfAAAA//8DAHu46TV4BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64deada5d60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3349'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_fb7fe2522694724fe1e11488fb1efd8b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW8bNxC961cMiB4lW5IVxRIEA0lqFE3h2CmC5FAVAk3OLqfhkiw5lLww/N8L
+ 7tr6cFOge1hw+fjmvRnuzOMAQJAWSxDKSFZNsKN3n5VVt9v5/KOZvv324ZfrrxM1+fZ9evHxZjcW
+ w8Lw93+h4hfWmfJNsMjkXQ+riJKxRJ28vRgvxpeLybQDGq/RFlodeDTzo+l4OhuNL0fj+TPReFKY
+ xBL+GAAAPHbvYtFpfBBLGA9fdhpMSdYolvtDACJ6W3aETIkSS8dieACVd4yuuHbZ2iOAvbcbJa09
+ CPfP49H6UCdp7SbPrz/VCxtub77y9QXvPuSJux9/jkd6feg2dIaq7NS+Pkf4fn/5SgxAONl03Jv2
+ pivb8PUBGevcoONiWzyuBWriL/jAa7Fci5WZXN1Fr7Ni+B23hLsl0J3xDmEyg7voV+dmcrVeu/Xa
+ rcLVF4PgcHd6BCKGiKlIgIREtaOKlHQMOdRRagS/xQgh4pZ8TtBdbzqDEuw+k9Xwd5aWuAVKgA8K
+ Q8lV2iHsiE3hNZQbaCRjJGkT5IQa2ESfa+Mzn8Fv2EKFknPEBOSUzRqXq/PwYjzbsirVWFm6+rl1
+ siEFvyYrnQZNKVjZAjnGOsqivTq3dMyYXd7cQSPJgZINRvkafzeZw3vyjhQoQ+EFXp33wn3t3ktm
+ jC1YqrBkSk2pWqItDsHKxORqkFBla0HLFnwFBuW2Ldn2teq1IbWJsYHQ3RomSJydK+RgPPuSP9x7
+ NiWIpdowlCSt3436L+WdppJkOjuqULi63WKUthTdkEXAh4CumAPJ8NNisRgCG0qgcUsKQaOlLcb+
+ vqxFx7CVNiNUPkLwO4zFd0ydeGesjjKYFtCxyYlk4md98SRO/tinwY/Wfx41YsQqJ2mfO/R5/2nf
+ 8tbXIfr79KqDRUWOktlElKnrJJHYh1676HQKIp9MCxGibwJv2H9HVwJOZxd9PHEYZgd0Mn8ePII9
+ S3sAZuMX2knAjUaW1M2T/QhTUhnUB+phlMmsyR8Bg6O0/23nR7H71MnV/yf8AVClI1FvQkRN6jTl
+ w7GIZdj/17F9mTvDov+HNxW5GmOI1M1bUYXN7I2q3sw0ShSDp8E/AAAA//8DAPmsLo14BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64e00bffa60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:01:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5212'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_cbe8a83a7bb2860c5d472dd6d92e792f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224bNxB911cMiD5KtuQojiwIBuzGQNvUsJMGDdqqEMbk7HIcLsnyInth+N8D
+ 7lo3NwW6DwsuD8+cM8OdeRoACFZiDkJqTLLxZnTxURrWH++u7qvJV3maLmanP+krPvmxtfdZDAvD
+ 3d2TTBvWkXSNN5TY2R6WgTBRiTp592Z8Np6dTWYd0DhFptBqn0ZTNzoZn0xH49lofPpC1I4lRTGH
+ vwYAAE/du1i0ih7FHMbDzU5DMWJNYr49BCCCM2VHYIwcE9okhjtQOpvIFtc2G7MHJOfMSqIxO+H+
+ edpb7+qExqxm5v7Dn/bL75/eXbVfTi5/1e9/ufntj5t6T68P3frOUJWt3NZnD9/uz1+JAQiLTce9
+ bq+7sg1fH8BQ54ZsKrbF01KQ4vSZHtNSzJdioSfnt8GpLBN8ojXTwxz4VjtLMJnCbXCLYz05Xy7t
+ cmkX/vyzJrD0cHgEAvlAsUgAQuTacsUSbYLs64CKwK0pgA+0ZpcjdNcbj6AEu8tsFPyT0XBqgSPQ
+ oyRfckUzhAdOuvAazg00mCgwmgg5koKkg8u1djkdwQdqoSJMOVAEttJkRfPFsd8Yz6asSjUWhs/f
+ txYblvBzNGgVKI7eYAtsE9UBi/bi2PA+Yzq7voUG2YLEhgK+xi8mp3DJzrIEqdlv4MVxL9zX7hJT
+ otCC4YpKptyUqkVe0xAMxsS2BoQqGwMKW3AVaMJ1W7Lta9VrQ2xjogZ8d2sUIaZsbSF77ZIr+cOd
+ S7oEMVzrBCVJ4x5G/Zd0VnFJMh7tVcif36wpoClF12wI6NGTLeYAE/xwdnY2hKQ5gqI1SwJFhtcU
+ +vsyhmyCNZpMULkA3j1QKL5D7MQ7Y3VAr1sgm3SOjDG96ItncfDHPg++t/57rxEDVTmieenQl/3n
+ bcsbV/vg7uKrDhYVW456FQhj10kiJud77aLTKYh8MC2ED67xaZXcV7Il4Mn0TR9P7IbZDp2cvgwe
+ kVxCswOm4w3tIOBKUULu5sl2hEmUmtSOuhtlmBW7PWCwl/a/7Xwvdp862/r/hN8BsnQkqZUPpFge
+ prw7FqgM+/86ti1zZ1j0//CqYltT8IG7eSsqv5q+ldXbqSIkMXgefAMAAP//AwBxktP6eAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64e22addf60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3754'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_fc2de50f8f1f707bb4196579addb1ac7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224bNxB911cMiD5KtmQriiUIBmK4gNvAjdPmJakKYUzOLqfhkjQvshaG/73g
+ rq2LmwLdhwWXh2fOmeHOPA0ABCuxACE1Jtl4M/rwWZpm9usN+29fL+5T+00/UHtdXW1nd1mJYWG4
+ +79JplfWiXSNN5TY2R6WgTBRiTp5fz6ejy/mZ2cd0DhFptBqn0ZTNzobn01H44vRePZC1I4lRbGA
+ PwcAAE/du1i0irZiAePh605DMWJNYrE7BCCCM2VHYIwcE9okhntQOpvIFtc2G3MAJOfMWqIxe+H+
+ eTpY7+uExqz/aOcfP23Pr3/bfv/5wcvx56839mY28wd6fejWd4aqbOWuPgf4bn/xRgxAWGw67m17
+ 25Vt+PYAhjo3ZFOxLZ5WghSnL7RNK7FYiaWeXN4Fp7JM8DttmB4XwHfaWYLJFO6CW57qyeVqZVcr
+ u/SXXzSBpcfjIxDIB4pFAhAi15YrlmgTZF8HVARuQwF8oA27HKG73ngCJdh9ZqPgIaPh1AJHoK0k
+ X3JFM4RHTrrwGs4NNJgoMJoIOZKCpIPLtXY5ncBHaqEiTDlQBLbSZEWL5al/NZ5NWZVqLA1fXrcW
+ G5bwSzRoFSiO3mALbBPVAYv28tTwIWN6cXsHDbIFiQ0FfIt/mMzgip1lCVKzf4WXp71wX7srTIlC
+ C4YrKplyU6oWeUNDMBgT2xoQqmwMKGzBVaAJN23Jtq9Vrw2xjYka8N2tUYSYsrWF7LVLruQP9y7p
+ EsRwrROUJI17HPVf0lnFJcl4clAhf/lpQwFNKbpmQ0BbT7aYA0zw03w+H0LSHEHRhiWBIsMbCv19
+ GUM2wQZNJqhcAO8eKRTfIXbinbE6oNctkE06R8aYXvTFszj6Y58HP1r/ddCIgaoc0bx06Mv+867l
+ jat9cPfxTQeLii1HvQ6EseskEZPzvXbR6RREPpoWwgfX+LRO7jvZEvBset7HE/thtkcns5fBI5JL
+ aPbAdPxKOwq4VpSQu3myG2ESpSa1p+5HGWbF7gAYHKT9bzs/it2nzrb+P+H3gCwdSWrtAymWxynv
+ jwUqw/6/ju3K3BkW/T+8rtjWFHzgbt6Kyq+n72T1bqoISQyeB/8AAAD//wMAP0DrBHgGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64e3bafa860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '7159'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_87cf893e797ff582f59966a6ff0a8a2a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUYW/bNhD97l9xIPbRTuzETWPDCJC2y9K1QbyiQzHMg8GQJ+k6imTIoxMhyH8f
+ KNmWk3XA9EGg+PjuvTvq7mkAIEiLOQhVSVa1N6PL35Thb+efbjFd31+f3v78+/K0wC/vP6D9eC+G
+ meHuvqPiHetIudobZHK2g1VAyZijTt6ejmfj89nJrAVqp9FkWul5NHWjk/HJdDQ+H43PtsTKkcIo
+ 5vDnAADgqX1ni1bjo5jDeLjbqTFGWaKY7w8BiOBM3hEyRoosLYthDypnGW12bZMxBwA7Z9ZKGtML
+ d8/TwbqvkzRm/fnt1ZVn9e3yl5PA1+by16vvU37/x+xArwvd+NZQkaza1+cA3+/PX4kBCCvrlnvT
+ 3LRlG74+IEOZarScbYunlUBN/BUfeSXmK7GoJhfL4HRSDF9wQ/gwB1pWziJMprAMbnFcTS5WK7ta
+ 2YW/+FohWHx4eQQC+oAxS4CESKWlgpS0DMmXQWoEt8EAPuCGXIrQXm88ghzsLpHRcJ+kIW6AIuCj
+ Qp9zlWYID8RV5tWUaqglYyBpIqSIGrgKLpWVS3wEn7CBAiWngBHIKpM0zhfHfmc8mbzK1VgYuvjQ
+ WFmTgo/RSKtBU/RGNkCWsQwyay+ODR0ypuc3S6glWVCyxiBf45eTM3hHzpICVZHfwYvjTrir3TvJ
+ jKEBQwXmTKnOVYu0wSEYGZlsCRKKZAxo2YAroEK5aXK2Xa06bYhNZKzBt7eGESInazPZV45dzh/u
+ HFc5iKGyYshJGvcw6r6Us5pykvHooEL+4naDQZpc9IoMAj56tNkcSIafZrPZELiiCBo3pBA0Gtpg
+ 6O7LGLQMG2kSQuECePeAIfsOsRVvjZVB+qoBtFylSDLyVl88ixd/7PPgR+u/DhoxYJGiNNsO3e4/
+ 71veuNIHdxdfdbAoyFKs1gFlbDtJRHa+0846rYJIL6aF8MHVntfs/kabA55MT7t4oh9mPTo52w4e
+ wY6l6YHpeEd7EXCtkSW182Q/wpRUFeqe2o8ymTS5A2BwkPa/7fwodpc62fL/hO8BlTsS9doH1KRe
+ ptwfC5iH/X8d25e5NSy6f3hdkC0x+EDtvBWFX0/fqOLNVKNEMXge/AMAAP//AwBtSdWpeAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64e694ca160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '7431'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_1b13ec61f2aadbd7b6a682b417700123
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBTc9RWvXLpYgWw5ceylKLLY3ZoOHYpCoMgniS3Fx5JPQIzA/15QdiwF
+ SYEuHO7eHe4OfM4AhNFiB0J1klXvbf75q+qXhz9Pj3fN8cE93t/2+4d6/0V+K/tyJRZJQfUvVPyi
+ ulHUe4tsyJ1pFVAyJtflpiy2xf223IxETxptkrWe83XOQ6gpXxWrdV6s82J7UXdkFEaxgx8ZAMDz
+ +KacTuOT2EGxeEF6jFG2KHbXIwARyCZEyBhNZOlYLCZSkWN0Y/Q9Wksf4PCxhw4DAhN0aD0cabiB
+ 751kUNLBATRBQyHBwKTl8dPcL2AzRJk6ucHaC366BrTU+kB1vPBXvDHOxK4KKCO5FCYyeTGypwzg
+ 5zjE8Kqb8IF6zxXTb3TJcLk+24lp/hm5uZBMLO2El8vFO26VRpbGxtmQQknVoZ6U0+py0IZmRDbr
+ /DbMe97n3sa1/2M/EUqhZ9SVD6iNel14OguYPue/zq4bj4FFPEbGvmqMazH4YM5fo/HVra7Lorwr
+ m0Zkp+wvAAAA//8DAEKX6r8oAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64e98a91460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '538'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_44d0f4dc07d3913f96440ecd2175bb60
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW8bNxC961cMiBwlW19xLEEQkKBNExRu3Tg5JHUhUOTscmIuyZJD2QvD/73g
+ riPJrgtUB2F3Hue9ecOduR8ACNJiCUIZyaoJdvT2D9VMb7T9eLP1H95f/XKGrcLw7ersw29XMzEs
+ GX77HRX/yDpRvgkWmbzrYRVRMhbWyZvZeDE+X8zOO6DxGm1JqwOP5iPOcetH0/F0PhrPR+PFY7bx
+ pDCJJfw5AAC47/5LnU7jnVjCePgj0mBKskax3B8CENHbEhEyJUosHYvhAVTeMbpSusvWHgHsvd0o
+ ae1BuP/dHz0fmiWt3bynL28Wi8vFt9n06/TiAj+9tt9N9fOXI72eug1dQVV2at+kI3wfXz4TAxBO
+ Nl3uRXvR9W74/ICMdW7QcSlb3F8L1MSf8Y6vxfJarMxkfRm9zorhE+4Ib5dAl8Y7hMkcLqNfnZrJ
+ ehXWnw2Cw9unIEQMEVMhBwmJakcVKekYcqij1Ah+hxFCxB35nKC73XQChWybyWr4O0tL3AIlwDuF
+ obiUdgi3xKbkNZQbaCRjJGkT5IQa2ESfa+Mzn8Cv2EKFknPEBOSUzRqXq9OwXmW7Xlla/9Q62ZCC
+ j8lKp0FTCla2QI6xjrLIrU4tdUfn5xeX0EhyoGSDUe6Bt5MzeEfekQJlKPTx0yIQ1u8kM8YWLFVY
+ XFBTOpJoh0OwMjG5GiRU2VrQsgVfgUG5a4uTvg+9FqQ2MTYQurvABImzcyU5GM++eIOtZ1NILNWG
+ obix/nbUvynvNBU36aRzH9a/7zBKW1ppyCLgXUBXygLJ8GqxWAyBDSXQuCOFoNHSDmN/C9aiY9hJ
+ mxEqHyH4W4yl4pg62a6kOspgWkDHJieSiXvla/EgnnyBD4OXnv86GqyIVU7SPk7cY/xhP8LW1yH6
+ bXo2kaIiR8lsIsrUTYZI7EOvXXQ6BZGfTL8I0TeBN+xv0BXC6Xze84nDhjqgk9niEWXP0h6A2fls
+ +ALhRiNL6vbDfiUpqQzqQ+phNcmsyR8BgyPb/y7nJe7eOrn6/9AfAFXmDPUmRNSknlo+HItYNvh/
+ Hdu3uStY9F/vpiJXYwyRuv0pqrB5rbez8exsVlVi8DD4BwAA//8DANRCaWlNBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64e9e3a1760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4734'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_90fc58376392e14647ad3315539618ba
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW8qNxB951eMrD5CAgnJBYSQcntVqb2KLq1QlbRUyNiz62m8tuuPhW2U/155
+ lwBJU6n7sPL6eOacOd6Z5x4AI8lmwITiUVROD+5+FtWnab0Sd3j/+HA7nXz59vcPy5X4LT389Mj6
+ OcJu/0QRX6MuhK2cxkjWdLDwyCPmrKNP18PpcDIdX7dAZSXqHFa6OBgPYvJbO7gaXo0Hw/FgOD1E
+ K0sCA5vB7z0AgOf2nXUaiXs2g2H/dafCEHiJbHY8BMC81XmH8RAoRG4i659AYU1Ek6WbpPUZEK3V
+ G8G1PhF3z/PZ+mQW13pzVz2uVrtf91/Lp8nDzdP3t4RPO79VZ3xd6sa1gopkxNGkM/y4P3tHBsAM
+ r9rY++a+9a7//gD3ZarQxCybPa8ZSoor3Mc1m63ZXI0WS29lEhF+wZpwNwNaKmsQRmNYeju/VKPF
+ em3WazN3i5VCMLh7ewQ8Oo8hUwCHQKWhggQ3EZIrPZcItkYPzmNNNgVo7zhcQE62TaQl/JW4ptgA
+ BcC9QJdr5boPO4oqx1WUKqh4RE9cB0gBJUTlbSqVTfECvmIDBfKYPAYgI3SSOJtfulfhSedVdmOu
+ afGlMbwiAT8GzY0EScFp3gCZiKXnmXt+qek8Yjy5X0LFyYDgFXr+Hr8b3cJnsoYECEXuFZ5fdsSd
+ d595jOgb0FRgrpSq7FqgGvugeYhkSuBQJK1B8gZsAQp53eRqO686bghNiFiBa28NA4SYjMnBTtlo
+ c/2wtVHlJJpKFSEXqe1u0H0JayTlIsPFmUNu8a1Gz3U2XZFGwL1Dk8UBj/DddDrtQ1QUQGJNAkGi
+ php9d19ao4lQc50QCuvB2R36rNuHlrwVVnruVANookqBeIgHfvbC3vyxL72P1n+cNaLHIgWuDx16
+ 2H85try2pfN2G951MCvIUFAbjzy0ncRCtK7jzjwtA0tvpgVz3lYubqJ9QpMTXo3HXT52mmgndHQz
+ OaDRRq5PwHh41f8g4UZi5NTOk+MIE1wolKfQ0yjjSZI9A3pnZf9bzke5u9LJlP8n/QkQuSNRbpxH
+ SeJtyadjHvPE/69jR5tbwaz7hzcFmRK989TOW1a4zY3cXg+vb6+LgvVeev8AAAD//wMA3cM0cH0G
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64ebcecfa60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5587'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_c567388e1091eb3628d99cd11511e4b5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUYW8bNwz97l9BCPtoJ3bsJbFhGGjXYim2LOnQbOiWwZAl3omtTtIkyskhyH8f
+ dJfaTpYB8wfjjk98j4868mEAIEiLBQhlJKsm2NGbj6r54cv1Gd1449PUXf32o93+kdzvHE+VGJYM
+ v/mCir9lHSnfBItM3vWwiigZC+vkbDqej8/ns/MOaLxGW9LqwKPZiHPc+NHJ+GQ2Gs9G4/lTtvGk
+ MIkF/DkAAHjo/kudTuO9WMB4+C3SYEqyRrHYHQIQ0dsSETIlSiwdi+EeVN4xulK6y9YeAOy9XStp
+ 7V64/z0cPO+bJa1d39f8y+efzcXHi6vP7y9uzm7y1+bdh/dnB3o9dRu6gqrs1K5JB/guvnghBiCc
+ bLrcy/ay693w5QEZ69yg41K2eLgVqIk/4T3fisWtWJrJ6jp6nRXDr7glvFsAXRvvECYzuI5+eWwm
+ q2VYfTIIDu+egxAxREyFHCQkqh1VpKRjyKGOUiP4LUYIEbfkc4LudtMRFLJNJqvh7ywtcQuUAO8V
+ huJS2iHcEZuS11BuoJGMkaRNkBNqYBN9ro3PfAQ/YQsVSs4RE5BTNmtcLI/Dapntamlp9a51siEF
+ H5KVToOmFKxsgRxjHWWRWx5b6o7Ozi+voZHkQMkGo9wBbyan8Ja8IwXKUOjjx0UgrN5KZowtWKqw
+ uKCmdCTRFodgZWJyNUiosrWgZQu+AoNy2xYnfR96LUhtYmwgdHeBCRJn50pyMJ598QYbz6aQWKoN
+ Q3Fj/d2of1PeaSpu0lHnPqyuthilLa00ZBHwPqArZYFk+G4+nw+BDSXQuCWFoNHSFmN/C9aiY9hK
+ mxEqHyH4O4yl4pg62a6kOspgWkDHJieSiXvlW/Eonn2Bj4PXnv86GKyIVU7SPk3cU/xxN8LW1yH6
+ TXoxkaIiR8msI8rUTYZI7EOvXXQ6BZGfTb8I0TeB1+y/oiuEJ7NZzyf2G2qPTqbzJ5Q9S7sHpufT
+ 4SuEa40sqdsPu5WkpDKo96n71SSzJn8ADA5s/7uc17h76+Tq/0O/B1SZM9TrEFGTem55fyxi2eD/
+ dWzX5q5g0X+964pcjTFE6vanqML6e72Zjqen06oSg8fBPwAAAP//AwCLiZ4YTQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64ee16cdf60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5123'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_42b7637677f4f26a658583a0743ee621
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwW7jNhC9+ysGRI92Ysfa3dgwDCTtol1sg02DLHpoCoMmR9I0FMmSQznaIP9e
+ UMraTpoC9cGQ5nHemzfUzOMIQJAWSxCqlqwabyYXv6nmU2ncx+L+F9yqr7+fn/+8+/FDedE2N0mM
+ c4bb/oWKv2edKNd4g0zODrAKKBkz6+zDfLqYni/eFT3QOI0mp1WeJ8WEU9i6ydn0rJhMi8l08Zxd
+ O1IYxRL+GAEAPPb/uU6r8UEsYTr+HmkwRlmhWO4PAYjgTI4IGSNFlpbF+AAqZxltLt0mY44Ads5s
+ lDTmIDz8Ho+eD82Sxmzsx5C+qa9XLf/K3+53N7dF0ZmLz5dHegN15/uCymTVvklH+D6+fCUGIKxs
+ +tyr7qrv3fj1ARmq1KDlXLZ4vBOoiW/xge/E8k6s6tn6OjidFMMNtoS7JdB17SzCrIDr4Fan9Wy9
+ 8uvbGsHi7iUIAX3AmMlBQqTKUklKWobkqyA1gmsxgA/YkksR+tuNJ5DJtomMhr+TNMQdUAR8UOiz
+ S2nGsCOuc15DqYFGMgaSJkKKqIHr4FJVu8Qn8Bk7KFFyChiBrDJJ43J16terZNYrQ+ufOisbUvAp
+ Gmk1aIreyA7IMlZBZrnVqaH+aHF+dQ2NJAtKNhjkHriYvYdLcpYUqJr8ED/NAn59KZkxdGCoxOyC
+ mtyRSC2OwcjIZCuQUCZjQMsOXAk1yrbLToY+DFoQu8jYgO/vAiNETtbmZF87dtkbbB3XmcRQVTNk
+ N8btJsObclZTdhNPevd+/aXFIE1uZU0GAR882lwWSIYfFovFGLimCBpbUggaDbUYhlswBi1DK01C
+ KF0A73YYcsUh9rJ9SVWQvu4ALdcpkow8KN+JJ/HiC3wavfX859FgBSxTlOZ54p7jT/sRNq7ywW3j
+ q4kUJVmK9SagjP1kiMjOD9pZp1cQ6cX0Cx9c43nD7h5tJjwrioFPHDbUAZ3NF88oO5bmAMzP5+M3
+ CDcaWVK/H/YrSUlVoz6kHlaTTJrcETA6sv3vct7iHqyTrf4P/QFQec5Qb3xATeql5cOxgHmD/9ex
+ fZv7gsXw9W5KshUGH6jfn6L0m3d6O5/O38/LUoyeRv8AAAD//wMAWAQgW00GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f02dcdf60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5137'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_b2a1594e50313658bc743564489476ae
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU72/bNhD97r/iQOyjndiO08aGYSBBg7Xo0rprOwyYB4MmT+ItFMnxh201yP8+
+ UHIsJ8uA6YNA8fHuvXvU3UMPgJFkM2BC8SgqpwfXX0T16Vb9fL3c6/ffd59vv9x8qN9/vf/l3f7+
+ LevnCLv5C0V8ijoTtnIaI1nTwsIjj5izjt5eDKfDq+nltAEqK1HnsNLFwWQQk9/YwXg4ngyGk8Fw
+ eohWlgQGNoM/egAAD8076zQS92wGw/7TToUh8BLZ7HgIgHmr8w7jIVCI3ETW70BhTUSTpZuk9QkQ
+ rdVrwbXuiNvn4WTdmcW1Xo8+Lm+v0g/8NLz/Ln7/6kb+hxDj3/YnfG3q2jWCimTE0aQT/Lg/e0EG
+ wAyvmti7+q7xrv/yAPdlqtDELJs9rBhKit9wH1dstmJzNVosvZVJRPgVt4S7GdBSWYMwmsDS2/m5
+ Gi1WK7NamblbfFMIBnfPj4BH5zFkCuAQqDRUkOAmQnKl5xLBbtGD87glmwI0dxzOICfbJNIS/k5c
+ U6yBAuBeoMu1ct2HHUWV4ypKFVQ8oieuA6SAEqLyNpXKpngGH7GGAnlMHgOQETpJnM3P3ZPwpPMq
+ uzHXtHhXG16RgA9BcyNBUnCa10AmYul55p6fazqNmFzdLaHiZEDwCj1/iV+P3sANWUMChCL3BM/P
+ W+LWuxseI/oaNBWYK6UquxZoi33QPEQyJXAoktYgeQ22AIV8W+dqW69abgh1iFiBa24NA4SYjMnB
+ Ttloc/2wsVHlJJpKFSEXqe1u0H4JayTlIsPZiUNu8XmLnutsuiKNgHuHJosDHuGn6XTah6gogMQt
+ CQSJmrbo2/vSGk2ELdcJobAenN2hz7p9aMgbYaXnTtWAJqoUiId44GeP7Nkf+9h7bf3nSSN6LFLg
+ +tChh/3HY8trWzpvN+FFB7OCDAW19shD00ksROta7szTMLD0bFow523l4jraezQ54XgyafOxbqJ1
+ 6Ojy6oBGG7nugMlw3H8l4Vpi5NTMk+MIE1wolF1oN8p4kmRPgN5J2f+W81rutnQy5f9J3wEidyTK
+ tfMoSTwvuTvmMU/8/zp2tLkRzNp/eF2QKdE7T828ZYVbX8rNxfDizUVRsN5j7x8AAAD//wMAhFkM
+ QH0GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f23fc7b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5702'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_4140ad4d758abd65816443bdb7771700
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7bMAy9+ys4XXaJBydN0zaXoZetBQYMAwas2DAYikTbamVRk6itXpF/H+Sk
+ cYq1QC86vEc+vUfyoQAQRos1CNVJVr235eUX1X/9u/r96ebDXTq9j8PNZUry+9Wvb58/notZ7qDN
+ LSp+7HqnqPcW2ZDb0SqgZMyq87OT6qI6v1idjkRPGm1uaz2XSyp740y5qBbLsjor53tx1ZFRGMUa
+ fhQAAA/jm306jfdiDdXsEekxRtmiWB+KAEQgmxEhYzSRpWMxm0hFjtGN1q/f9nCbIoOEHCAxBvCB
+ 2iD7GWwSQy7oMCBIpyGg1AMwQYfWw0DpDVzRH1DSwTXsvsooMGk5vD/+MmCTosyxXbJ2j28PGSy1
+ PtAm7vkD3hhnYlcHlJFc9huZvBjZbQHwc5xVehJf+EC955rpDl0WnC93cmLa0EQuFnuSiaWd8JPV
+ 7Bm1WiNLY+PRrIWSqkM9dU6LkUkbOiKKo8z/m3lOe5fbuPY18hOhFHpGXfuA2qingaeygPl+Xyo7
+ zHg0LOIQGfu6Ma7F4IPZXU/j62ojKz1fLJu5KLbFPwAAAP//AwBvOKrLSwMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f491d5960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '482'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_6c6ae9249e18980f21f928c854aece8f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7ahm91bL9lsUBvSNfdpi+tC4OeoSQ2o5npXORog/x7MVLW
+ ctIUqB6EEQ95eEgN+TQCEKzEDoSsMMra6cntL7L+rbn99OXjwzkV9Pv3D97uPy9//bn1fi3GOcKe
+ /iIZv0ZNpa2dpsjW9LD0hJEy6/xmOdvONtv1ugNqq0jnsNLFycpOajY8WcwWq8nsZjLfvERXliUF
+ sYM/RgAAT9076zSKHsUOZuOvlppCwJLE7uIEILzV2SIwBA4RTRTjAZTWRDJZuklaXwHRWn2UqPWQ
+ uH+ers5Ds1Dro7tn/53Htm3aHx8K1n5/i3KxvL/K11O3rhNUJCMvTbrCL/bdm2QAwmDdxd61d13v
+ xm8d0JepJhOzbPF0EKQ43tNjPIjdQey9VUlG+EwN03kHvK+sIZivYO/t4WAOB3NfERg6v4bAk/MU
+ Mi0gBC4NFyzRREiu9KgIbEMenKeGbQrQ/dcwhUx2SqwV/J1Qc2yBA9CjJJfrQz2GM8cqx9Wcaqgx
+ kmfUAVIgBbHyNpWVTXEKP1ELBWFMngKwkTop2vWKJ/CxNVizhB+CRqNAcXAaW2ATqfSYU3Vuq83d
+ HmpkAxJr8tgZb+dr+MDWsARZsespP2CM5FvQXFCWzHUuP3BDY9AYIpsSEIqkNShswRZQETZtlt0X
+ 3SeA0IZINbiu7RQgxGRMDnaVjTYXAicbq0yiuawiZPnanif9l7RGcZYfpr2uTw151LltFWsCenRk
+ sirACN9st9sxxIoDKGpYEijS3JDvO641mQgN6kRQWA/OnslnwT50WTtFpUdXtUAmVikwhhimB/Es
+ Xt2x59F75z+vRsdTkQLql5l6sT9fhlTb0nl7Cm9mThRsOFRHTxi6uy9CtK7PnfN0GUR6Nd/CeVu7
+ eIz2gUwmXKyWPZ8YdtCAzuebFzTaiHoAluv5+B3Co6KI3G2Ay9KRKCtSQ+iwfDAptlfA6Krsf8t5
+ j7svnU35f+gHQOZ5InV0nhTL1yUPbp7yjv4vt0ubO8Giv7jHgk1J3nnuNqQo3HF7utmc1nP57UKM
+ nkf/AAAA//8DAA5g7ZQvBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f4d1a6460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2181'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1e8ff3d134c8f9cf94b17e2253e99008
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mRdJ2bZK3K7bhhrvDdYfeDdsyBIxE29xkSSdRboyi/32Q
+ 3UvSrgPmB0PmR378SIt8mAAoNmoNSjcoug129uYX3f56sfpt/za++zLXq3T3VUzf/mQ//dj/rqYl
+ wu/+Ii3fos60b4MlYe9GWEdCocK6uL6Yr+bL1dVyAFpvyJawOsjs0s9adjw7n59fzubXs8XyKbrx
+ rCmpNfwxAQB4GN5FpzO0V2uYT79ZWkoJa1LrgxOAit4Wi8KUOAk6UdMjqL0TckW6y9aeAOK93Wq0
+ 9ph4fB5OzsdmobXbz4v9ezFfbkzE27dVbTp73fXvP34+yTdS92EQVGWnD006wQ/29YtkAMphO8R+
+ 6D8MvZu+dMBY55acFNnqYaPIsNzRXjZqvVG30ZusBT5Rx3S/Br5tvCNYXMJt9JuN22zcXUPg6P45
+ BJFCpFRoASFx7bhijU4ghzqiIfAdRQiROvY5wfBf0xkUsl1ma+BrRsvSAyegvaZQ6kM7hXuWpsS1
+ nFtoUSgy2gQ5kQFpos9147OcwTvqoSKUHCkBO22zofWoeAY/9A5b1vBzsugMGE7BYg/shOqIJdXg
+ drn8cAstsgONLUUcjG8WV3DD3rEG3XAYKW9QhGIPlisqkrkt5SfuaAoWk7CrAaHK1oLBHnwFDWHX
+ F9lj0WMCSH0SaiEMbacESbJzJTg0XnwpBHZemkJiuW4Einzr72fjl/bOcJGfzkZdHzuKaEvbGrYE
+ tA/kiipAge9Wq9UUpOEEhjrWBIYsdxTHjltLTqBDmwkqHyH4e4pFcExD1kFRHTE0PZCTJifGJOls
+ ox7Vszv2OHnt/OfJ6ESqckL7NFNP9sfDkFpfh+h36cXMqYodp2YbCdNw91USH8bcJc+QQeVn861C
+ 9G2Qrfi/yRXC88uLkU8dd9ARXSyWT6h4QXsELq4W01cIt4YEedgAh6WjUTdkjqHH5YPZsD8BJidl
+ /1vOa9xj6ezq/0N/BHSZJzLbEMmwfl7y0S1S2dH/5XZo8yBYjRd3W7GrKYbIw4ZUVdiudtfL3dVC
+ f3+uJo+TfwAAAP//AwAVhG9DLwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f5c4d7460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1926'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_dfb4ebc3adf29743812fafc3b9497c0e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/rNgx9z68ghD0mQZymzcdb22HDvV233otiw7YMgSLRNu9kSZOoJL5F//sg
+ u0vSrgPmB0PmIQ8PaZFPAwBBWqxAqFqyarwZXX9Sza+309nt5McfDjd1sfz+9pfbS/Xb3VcqfxbD
+ HOG2X1DxP1Fj5RpvkMnZHlYBJWNmLeYXk+VksZxPOqBxGk0OqzyPZm7UkKXRdDKdjSbzUbF4ia4d
+ KYxiBb8PAACeunfWaTUexAo6rs7SYIyyQrE6OgGI4Ey2CBkjRZaWxfAEKmcZbZZukzFnADtnNkoa
+ c0rcP09n51OzpDGbxeN9+0XFj9ffff74aTq7q24u07z4sD3L11O3vhNUJquOTTrDj/bVm2QAwsqm
+ i71v77veDd86yFClBi1n2eJpLVATP+KB12K1Fg/B6aQYPuOOcL8CeqidRShm8BDcem3Xa/tYI1jc
+ v4YgoA8YMy1IiFRZKklJy5B8FaRGcDsM4APuyKUI3X+NY8hk20RGw19JGuIWKAIeFPpcnzRD2BPX
+ Oa6h1EAjGQNJEyFF1MB1cKmqXeIx3GELJUpOASOQVSZpXPWKR/Bta2VDCj5EI60GTdEb2QJZxirI
+ nKpzmy3uH6CRZEHJBoPsjNfFFdyQs6RA1eR7yhvJjKEFQyVmydTk8iPtcAhGRiZbgYQyGQNatuBK
+ qFHu2iy7L7pPALGNjA34ru0YIXKyNgf72rHLhcDWcZ1JDFU1Q5Zv3H7UfylnNWX5cdzr+mmHQZrc
+ tpoMAh482qwKJMM3y+VyCFxTBI07UggaDe0w9B03Bi3DTpqEULoA3u0xZMEhdlk7RVWQvm4BLdcp
+ kowcx2vxLF7dsefBe+c/zkYnYJmiNC8z9WJ/Pg6pcZUPbhvfzJwoyVKsNwFl7O6+iOx8nzvn6TKI
+ 9Gq+hQ+u8bxh9yfaTDidXfR84rSDTmhRLF5QdizNCbi4KobvEG40sqRuAxyXjpKqRn0KPS0fmTS5
+ M2BwVva/5bzH3ZdOtvo/9CdA5XlCvfEBNanXJZ/cAuYd/V9uxzZ3gkV/cTcl2QqDD9RtSFH6zXI7
+ X2yvCnU5FYPnwd8AAAD//wMAKiMzwy8GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f694f3060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3065'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_f32657ceaba3d3138d9562b557948a23
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUbW/jNgz+nl9BCPcxCeI2a16+9V6GHbZuueGGDrgMgSLRNneypJMoJ0bR/z7I
+ 7iVp1wHzB0PmQz58SIt8GAEI0mINQtWSVePN5PaTavb466KpPzb3/sey9R8Wv7wPs9n9bVeIcY5w
+ +79R8feoqXKNN8jk7ACrgJIxsxaL69lqtlwtrnugcRpNDqs8T+Zu0pClydXsaj6ZLSbF8im6dqQw
+ ijV8GQEAPPTvrNNqPIo1zMbfLQ3GKCsU65MTgAjOZIuQMVJkaVmMz6ByltFm6TYZcwGwc2anpDHn
+ xMPzcHE+N0sas3t3/+muSN1K/RnTt6/vzGb20x+rD8fbi3wDded7QWWy6tSkC/xkX79IBiCsbPrY
+ u+6u7934pYMMVWrQcpYtHrYCNfFnPPJWrLdiE5xOiuF3bAkPa6BN7SxCMYdNcNut3W7t5xrB4uE5
+ BAF9wJhpQUKkylJJSlqG5KsgNYJrMYAP2JJLEfr/GqeQyfaJjIZvSRriDigCHhX6XJ80YzgQ1zmu
+ odRAIxkDSRMhRdTAdXCpql3iKfyMHZQoOQWMQFaZpHE9KJ7A+87KhhR8jEZaDZqiN7IDsoxVkDlV
+ 7zZf3m2gkWRByQaD7I23xQ28JWdJgarJD5RvJTOGDgyVmCVTk8uP1OIYjIxMtgIJZTIGtOzAlVCj
+ bLsseyh6SACxi4wN+L7tGCFysjYH+9qxy4XA3nGdSQxVNUOWb9xhMnwpZzVl+XE66PqtxSBNbltN
+ BgGPHm1WBZLhzWq1GgPXFEFjSwpBo6EWw9BxY9AytNIkhNIF8O6AIQsOsc/aK6qC9HUHaLlOkWTk
+ ON2KR/Hsjj2OXjv/dTE6AcsUpXmaqSf742lIjat8cPv4YuZESZZivQsoY3/3RWTnh9w5T59BpGfz
+ LXxwjecdu69oM+HV/HrgE+cddEaLYvmEsmNpzsD1TTF+hXCnkSX1G+C0dJRUNepz6Hn5yKTJXQCj
+ i7L/Lec17qF0stX/oT8DKs8T6p0PqEk9L/nsFjDv6P9yO7W5FyyGi7sryVYYfKB+Q4rS71b7xXJ/
+ U6gfrsTocfQPAAAA//8DAP2dAv4vBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f7d8c9e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2955'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_b381151d370453dcc8acc17960f92592
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqTNmh9v6Q4bDoei7e76sF0OgSLRNneypEpUEq/o/z7I
+ 7sVp1wHzgyHzIz9+pEU+DQAEabECoSrJqvZmtL5XdfHb+vsf691j+rh7MG725/SXh9nu8Nl/EsMc
+ 4XZ/oeIfUWPlam+QydkOVgElY2adzi8ny8liOZ+3QO00mhxWeh7N3KgmS6OLycVsNJmPpouX6MqR
+ wihW8HUAAPDUvrNOq/EoVjAZ/rDUGKMsUaxOTgAiOJMtQsZIkaVlMexB5SyjzdJtMuYMYOfMVklj
+ +sTd83R27psljdkWt+n+fr0/WFs94q9/f7hdXq8fanc8y9dRN74VVCSrTk06w0/21ZtkAMLKuo29
+ aW7a3g3fOshQphotZ9niaSNQE3/BI2/EaiPugtNJMfyOe8LDCuiuchZhOoO74DYbu9nYLxWCxcNr
+ CAL6gDHTgoRIpaWClLQMyZdBagS3xwA+4J5citD+1ziGTLZLZDQ8JmmIG6AIeFToc33SDOFAXOW4
+ mlINtWQMJE2EFFEDV8GlsnKJx/AJGyhQcgoYgawySeOqUzyCD42VNSn4GI20GjRFb2QDZBnLIHOq
+ 1m22uLmDWpIFJWsMsjWup1dwTc6SAlWR7yivJTOGBgwVmCVTncuPtMchGBmZbAkSimQMaNmAK6BC
+ uW+y7K7oLgHEJjLW4Nu2Y4TIydoc7CvHLhcCO8dVJjFUVgxZvnGHUfelnNWU5cdxp+t2j0Ga3LaK
+ DAIePdqsCiTDT8vlcghcUQSNe1IIGg3tMXQdNwYtw16ahFC4AN4dMGTBIbZZW0VlkL5qAC1XKZKM
+ HMcb8Sxe3bHnwXvnb2ejE7BIUZqXmXqxP5+G1LjSB7eLb2ZOFGQpVtuAMrZ3X0R2vsud87QZRHo1
+ 38IHV3vesvuONhNezC47PtHvoB6dThcvKDuWpgcur6bDdwi3GllSuwFOS0dJVaHuQ/vlI5MmdwYM
+ zsr+t5z3uLvSyZb/h74HVJ4n1FsfUJN6XXLvFjDv6P9yO7W5FSy6i7styJYYfKB2Q4rCb5e7+WJ3
+ NVU/X4jB8+AfAAAA//8DAPzBLQQvBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64f92089660a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:02:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2159'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_d3b3b36b163d7de268dc8ee510677b01
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vORiG7ZlI7UvRQ8JYvTSB9BDg0KgybXIlOIS5CqpEfjfC9GK
+ 5KAp0AsPMzuDmV0+FwDCarEFoYxk1QQ3/fhFNeamTF/9p5sf3/wt3S6/L9smrsrPSxaTTkH7B1T8
+ opopaoJDtuTPtIooGTvXxXU538zfb643mWhIo+tkdeBpOVtPuY17ms4Xy3WvNGQVJrGF+wIA4Dm/
+ XUav8bfYwnzygjSYkqxRbIchABHJdYiQKdnE0p/z9qQiz+hz7Dt0jt7B7qqBhzYxSHi0kVvpYFBO
+ IBHsQJO/YjDyEeGA6Kyv0wT2LWetwYjABAZdgCO18GTZgPRHNtbXGfGIegZ39ARKetj1/pli0vL4
+ 4TJhxEObZLch3zrX46ehsqM6RNqnnh/wg/U2mSqiTOS7eokpiMyeCoCfebXtq22JEKkJXDH9Qt8Z
+ LlZnOzEecyTLdU8ysXQjvtpM3nCrNLK0Ll2cRiipDOpROd5RttrSBVFcdP47zFve597W1/9jPxJK
+ YWDUVYiorXpdeByL2H31f40NO86BRTomxqY6WF9jDNHmz5ZPeSr+AAAA//8DADrR8clrAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fa16eb560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '658'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_b66c71b0ba8f6b1802305ef0a52387fc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqTN9Zq8XTFgG4biesPW220ZAkaibW6ypJOopL6i//sg
+ O8uP7gbMD4bMj/z4kRb5PAJQbNQKlG5QdBvs5N0H3bL7cnUnj+YxvP1ubsz1p4/14tdPj7eNGpcI
+ v/2TtPwTNdW+DZaEvRtgHQmFCuv87fVsObtd3s56oPWGbAmrg0yup28mkuPWT2bzqzeHyMazpqRW
+ 8PsIAOC5fxeNztCTWkHP01taSglrUqujE4CK3haLwpQ4CTpR4xOovRNyRbbL1p4B4r3daLT2lHh4
+ ns/Op0ahtRvX7sTNfvv8/kv9vXz4xVRP1Uejq+4s30DdhV5QlZ0+NugMP9pXr5IBKIdtH3vf3fd9
+ G792wFjnlpwU2ep5rUKkiq0ls1artXqI3mQt8BPtmPYr4IfGO4L5Ah6iX6/deu1+bggc7S8hiBQi
+ pcILCIlrxxVrdAI51BENgd9RhBBpxz4n6H9qmkIh22a2Bj5ntCwdcAJ60hRKgWjHsGdpSlzLuYUW
+ hSKjTZATGZAm+lw3PssUfqQOKkLJkRKw0zYbWg2KJ/Bt57BlDT8ki86A4RQsdsBOqI5YUvVui9v7
+ B2iRHWhsKWJvfDe/gTv2jjXohsNAeYciFDuwXFGRzG0pP/GOxmAxCbsaEKpsLRjswFfQEO66Inso
+ ekgAqUtCLYS+7ZQgSXauBIfGiy+FwNZLU0gs141AkW/9fjJ8ae8MF/lpOuh6v6OItrStYUtAT4Fc
+ UQUo8M1yuRyDNJzA0I41gSHLO4pDx60lJ7BDmwkqHyH4PcUiOKY+a6+ojhiaDshJkxNjkjRdqxd1
+ ccleRl87/3E2O5GqnNAehupgfzlOqfV1iH6bXg2dqthxajaRMPWXXyXxYchd8vQZVL4YcBWib4Ns
+ xP9FrhBeLRYDnzotoBM6n98cUPGC9gRc3xyWyCXhxpAg9yvguHU06obMKfS0fTAb9mfA6Kzsf8v5
+ GvdQOrv6/9CfAF3micwmRDKsL0s+uUUqC/q/3I5t7gWr4eJuKnY1xRD5uCJHL6O/AQAA//8DAFxj
+ laEhBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fa69f3060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1722'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_24673e33ff28041d275be005cbfe288d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqbtdU3erhh22x26y25DD8MyBIxEW1xlSacfTo2i//sg
+ Oxcn3Q2YHwyZH/nxIy3yeQIgWIkVCKkxycab2dtfZfP4/tPn6uGx058f8ge2+t1Pexd++ahRTEuE
+ 2/1NMn2NmkvXeEOJnR1gGQgTFdbF91cXy4vb5e1lDzROkSlhtU+zq/mbWcph52YXi8s3h0jtWFIU
+ K/hzAgDw3L+LRqvoSazgYvrV0lCMWJNYHZ0ARHCmWATGyDGhTWI6gtLZRLbIttmYEyA5Z7YSjRkT
+ D8/zyXlsFBqzXX8J737s7vz7XbhR6z/CVVD69rflw0m+gbrzvaAqW3ls0Al+tK9eJQMQFps+9r67
+ 7/s2fe2Aoc4N2VRki+eN8IEqNobURqw2Yh2cyjLBJ2qZ9ivgtXaWYHEN6+A2G7vZ2N81gaX9OQSB
+ fKBYeAEhcm25Yok2QfZ1QEXgWgrgA7XscoT+p8Y5FLJdZqPgS0bDqQOOQE+SfCkQzRT2nHSJazg3
+ 0GCiwGgi5EgKkg4u19rlNIcP1EFFmHKgCGylyYpWg+IZ/NBZbFjCz9GgVaA4eoMdsE1UByyperfr
+ 2/s1NMgWJDYUsDe+XdzAHTvLEqRmP1DeYUoUOjBcUZHMTSk/cktTMBgT2xoQqmwMKOzAVaAJ267I
+ HooeEkDsYqIGfN92ihBTtrYEe+2SK4XAziVdSAzXOkGRb9x+NnxJZxUX+XE+6PrYUkBT2qbZENCT
+ J1tUASb4brlcTiFpjqCoZUmgyHBLYei4MWQTtGgyQeUCeLenUASH2GftFdUBve6AbNI5MsYU5xvx
+ Is4u2cvkW+e/TmYnUJUjmsNQHewvxyk1rvbB7eKroRMVW456Gwhjf/lFTM4PuUuePoPIZwMufHCN
+ T9vkHskWwsvr64FPjAtoRBeLmwOaXEIzAlc3hyVyTrhVlJD7FXDcOhKlJjWGjtsHs2J3AkxOyv63
+ nG9xD6Wzrf8P/QjIMk+ktj6QYnle8ugWqCzo/3I7trkXLIaLu63Y1hR84OOKnLxM/gEAAP//AwBQ
+ ltg1IQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fb2492160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1615'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_3563c720f0a88d2f31f963f8aff27cfd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bRgx+919BHPpoG3HjZLHfkqXA2iFY1hXpinkw6BMlsT3d3e54ctQg//tw
+ kusfaQdMD8KJH/nxI3Xk0whAcaGWoHSNohtvJte/66b548Nt+CRf7PnDx82f/PP97S9v5jpctGqc
+ I9zmM2n5FjXVrvGGhJ0dYB0IhTLr7Kfzs8XZ1eJq3gONK8jksMrL5Hx6MZEUNm5yNnt9sYusHWuK
+ agl/jQAAnvp31mgLelRLOBt/szQUI1aklnsnABWcyRaFMXIUtKLGB1A7K2SzbJuMOQLEObPWaMwh
+ 8fA8HZ0PjUJj1und4uHr2zebuvt6bcKnh/nHdzdX9Nkf5RuoO98LKpPV+wYd4Xv78kUyAGWx6WPv
+ uru+b+OXDhiq1JCVLFs9rZQPVLIxVKzUcqXugyuSFnhPLdN2CXxfO0swm8N9cKuVXa3sh5rA0vYU
+ gkA+UMy8gBC5slyyRiuQfBWwIHAtBfCBWnYpQv9T4xQy2SaxKeCfhIalA45Aj5p8LhDNGLYsdY5r
+ ODXQoFBgNBFSpAKkDi5VtUsyhV+pg5JQUqAIbLVJBS0HxRO47Sw2rOFtNGgLKDh6gx2wFaoC5lS9
+ 2/zq7h4aZAsaGwrYG69nl3DDzrIGXbMfKG9QhEIHhkvKkrnJ5UduaQwGo7CtAKFMxkCBHbgSasK2
+ y7KHoocEELso1IDv204RoiRrc7CvnbhcCGyc1JnEcFULZPnGbSfDl3a24Cw/Tgddv7UU0OS21WwI
+ 6NGTzaoABV4tFosxSM0RCmpZExRkuKUwdNwYsgItmkRQugDebSlkwSH2WXtFVUBfd0BW6hQZo8Tp
+ Sj2rk0v2PPrR+e+j2QlUpohmN1Q7+/N+So2rfHCb+GLoVMmWY70OhLG//CqK80PunKfPoNLJgCsf
+ XONlLe4L2Uz4ej4f+NRhAR3Q2exyh4oTNAfg/HK3RE4J1wUJcr8C9ltHo66pOIQetg+mgt0RMDoq
+ +3s5P+IeSmdb/R/6A6DzPFGx9oEK1qclH9wC5QX9X277NveC1XBx1yXbioIPvF+Ro+fRvwAAAP//
+ AwCraVLXIQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fbd69e960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:05 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1777'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_90c44abf977b81e1ff30629c4ea95e36
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMguaay5K8tVfg0G7detvhBmwZAkaibbaypOmHU6/o/z7I
+ zsVJdwPmB0PmR378SIt8GQEIVmINQlYYZe305OqTrO2Py/nj5W36dVHffeHb9sPdY7W8qeyNGOcI
+ u3skGb9GTaWtnabI1vSw9ISRMuvs+8uL1cVytVx0QG0V6RxWuji5nL6fxOR3dnIxe/f+EFlZlhTE
+ Gv4YAQC8dO+s0Sh6Fmu4GH+11BQCliTWRycA4a3OFoEhcIhoohgPoLQmksmyTdL6BIjW6q1ErYfE
+ /fNych4ahVpv7+6bD3fl009Pf5uP6vEjFr/v6uur3W8n+Xrq1nWCimTksUEn+NG+fpMMQBisu9j7
+ 9r7r2/itA/oy1WRili1eNsJ5KlhrUhux3ogHb1WSEX6hhmm/Bn6orCGYzeHB283GbDbmc0VgaH8O
+ gSfnKWReQAhcGi5YoomQXOlREdiGPDhPDdsUoPupYQqZbJdYK/groebYAgegZ0kuF4h6DHuOVY6r
+ OdVQYyTPqAOkQApi5W0qK5viFH6gFgrCmDwFYCN1UrTuFU/gpjVYs4TboNEoUBycxhbYRCo95lSd
+ 23x5/wA1sgGJNXnsjFezBVyzNSxBVux6ymuMkXwLmgvKkrnO5QduaAwaQ2RTAkKRtAaFLdgCKsKm
+ zbL7ovsEENoQqQbXtZ0ChJiMycGustHmQmBnY5VJNJdVhCxf2/2k/5LWKM7yw7TX9XNDHnVuW8Wa
+ gJ4dmawKMMJ3q9VqDLHiAIoalgSKNDfk+45rTSZCgzoRFNaDs3vyWbAPXdZOUenRVS2QiVUKjCGG
+ 6Ua8irNL9jr61vnPk9nxVKSA+jBUB/vrcUq1LZ23u/Bm6ETBhkO19YShu/wiROv63DlPl0GkswEX
+ ztvaxW20T2Qy4bv5vOcTwwIa0NlscUCjjagH4HJxWCLnhFtFEblbAcetI1FWpIbQYftgUmxPgNFJ
+ 2f+W8y3uvnQ25f+hHwCZ54nU1nlSLM9LHtw85QX9X27HNneCRX9xtwWbkrzzfFyRo9fRPwAAAP//
+ AwBUlqiiIQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fc9bbb560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1650'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_1918d6e285372242af9159351930cacd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUbW/jNgz+nl9BCPuYBM315Zp8a28bUAzFZW+HG5YhYGTa5ipLOolyahT974Ps
+ XJx0N2D+YMh8yIcPaZEvEwDFhVqB0jWKbryZ3f2sG3/nW1d9+nJzvf8sfzx8LNv7mq+X7bOa5gi3
+ +5u0fI2aa9d4Q8LODrAOhEKZdfH+8mJ5cbu8fd8DjSvI5LDKy+xyfj2TFHZudrF4d32IrB1rimoF
+ f04AAF76d9ZoC3pWK7iYfrU0FCNWpFZHJwAVnMkWhTFyFLSipiOonRWyWbZNxpwA4pzZajRmTDw8
+ LyfnsVFozPbBfXr64O+bHz78/vi0/nx543/0gfHXk3wDded7QWWy+tigE/xoX71JBqAsNn3sY/fY
+ 92361gFDlRqykmWrl43ygUo2hoqNWm3UOrgiaYFfqGXar4DXtbMEiytYB7fZ2M3G/lYTWNqfQxDI
+ B4qZFxAiV5ZL1mgFkq8CFgSupQA+UMsuReh/apxDJtslNgV8SWhYOuAI9KzJ5wLRTGHPUue4hlMD
+ DQoFRhMhRSpA6uBSVbskc/iJOigJJQWKwFabVNBqUDyD7zuLDWt4iAZtAQVHb7ADtkJVwJyqd7u6
+ fVxDg2xBY0MBe+Pd4gbu2VnWoGv2A+U9ilDowHBJWTI3ufzILU3BYBS2FSCUyRgosANXQk3Ydln2
+ UPSQAGIXhRrwfdspQpRkbQ72tROXC4GdkzqTGK5qgSzfuP1s+NLOFpzlx/mg62NLAU1uW82GgJ49
+ 2awKUOC75XI5Bak5QkEta4KCDLcUho4bQ1agRZMIShfAuz2FLDjEPmuvqAro6w7ISp0iY5Q436hX
+ dXbJXiffOv91MjuByhTRHIbqYH89TqlxlQ9uF98MnSrZcqy3gTD2l19FcX7InfP0GVQ6G3Dlg2u8
+ bMU9kc2E766uBj41LqARXSxuDqg4QTMClzeHJXJOuC1IkPsVcNw6GnVNxRg6bh9MBbsTYHJS9r/l
+ fIt7KJ1t9X/oR0DneaJi6wMVrM9LHt0C5QX9X27HNveC1XBxtyXbioIPfFyRk9fJPwAAAP//AwBv
+ 0pLyIQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fd5de6f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1915'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_6fc66d6b51793610aac201ed976636b9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBTc9RWvXLpEgWQ7qe2lKIrESYEOXboEhcCQzxIbio8gn5C6gf+9oKRa
+ MpoAXTjcvTvcHfiSAQijxRaEaiSr1tv80zfVxltFX58//945uSuedv725ur7Iny5KcVFUtDjT1T8
+ V3WpqPUW2ZAbaBVQMibX8sOy2BTrzaboiZY02iSrPecryhfFYpUX67y4HoUNGYVRbOEhAwB46d8U
+ 0Wn8JbbQ2/RIizHKGsX2dAQgAtmECBmjiSwdi4uJVOQYXZ/6Dq2ld3D/voUGA4J0GgJKfQAmaND6
+ S7ijZ1DSwT0MZnCgDpi0PHycmwbcd1GmTq6zdsSPp5SWah/oMY78Cd8bZ2JTBZSRXEoUmbzo2WMG
+ 8KNfozsrKHyg1nPF9IQuGZarwU5M88/I65FkYmknfDkueO5WaWRpbJytKZRUDepJOU0vO21oRmSz
+ zv+Gec176G1c/T/2E6EUekZd+YDaqPPC01nA9DnfOjtt3AcW8RAZ22pvXI3BBzP8j72vyquNXi9X
+ pVIiO2Z/AAAA//8DAFhL4zMoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fe2ba3160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:10 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '406'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c8025206d614568e88e193a3a9ddc655
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU247bNhB991cMiD7au7bX2diGYSBBUCBpN7tpgyBAXRhjciRNQpEsL7aFxf57
+ QMnryzYFqgeB4uHMOXOomccegGAl5iBkhVHWTg/efJJ1cM13RR8n7779+UH+qrevPn3Z7G8mNBT9
+ HGE330jG56graWunKbI1HSw9YaScdfT6ZjgbTmezYQvUVpHOYaWLg4kdjIfjyWA4HQxvD4GVZUlB
+ zOGvHgDAY/vOEo2ivZhDm6bdqSkELEnMj4cAhLc67wgMgUNEE0X/BEprIpms2iStz4BorV5L1PpE
+ 3D2PZ+uTT6j1+kOjRl/GOP36MY5+f/359v3X+3s73u3P+LrUjWsFFcnIoz9n+HF//oIMQBis29i7
+ 5q61rf/yAPoy1WRili0eV8J5KlhrUisxX4lFNVo+eKuSjPAHbZl2c+CHyhqC0QQevF1cV6PlamVW
+ K7Nwy88VgaHd5RHw5DyFzAEIgUvDBUs0EZIrPSoCuyUPztOWbQrQ3m+4gpxsk1gr+Ceh5tgAB6C9
+ JJeLRd2HHccqx9WcaqgxkmfUAVIgBbHyNpWVTfEKfqMGCsKYPAVgI3VSNF9cu2fhSedVtmOhefmu
+ MVizhPdBo1GgODiNDbCJVHrM3ItrzecRk+ndA9TIBiTW5PEl/mZ0C2/ZGpYgK3bP8OK6I+68e4sx
+ km9Ac0G5Uq6za4G31AeNIbIpAaFIWoPCBmwBFeG2ydV2XnXcEJoQqQbX3hoFCDEZk4NdZaPN9cPG
+ xion0VxWEXKR2u4G3Ze0RnEuMlydOeSW91vyqLPpFWsC2jsyWRxghF9ms1kfYsUBFG1ZEijSvCXf
+ 3ZfWZCJsUSeCwnpwdkc+6/ahJW+FlR5d1QCZWKXAGOKBXzyJi1/2qfez9d9nneipSAH1oUUP+0/H
+ nte2dN5uwosWFgUbDtXaE4a2lUSI1nXcmadlEOliXAjnbe3iOtrvZHLC8eSmyydO0+yEjm4Pk0dE
+ G1GfgMnwOewi4VpRRG4HynGGSZQVqVPoaZZhUmzPgN5Z2f+W87PcXelsyv+T/gTI3JGk1s6TYnlZ
+ 8umYpzzt/+vY0eZWsOj+4XXBpiTvPLcDVxRuPXo1U9ObyUhK0Xvq/QAAAP//AwCVWujteQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64fe69fa660a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1870'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_742aa260b6c23f725d04b08fc33341fe
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bNhB+919xIPZoJ7bjZbFhGEjQYim6dF7RhxbzYJzJk3QtRXL8IUcN8r8P
+ lBLbyTpgehAofvzu++6ou4cBgGAlFiBkhVHWTo+u/5B1mvlf5/Ltm2+XxU1zO327T/LdezQffxPD
+ zLC7ryTjM+tM2tppimxND0tPGClHnfxyMZ6Pr+bzaQfUVpHOtNLF0cyOpuPpbDS+Go0vn4iVZUlB
+ LODPAQDAQ/fOFo2ie7GA8fB5p6YQsCSxOBwCEN7qvCMwBA4RTRTDIyitiWSya5O0PgGitXorUeuj
+ cP88nKyPdUKtt1+/lx/mdU1m9332+fpTlF/Wjb1tb0/0+tCt6wwVychDfU7ww/7ilRiAMFh33Lv2
+ rivb8PUB9GWqycRsWzxshPNUsNakNmKxEctqslp7q5KM8JEapv0CeF1ZQzCZwdrb5Xk1WW02ZrMx
+ S7f6VBEY2r88Ap6cp5A1ACFwabhgiSZCcqVHRWAb8uA8NWxTgO5+wxnkYLvEWsHfCTXHFjgA3Uty
+ OVnUQ9hzrDKv5lRDjZE8ow6QAimIlbeprGyKZ/CeWigIY/IUgI3USdFiee6ejSedV7kcS82rN63B
+ miW8CxqNAsXBaWyBTaTSY9Zenms+Zcyu7tZQIxuQWJPH1/j15BJu2BqWICt2z/DyvBfua3eDMZJv
+ QXNBOVOuc9UCNzQEjSGyKQGhSFqDwhZsARVh0+Zs+1r12hDaEKkG190aBQgxGZPJrrLR5vxhZ2OV
+ g2guqwg5SW33o/5LWqM4JxnOTirkVr835FHnolesCejekcnmACP8NJ/PhxArDqCoYUmgSHNDvr8v
+ rclEaFAngsJ6cHZPPvv2oRPvjJUeXdUCmVilwBjik754FC9+2cfBj9Z/nXSipyIF1E8t+rT/eOh5
+ bUvn7S68amFRsOFQbT1h6FpJhGhdr511OgWRXowL4bytXdxG+41MDjidXfTxxHGaHdHJ5dPkEdFG
+ 1EdgNn6mvQi4VRSRu4FymGESZUXqSD3OMkyK7QkwOEn733Z+FLtPnU35f8IfAZk7ktTWeVIsX6Z8
+ POYpT/v/OnYoc2dY9P/wtmBTkneeu4ErCred/DxXVxeziZRi8Dj4BwAA//8DANiCvkd5BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de64ff368a160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1988'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_2643bb96ec82bce51e4767dc7cfc115f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUbWsjNxD+7l8xiH60Ezvx5WJjAhdCoZT0ctcUCnUxE2l2NalWUvViey/kvxft
+ xm/pFbofFq0ePfM8M9qZlwGAYCXmIKTGJBtvRp++yGajwvY5PI3NL49Xn398lHjxod1eb+ytGBaG
+ e3ommXasM+kabyixsz0sA2GiEnXy8XI8G1/PZtMOaJwiU2i1T6OpG12ML6aj8fVofPVG1I4lRTGH
+ PwYAAC/du1i0irZiDuPhbqehGLEmMd8fAhDBmbIjMEaOCW0SwwMonU1ki2ubjTkCknNmJdGYg3D/
+ vBytD3VCY1a5uvr66/TjPd09/1Y///5t9kXf3s8e7470+tCt7wxV2cp9fY7w/f78nRiAsNh03Pv2
+ vivb8P0BDHVuyKZiW7wshQ9UsTGklmK+FAs9uXkITmWZ4CutmTZz4AftLMFkCg/BLc715Ga5tMul
+ XfibR01gaXN6BAL5QLFoAELk2nLFEm2C7OuAisCtKYAPtGaXI3T3G8+gBHvKbBT8ndFwaoEj0FaS
+ L8miGcKGky68hnMDDSYKjCZCjqQg6eByrV1OZ/AztVARphwoAltpsqL54tzvjGdTVqUcC8M3d63F
+ hiX8FA1aBYqjN9gC20R1wKK9ODd8zJhe3z9Ag2xBYkMB3+OfJldwy86yBKnZ7+DFeS/c1+4WU6LQ
+ guGKSqbclKpFXtMQDMbEtgaEKhsDCltwFWjCdVuy7WvVa0NsY6IGfHdrFCGmbG0he+2SK/nDk0u6
+ BDFc6wQlSeM2o/5LOqu4JBnPjirkbz6vKaApRddsCGjryRZzgAl+mM1mQ0iaIyhasyRQZHhNob8v
+ Y8gmWKPJBJUL4N2GQvEdYifeGasDet0C2aRzZIzpTV+8ipNf9nXwvfWfR50YqMoRzVuLvu2/7nve
+ uNoH9xTftbCo2HLUq0AYu1YSMTnfaxedTkHkk3EhfHCNT6vk/iJbAl5ML/t44jDNDujk6m3yiOQS
+ mgMwHe9oJwFXihJyN1D2M0yi1KQO1MMsw6zYHQGDo7T/bed7sfvU2db/J/wBkKUjSa18IMXyNOXD
+ sUBl2v/XsX2ZO8Oi/4dXFduagg/cDVxR+dXkw0xdX04nUorB6+AfAAAA//8DAMNayj95BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65000badc60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1894'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_d2a8a90769ae3c56b89b6fc1e793e53e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiZ042dgwDCRoim6L7Ga7KbDdujDG5EiahCJZXpxog/x7
+ Qcm3pFugehAoHp45Z4aaee4BCFZiCkJWGGXt9ODyk6y//Wy/frj+Y/h5HE5Wp/H685fr388uv3xI
+ op8ZdnVPMm5ZR9LWTlNkazpYesJIOero3elwMryYTN61QG0V6UwrXRyM7eBkeDIeDC8Gw/MNsbIs
+ KYgp/NkDAHhu39miUfQkpjDsb3dqCgFLEtPdIQDhrc47AkPgENFE0d+D0ppIJrs2SesDIFqrlxK1
+ 3gt3z/PBel8n1HrJH+/fP1n/7f4B7+4uy/qnu6uvZw+/PBzodaEb1xoqkpG7+hzgu/3pGzEAYbBu
+ uTfNTVu2/tsD6MtUk4nZtnheCOepYK1JLcR0IWbVaH7rrUoywm+0ZnqcAt9W1hCMxnDr7ey4Gs0X
+ C7NYmJmb31UEhh5fHwFPzlPIGoAQuDRcsEQTIbnSoyKwa/LgPK3ZpgDt/YYjyMFWibWCvxNqjg1w
+ AHqS5HKyqPvwyLHKvJpTDTVG8ow6QAqkIFbeprKyKR7Br9RAQRiTpwBspE6KprNjtzWedF7lcsw0
+ z39sDNYs4X3QaBQoDk5jA2wilR6z9uxY8yFjfHFzCzWyAYk1eXyLX47O4YqtYQmyYreFZ8edcFe7
+ K4yRfAOaC8qZcp2rFnhNfdAYIpsSEIqkNShswBZQEa6bnG1Xq04bQhMi1eDaW6MAISZjMtlVNtqc
+ P6xsrHIQzWUVISep7eOg+5LWKM5JhqODCrn5xzV51LnoFWsCenJksjnACD9MJpM+xIoDKFqzJFCk
+ eU2+uy+tyURYo04EhfXg7CP57NuHVrw1Vnp0VQNkYpUCY4gbffEiXv2yL73vrf866ERPRQqoNy26
+ 2X/Z9by2pfN2Fd60sCjYcKiWnjC0rSRCtK7TzjqtgkivxoVw3tYuLqN9IJMDnoxPu3hiP8326Oh8
+ M3lEtBH1HhgPt7RXAZeKInI7UHYzTKKsSO2p+1mGSbE9AHoHaf/bzvdid6mzKf9P+D0gc0eSWjpP
+ iuXrlPfHPOVp/1/HdmVuDYvuH14WbEryznM7cEXhlqOzibo4HY+kFL2X3j8AAAD//wMABvkUTnkG
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6500e4cd460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2469'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_a092b203355ada895d7d365388055f93
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiZV4U9swDDjoQxfdoN7F9gLUhUGTI3EaimR5kSME+feC
+ kq/pFqgeBIqHZ86ZoWZeBwCMJJsDE4pHUTs9Wn0Wpih240f1sTa/VuKXH788ud+eq70erwo2zAy7
+ +wtFPLJuhK2dxkjW9LDwyCPmqMX39+PZeDqbzTqgthJ1plUujiZ2dDe+m4zG09H44UBUlgQGNoc/
+ BgAAr907WzQSX9gcxsPjTo0h8ArZ/HQIgHmr8w7jIVCI3EQ2PIPCmogmuzZJ6wsgWqu3gmt9Fu6f
+ 14v1uU5c620Zrfh0/2F159afzNeVbJ6n9e8z1Vzo9aFb1xkqkxGn+lzgp/35OzEAZnjdcZ/ap65s
+ w/cHuK9SjSZm2+x1w5zHkrRGuWHzDVuoYrn2ViYR4Qs2hPs50FpZg1BMYO3t4lYVy83GbDZm4ZZf
+ FYLB/fUR8Og8hqwBHAJVhkoS3ERIrvJcItgGPTiPDdkUoLvfcAM52C6RlvB34ppiCxQAXwS6nCzX
+ Q9hTVJlXU6qh5hE9cR0gBZQQlbepUjbFG/gJWyiRx+QxABmhk8T54tYdjSedV7kcC03LH1rDaxLw
+ MWhuJEgKTvMWyESsPM/ai1tNl4zJ9GkNNScDgtfo+Xt8VTzAI1lDAoQid4QXt71wX7tHHiP6FjSV
+ mDOlOlctUIND0DxEMhVwKJPWIHkLtgSFvGlztn2tem0IbYhYg+tuDQOEmIzJZKdstDl/2NmochBN
+ lYqQk9R2P+q/hDWScpLh5qJCbvlzg57rXHRFGgFfHJpsDniE73JrQlQUQGJDAkGipgZ9f19ao4nQ
+ cJ0QSuvB2T367NuHTrwzVnnuVAtookqBeIgHffbGrn7Zt8G31n9edKLHMgWuDy162H879by2lfN2
+ F961MCvJUFBbjzx0rcRCtK7XzjqdAktX44I5b2sXt9E+o8kB7yb3fTx2nmZntHg4TB4WbeT6DEzG
+ R9pVwK3EyKkbKKcZJrhQKM/U8yzjSZK9AAYXaf/bzrdi96mTqf5P+DMgckei3DqPksR1yudjHvO0
+ /69jpzJ3hln/D29LMhV656kbuKx02+LDTE7vJ4UQbPA2+AcAAP//AwBxrz+KeQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6501f8c1860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2030'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_6354b1bf24251f6787c722009ba3818a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWobMRS871e86tKLN8hZN8a+lFJoEtpLTqWUsMjS2101Wj1Zegs1wf9etHa8
+ G5pCLzrMvBlmBj0XAMIasQWhO8W6D6789KB9dXe7ftrr/eGr/qH3N/Hzl03TP3y7JbHICtr9Qs0v
+ qitNfXDIlvyJ1hEVY3Zdriu5kRsplyPRk0GXZW3gclXyEHdUXsvrVSlXpdyc1R1ZjUls4WcBAPA8
+ vjmnN/hbbEEuXpAeU1Itiu3lCEBEchkRKiWbWHkWi4nU5Bn9GP0OnaN3cP++hw4jAhN06AIcaLiC
+ 751i0MrDPRiChmKGgcmow8e5X8RmSCp38oNzZ/x4CeioDZF26cxf8MZ6m7o6okrkc5jEFMTIHguA
+ x3GI4VU3ESL1gWumJ/TZcLk62Ylp/hm5PpNMrNyEV8vFG261QVbWpdmQQivdoZmU0+pqMJZmRDHr
+ /HeYt7xPva1v/8d+IrTGwGjqENFY/brwdBYxf85/nV02HgOLdEiMfd1Y32IM0Z6+RhPqD2ZXyeqm
+ ahpRHIs/AAAA//8DAHXc/YQoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6502d88af60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '739'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_35d43b5c39b0ac6b44aa35a3bb5f44b3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMiqTNZUnecuj1cBuydcOAO+AyBIxE29xkSdUPp0bR/32Q
+ nYuT7gbMD4bMj/z4kRb5MgIQrMQahKwwytrpyeY3aear5XG6eTCHD/Ldh/un9PTwE358+FS1Ypwj
+ 7OEvkvFb1I20tdMU2Zoelp4wUmad/Xg3XU1X0+ltB9RWkc5hpYuT+SQmf7CT2+ntfDKdT6arU3Rl
+ WVIQa/g6AgB46d5Zp1H0LNYwHX+z1BQCliTWZycA4a3OFoEhcIhoohgPoLQmksnSTdL6AojW6r1E
+ rYfE/fNycR6ahVrvN9XDoQ7b+LH8vGzuP7tfvhw3xXZ5d5Gvp25dJ6hIRp6bdIGf7es3yQCEwbqL
+ 3bbbrnfjtw7oy1STiVm2eNkJ56lgrUntxHonHr1VSUb4nRqm4xr4sbKGYDaHR293O7PbmT8qAkPH
+ awg8OU8h8wJC4NJwwRJNhORKj4rANuTBeWrYpgDdjw03kMkOibWCp4SaYwscgJ4luVwg6jEcOVY5
+ ruZUQ42RPKMOkAIpiJW3qaxsijfwM7VQEMbkKQAbqZOida94AvetwZolfAoajQLFwWlsgU2k0mNO
+ 1bnNl9tHqJENSKzJY2fczBbwnq1hCbJi11O+xxjJt6C5oCyZ61x+4IbGoDFENiUgFElrUNiCLaAi
+ bNosuy+6TwChDZFqcF3bKUCIyZgc7CobbS4EDjZWmURzWUXI8rU9TvovaY3iLD/c9Lp+bcijzm2r
+ WBPQsyOTVQFG+GG1Wo0hVhxAUcOSQJHmhnzfca3JRGhQJ4LCenD2SD4L9qHL2ikqPbqqBTKxSoEx
+ xHCzE6/i6pK9jr53/vNidjwVKaA+DdXJ/nqeUm1L5+0hvBk6UbDhUO09YeguvwjRuj53ztNlEOlq
+ wIXztnZxH+3fZDLh7Xze84lhCQ3obLY4odFG1ANwtzgtkWvCvaKI3K2A89aRKCtSQ+iwfTApthfA
+ 6KLsf8v5HndfOpvy/9APgMzzRGrvPCmW1yUPbp7ykv4vt3ObO8Giv7j7gk1J3nnuVqQo3F69U8v5
+ YrlakBi9jv4BAAD//wMAlHj+dzAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65033593a60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4313'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_495cc30f1a8bb9adb5099be26f186aa4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU328bNwx+919BCHu0Ayd23dlv6dYG+5HWK9qXzoNBS7w7LjpJkyg7tyD/+6C7
+ 1HayDtg9HHT8yI8feSIfRgCKjVqB0g2KboOdXP+m3bK9/vi+ff/hML9/u2xufPdp8ba6lndGjUuE
+ 3/1JWr5GXWjfBkvC3g2wjoRChfXy9Wy6nC6n09c90HpDtoTVQSbzieS485Or6dV8Mp1Ppsun6Maz
+ pqRW8PsIAOChfxedztC9WsF0/NXSUkpYk1odnQBU9LZYFKbESdCJGp9A7Z2QK9JdtvYMEO/tVqO1
+ p8TD83B2PjULrd3OePn3DzezX/1s8epOf1nf3NmfP9+Gd2f5Buou9IKq7PSxSWf40b56kQxAOWz7
+ 2Nvutu/d+KUDxjq35KTIVg8bFSJVbC2ZjVpt1Dp6k7XAR9ozHVbA68Y7gss5rKPfbNxm4z41BI4O
+ zyGIFCKlwgsIiWvHFWt0AjnUEQ2B31OEEGnPPifof2y6gEK2y2wN/JXRsnTACeheUygFoh3DgaUp
+ cS3nFloUiow2QU5kQJroc934LBfwC3VQEUqOlICdttnQalA8gR87hy1r+ClZdAYMp2CxA3ZCdcSS
+ qnebf3+7hhbZgcaWIvbG68sFvGHvWINuOAyUb1CEYgeWKyqSuS3lJ97TGCwmYVcDQpWtBYMd+Aoa
+ wn1XZA9FDwkgdUmohdC3nRIkyc6V4NB48aUQ2HlpConluhEo8q0/TIYv7Z3hIj9dDLo+7CmiLW1r
+ 2BLQfSBXVAEKfLdcLscgDScwtGdNYMjynuLQcWvJCezRZoLKRwj+QLEIjqnP2iuqI4amA3LS5MSY
+ JF1s1KN6dskeR986/3E2O5GqnNA+DdWT/fE4pdbXIfpdejF0qmLHqdlGwtRffpXEhyF3ydNnUPnZ
+ gKsQfRtkK/6OXCG8ms8HPnVaQif08nLxhIoXtCdgtnhaIs8Jt4YEuV8Bx62jUTdkTqGn7YPZsD8D
+ Rmdl/1vOt7iH0tnV/4f+BOgyT2S2IZJh/bzkk1uksqT/y+3Y5l6wGi7utmJXUwyR+xWpqrB9ZXaz
+ 6Wwxqyo1ehz9AwAA//8DAPuoRV0wBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6504f7ed460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3857'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_db21a018abe55b08711cd5721718c200
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTY/bOAy951cQwh6TIJlkJpvcpihQTLeDZj8ubbMIFIm2uStLqkQ54w7mvy9k
+ p3Ey2wXWB0PmIx8faZHPIwBBWmxAqEqyqr2Z3P+q7Nv3H+vfv65K8/kQ7j+H27TiYx0+vHsQ4xzh
+ Dn+h4u9RU+Vqb5DJ2R5WASVjZp2vFrP1bD2bzzugdhpNDis9T5YTTuHgJjezm+VktpzM1qfoypHC
+ KDbwZQQA8Ny9s06r8UlsYDb+bqkxRlmi2JydAERwJluEjJEiS8tiPIDKWUabpdtkzAXAzpm9ksYM
+ ifvn+eI8NEsas49oH7419ubT8fH29t377UrNSH1YmYt8PXXrO0FFsurcpAv8bN+8SgYgrKy72Mf2
+ sevd+LWDDGWq0XKWLZ53wgcsyBjUO7HZiW1wOimG37AhPG6AtpWzCPMlbIPb7exuZ/+oECweryEI
+ 6APGzAsSIpWWClLSMiRfBqkRXIMBfMCGXIrQ/dg4hUx2SGQ0fE3SELdAEfBJoc8FSjOGI3GV42pK
+ NdSSMZA0EVJEDVwFl8rKJZ7CL9hCgZJTwAhklUkaN73iCbxtraxJwUM00mrQFL2RLZBlLIPMqTq3
+ 5c+PW6glWVCyxiA74/38Dt6Qs6RAVeR7yjeSGUMLhgrMkqnO5UdqcAxGRiZbgoQiGQNatuAKqFA2
+ bZbdF90ngNhGxhp813aMEDlZm4N95djlQuDguMokhsqKIcs37jjpv5SzmrL8OO11fWwwSJPbVpFB
+ wCePNqsCyfDTer0eA1cUQWNDCkGjoQZD33Fj0DI00iSEwgXw7oghCw6xy9opKoP0VQtouUqRZOQ4
+ 3YkXcXXJXkY/Ov95MTsBixSlOQ3Vyf5ynlLjSh/cIb4aOlGQpVjtA8rYXX4R2fk+d87TZRDpasCF
+ D672vGf3N9pMeLNc9nxiWEIDOp/fnVB2LM0ALO5OS+SacK+RJXUr4Lx1lFQV6iF02D4yaXIXwOii
+ 7H/L+RF3XzrZ8v/QD4DK84R67wNqUtclD24B85L+L7dzmzvBor+4+4JsicEH6lakKPz+Vh8Ws8Xd
+ oijE6GX0DwAAAP//AwBOcJn2MAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6506878b360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3975'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_1d75e05a4ca222f612934630604a099f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU34/bNgx+z19BCHtMguSSS5u83aEHbN0Oy9oOWLsMASPRNm+ypOlHEu9w//sg
+ O42TWwfMD4bMj/z4kRb5PAAQrMQKhKwwytrp0d0v0nz/IL/c+4en28/+Lf32/tPxQ+nulvgwF8Mc
+ YXdPJOPXqLG0tdMU2ZoOlp4wUmadvplNlpPlZHrbArVVpHNY6eJoPorJ7+zoZnIzH03mo8nyFF1Z
+ lhTECn4fAAA8t++s0yg6ihVMhl8tNYWAJYnV2QlAeKuzRWAIHCKaKIY9KK2JZLJ0k7S+AKK1eitR
+ 6z5x9zxfnPtmodbbebP4+2P905vwbnf0y/v1+1+fPjY3C3uRr6NuXCuoSEaem3SBn+2rV8kAhMG6
+ jX1sHtveDV87oC9TTSZm2eJ5I5yngrUmtRGrjVh7q5KM8IH2TIcV8LqyhmA6h7W3m43ZbMynisDQ
+ 4RoCT85TyLyAELg0XLBEEyG50qMisHvy4Dzt2aYA7Y8NY8hku8RawV8JNccGOAAdJblcIOohHDhW
+ Oa7mVEONkTyjDpACKYiVt6msbIpj+JEaKAhj8hSAjdRJ0apTPIJ3jcGaJfwQNBoFioPT2ACbSKXH
+ nKp1m799XEONbEBiTR5b4910AfdsDUuQFbuO8h5jJN+A5oKyZK5z+YH3NASNIbIpAaFIWoPCBmwB
+ FeG+ybK7orsEEJoQqQbXtp0ChJiMycGustHmQmBnY5VJNJdVhCxf28Oo+5LWKM7yw7jT9fOePOrc
+ too1AR0dmawKMMJ3y+VyCLHiAIr2LAkUad6T7zquNZkIe9SJoLAenD2Qz4J9aLO2ikqPrmqATKxS
+ YAwxjDfiRVxdspfBt85/XMyOpyIF1KehOtlfzlOqbem83YVXQycKNhyqrScM7eUXIVrX5c552gwi
+ XQ24cN7WLm6j/ZNMJryZzzs+0S+hHp1OFyc02oi6B2aL0xK5JtwqisjtCjhvHYmyItWH9tsHk2J7
+ AQwuyv63nG9xd6WzKf8PfQ/IPE+kts6TYnldcu/mKS/p/3I7t7kVLLqLuy3YlOSd53ZFisJtb9Vu
+ NpktZkUhBi+DfwAAAP//AwBeHhxgMAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65082bc3260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3839'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_c1a4f3a8d6a86db8812e39c93de113e1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU34/bNgx+z19BCHtMDvnVrMnbHTp0Q3forRhQrEsRMBJts5MlVaJyZxzufx9k
+ p0nu2gHzgyHzIz9+pEU+jgAUG7UBpRsU3QY7uf5Du9+nn/5arJf200OQ19pUHx/WdP1x9e6rGpcI
+ v/9CWr5FXWnfBkvC3g2wjoRChXX282K6nq6ns3UPtN6QLWF1kMlyIjnu/WQ+nS8n0+Vkuj5GN541
+ JbWBv0cAAI/9u+h0hh7UBqbjb5aWUsKa1ObkBKCit8WiMCVOgk7U+Axq74Rcke6ytReAeG93Gq09
+ Jx6ex4vzuVlo7S7duv3bV7/c8Lx78/bOfJHF/NdUv59f5Buou9ALqrLTpyZd4Cf75kUyAOWw7WNv
+ u9u+d+OXDhjr3JKTIls9blWIVLG1ZLZqs1V30ZusBT7Qgel+A3zXeEcwW8Jd9Nut227dnw2Bo/vn
+ EEQKkVLhBYTEteOKNTqBHOqIhsAfKEKIdGCfE/Q/Nl1BIdtntga+ZrQsHXACetAUSoFox3DP0pS4
+ lnMLLQpFRpsgJzIgTfS5bnyWK3hHHVSEkiMlYKdtNrQZFE/gTeewZQ2/JYvOgOEULHbATqiOWFL1
+ bsvXt3fQIjvQ2FLE3ng9W8ENe8cadMNhoLxBEYodWK6oSOa2lJ/4QGOwmIRdDQhVthYMduAraAgP
+ XZE9FD0kgNQloRZC33ZKkCQ7V4JD48WXQmDvpSkklutGoMi3/n4yfGnvDBf56WrQ9f5AEW1pW8OW
+ gB4CuaIKUOCn9Xo9Bmk4gaEDawJDlg8Uh45bS07ggDYTVD5C8PcUi+CY+qy9ojpiaDogJ01OjEnS
+ 1VY9qWeX7Gn0o/Pni9mJVOWE9jhUR/vTaUqtr0P0+/Ri6FTFjlOzi4Spv/wqiQ9D7pKnz6DyswFX
+ Ifo2yE78P+QK4Xy5HPjUeQmd0dlsdUTFC9ozsFgdl8hzwp0hQe5XwGnraNQNmXPoeftgNuwvgNFF
+ 2d/L+RH3UDq7+v/QnwFd5onMLkQyrJ+XfHaLVJb0f7md2twLVsPF3VXsaoohcr8iVRV2r8x+MV2s
+ FlWlRk+jfwEAAP//AwBHa3JfMAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6509bae2e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3823'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_3258ec246c1165ea71c663d1131ab2f0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vPRiFZLswo9L0EPS5pSm6AstCoEmVxJrikuQK7hG4H8PJDuW
+ gqZALzzM7AxmdvmQAAijxQaEaiSr1tv03b1yHz/d3a1v3n7+nr1f3n9RN7vrH9cqrL4uxaxX0PY3
+ Kn5SvVHUeotsyJ1oFVAy9q75cp6ts3VWzAeiJY22l9We0wWlrXEmLbJikWbLNF+d1Q0ZhVFs4GcC
+ APAwvH1Op/GP2EA2e0JajFHWKDaXIQARyPaIkDGayNKxmI2kIsfohui3r1vQZFwNe7R2BtxIt4uv
+ 4APtQW6pYzhQdwXfGsmgpINbaND6HoS94QaYtDxcTc0DVl2UfUHXWXvGj5e0lmofaBvP/AWvjDOx
+ KQPKSK5PFpm8GNhjAvBr2Er3rKjwgVrPJdMOXW+YL052YrzFhFydSSaWdsTnxewFt1IjS2PjZKtC
+ SdWgHpXjCWSnDU2IZNL57zAveZ96G1f/j/1IKIWeUZc+oDbqeeFxLGD/U/81dtnxEFjEQ2Rsy8q4
+ GoMP5vRPKl9mW5npvFhUuUiOySMAAAD//wMAe7RypTUDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650b4f84d60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '586'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1931f0acb6fb7ae44162860da27419df
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghD7age24Tey3tBuGogiWrOtWoB4MWuLdsdNJikTZOQT574Pu
+ UtvJMmD3cNDxIz9+5Il8GAEoNmoFSjcoug12cnWr3e2XTzJdkruf/vHz5233pVu6u18W++t7NS4R
+ fvudtPyIOtO+DZaEvRtgHQmFCuvs4ny6nC6n80UPtN6QLWF1kMnCT1p2PJlP54vJ9GIyu3yKbjxr
+ SmoF30YAAA/9u+h0hu7VCqbjH5aWUsKa1OrgBKCit8WiMCVOgk7U+Ahq74Rcke6ytSeAeG83Gq09
+ Jh6eh5PzsVlo7aa+ut3L/ANfh7dy8f3th+3Xr3eLj39eneQbqLvQC6qy04cmneAH++pFMgDlsO1j
+ r7vrvnfjlw4Y69ySkyJbPaxViFSxtWTWarVWN9GbrAV+ox3TfgV803hHMFvATfTrtVuv3e8NgaP9
+ cwgihUip8AJC4tpxxRqdQA51REPgdxQhRNqxzwn6H5vOoJBtM1sDdxktSwecgO41hVIg2jHsWZoS
+ 13JuoUWhyGgT5EQGpIk+143PcgafqIOKUHKkBOy0zYZWg+IJ/NQ5bFnDx2TRGTCcgsUO2AnVEUuq
+ 3m1xeX0DLbIDjS1F7I1Xs3fwnr1jDbrhMFC+RxGKHViuqEjmtpSfeEdjsJiEXQ0IVbYWDHbgK2gI
+ d12RPRQ9JIDUJaEWQt92SpAkO1eCQ+PFl0Jg66UpJJbrRqDIt34/Gb60d4aL/HQ26Pp1RxFtaVvD
+ loDuA7miClDgzXK5HIM0nMDQjjWBIcs7ikPHrSUnsEObCSofIfg9xSI4pj5rr6iOGJoOyEmTE2OS
+ dLZWj+rZJXscvXb+62R2IlU5oX0aqif742FKra9D9Nv0YuhUxY5Ts4mEqb/8KokPQ+6Sp8+g8rMB
+ VyH6NshG/N/kCuF8cT7wqeMSOqKz2eUTKl7QHoHzd7PxK4QbQ4Lcr4DD1tGoGzLH0OP2wWzYnwCj
+ k7L/Lec17qF0dvX/oT8CuswTmU2IZFg/L/noFqks6f9yO7S5F6yGi7up2NUUQ+R+RaoqbKZbnJrZ
+ fFHN1Ohx9A8AAAD//wMAFKlDcTAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650b98e4760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1719'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_2f620e22b75178375fcc7c045be15d62
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jOAx9z1cQwjwmgXNBL3lrdy5ZzBbt7PZtswgYibbZkSWtLk6Nov8+kN1J
+ 0k4XWD8YMg95eEiLfBoBCFZiBULWGGXj9OTqmzR/VYs/rs7v9+7i6/rzl/tvu88P1379kVoxzhF2
+ 90Ay/oyaSts4TZGtGWDpCSNl1tn5orgsLov5WQ80VpHOYZWLk6WdNGx4Mi/my0lxPpldvETXliUF
+ sYK/RwAAT/076zSKHsUKivFPS0MhYEVidXACEN7qbBEYAoeIJorxEZTWRDJZuklanwDRWr2VqPUx
+ 8fA8nZyPzUKtt+vYuvLT7W/Vw5f1+rZ4IJ5/d8WnxUm+gbpzvaAyGXlo0gl+sK/eJAMQBps+9qa7
+ 6Xs3fuuAvkoNmZhli6eNcJ5K1prURqw24s5blWSEP6ll2q+A72prCGZLuPN2szGbjbmvCQztX0Pg
+ yXkKmRcQAleGS5ZoIiRXeVQEtiUPzlPLNgXof2yYQibbJdYK/k2oOXbAAehRkssFoh7DnmOd4xpO
+ DTQYyTPqACmQglh7m6rapjiFr9RBSRiTpwBspE6KVoPiCXzsDDYs4feg0ShQHJzGDthEqjzmVL3b
+ 8uLmDhpkAxIb8tgbr2ZncM3WsARZsxsorzFG8h1oLilL5iaXH7ilMWgMkU0FCGXSGhR2YEuoCdsu
+ yx6KHhJA6EKkBlzfdgoQYjImB7vaRpsLgZ2NdSbRXNURsnxt95PhS1qjOMsP00HXbUsedW5bzZqA
+ Hh2ZrAowwofLy8sxxJoDKGpZEijS3JIfOq41mQgt6kRQWg/O7slnwT70WXtFlUdXd0Am1ikwhhim
+ G/EsXl2y59F7539OZsdTmQLql6F6sT8fplTbynm7C2+GTpRsONRbTxj6yy9CtG7InfP0GUR6NeDC
+ edu4uI32O5lMOF8uBj5xXEJHdDa7eEGjjaiPwOJsNn6HcKsoIvcr4LB1JMqa1DH0uH0wKbYnwOik
+ 7F/lvMc9lM6m+j/0R0DmeSK1dZ4Uy9clH9085SX9X26HNveCxXBxtyWbirzz3K9IUbptscNCzebL
+ ciZGz6MfAAAA//8DAK3bwtgwBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650c54d6760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1639'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_06f46ac9b06e08fad8d18ea6880d59ea
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/rNgx9z68ghPuYBHGatU3eWnTYhqFY7ra7l2UIGIm2ucmSqg8nRtH/Psju
+ jdPeDpgfDJmHPDykRT5PAAQrsQEha4yycXp291maL4H+eFoe5I9f0mfvV8fD9eOpa+5+exLTHGEP
+ f5OMX6Pm0jZOU2RrBlh6wkiZtbi5WqwX68Xytgcaq0jnsMrF2crOGjY8Wy6Wq9niZlbcvkbXliUF
+ sYE/JwAAz/076zSKTmIDi+lXS0MhYEVic3YCEN7qbBEYAoeIJorpCEprIpks3SStL4Bord5L1HpM
+ PDzPF+exWaj1/ofy4XRz/32bno6Hh/tjs30o5Hd3vrnIN1B3rhdUJiPPTbrAz/bNu2QAwmDTxz52
+ j33vpu8d0FepIROzbPG8E85TyVqT2onNTmy9VUlG+JVapuMGeFtbQ1CsYOvtbmd2O/N7TWDo+BYC
+ T85TyLyAELgyXLJEEyG5yqMisC15cJ5atilA/2PDHDLZIbFW8JRQc+yAA9BJkssFop7CkWOd4xpO
+ DTQYyTPqACmQglh7m6rapjiHn6mDkjAmTwHYSJ0UbQbFM3joDDYs4aeg0ShQHJzGDthEqjzmVL3b
+ 6vZxCw2yAYkNeeyNd8U13LM1LEHW7AbKe4yRfAeaS8qSucnlB25pChpDZFMBQpm0BoUd2BJqwrbL
+ soeihwQQuhCpAde3nQKEmIzJwa620eZC4GBjnUk0V3WELF/b42z4ktYozvLDfND1S0sedW5bzZqA
+ To5MVgUY4dN6vZ5CrDmAopYlgSLNLfmh41qTidCiTgSl9eDskXwW7EOftVdUeXR1B2RinQJjiGG+
+ Ey/izSV7mXx0/utidjyVKaB+HapX+8t5SrWtnLeH8G7oRMmGQ733hKG//CJE64bcOU+fQaQ3Ay6c
+ t42L+2j/IZMJl6urgU+MS2hEi+L2FY02oh6Bq+ti+gHhXlFE7lfAeetIlDWpMXTcPpgU2wtgclH2
+ t3I+4h5KZ1P9H/oRkHmeSO2dJ8Xybcmjm6e8pP/L7dzmXrAYLu6+ZFORd577FSlKt18ccKGK5aos
+ xORl8i8AAAD//wMAN21pCjAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650d0cd8e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1722'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_534100faa3cecb64a969a0fba1ff6f64
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMiiQNrk3ertgNKLbusmLoAbsMASPRFnOypOmHU6/o/z7I
+ 7iVp1wHzgyHzIz9+pEU+jQAEK7ECITUm2Xgz+fibtF9uzIOUP+1/rfbfFn/v57sHvLfrW9RiXCLc
+ bk8yfY+6kK7xhhI7O8AyECYqrLOry+lyupxeTnugcYpMCat9mizcpGHLk/l0vphMryaz65do7VhS
+ FCv4OgIAeOrfRadV9ChW0HP1loZixJrE6ugEIIIzxSIwRo4JbRLjEyidTWSLdJuNOQOSc2Yr0ZhT
+ 4uF5OjufmoXGbD8ndbV8xAf9pf1jatv60y/u093+9v4s30Dd+V5Qla08NukMP9pXb5IBCItNH3vX
+ 3fW9G791wFDnhmwqssXTRvhAFRtDaiNWG7EOTmWZ4J5apsMKeK2dJZgtYB3cZmM3G/u7JrB0eA1B
+ IB8oFl5AiFxbrliiTZB9HVARuJYC+EAtuxyh/7HxAgrZLrNR8FdGw6kDjkCPknwpEM0YDpx0iWs4
+ N9BgosBoIuRICpIOLtfa5XQBP1MHFWHKgSKwlSYrWg2KJ/BjZ7FhCbfRoFWgOHqDHbBNVAcsqXq3
+ xfXdGhpkCxIbCtgbP84+wA07yxKkZj9Q3mBKFDowXFGRzE0pP3JLYzAYE9saEKpsDCjswFWgCduu
+ yB6KHhJA7GKiBnzfdooQU7a2BHvtkiuFwM4lXUgM1zpBkW/cYTJ8SWcVF/nxYtD1uaWAprRNsyGg
+ R0+2qAJM8MNyuRxD0hxBUcuSQJHhlsLQcWPIJmjRZILKBfDuQKEIDrHP2iuqA3rdAdmkc2SMKV5s
+ xLN4dcmeR++d/zybnUBVjmhehurF/nycUuNqH9wuvhk6UbHlqLeBMPaXX8Tk/JC75OkziPxqwIUP
+ rvFpm9w3soVwvrgc+MRpCZ3Q2ez6BU0uoTkBlx9m43cIt4oScr8CjltHotSkTqGn7YNZsTsDRmdl
+ /1vOe9xD6Wzr/0N/AmSZJ1JbH0ixfF3yyS1QWdL/5XZscy9YDBd3W7GtKfjA/YoUld9OdzhVs/mi
+ monR8+gfAAAA//8DAB3M3sMwBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650dcfeb460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2080'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_9c04ab4a42b4571864c925c6b567cb82
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU34/bNgx+z19BCHtMDnYS9C55a7d1WIfbrl2HbV2GgJFom5ssqfrhxDjc/z7I
+ vsa52w2YHwyZH/nxIy3yfgYgWIktCNlglK3Ti9fvpfm9/FT8am/Du+uNO1D46A9da96/7ddiniPs
+ 4S+S8UvUlbSt0xTZmhGWnjBSZi2vV8Wm2BSr5QC0VpHOYbWLi7VdtGx4sSyW60VxvShvHqMby5KC
+ 2MIfMwCA++GddRpFJ7GFYv7F0lIIWJPYnp0AhLc6WwSGwCGiiWI+gdKaSCZLN0nrCyBaq/cStZ4S
+ j8/9xXlqFmq9/+3bm58tfnd6+0G9++Xz6tT++EmZIn59kW+k7t0gqEpGnpt0gZ/t22fJAITBdoi9
+ 7W+H3s2fO6CvU0smZtnifiecp4q1JrUT252481YlGeEDdUzHLfBdYw1BuYY7b3c7s9uZjw2BoeNT
+ CDw5TyHzAkLg2nDFEk2E5GqPisB25MF56timAMOPDVeQyQ6JtYLPCTXHHjgAnSS5XCDqORw5Njmu
+ 5dRCi5E8ow6QAimIjbepbmyKV/AD9VARxuQpABupk6LtqHgB3/QGW5bwfdBoFCgOTmMPbCLVHnOq
+ wW19c3sHLbIBiS15HIyvy1fwhq1hCbJhN1K+wRjJ96C5oiyZ21x+4I7moDFENjUgVElrUNiDraAh
+ 7Poseyx6TAChD5FacEPbKUCIyZgc7BobbS4EDjY2mURz3UTI8rU9LsYvaY3iLD9cjbp+6sijzm1r
+ WBPQyZHJqgAjfLXZbOYQGw6gqGNJoEhzR37suNZkInSoE0FlPTh7JJ8F+zBkHRTVHl3TA5nYpMAY
+ YrjaiQfx5JI9zF46/3kxO56qFFA/DtWj/eE8pdrWzttDeDZ0omLDodl7wjBcfhGidWPunGfIINKT
+ ARfO29bFfbR/k8mEy/Vq5BPTEprQsrx5RKONqCdg9aqcv0C4VxSRhxVw3joSZUNqCp22DybF9gKY
+ XZT9bzkvcY+ls6n/D/0EyDxPpPbOk2L5tOTJzVNe0v/ldm7zIFiMF3dfsanJO8/DihSV2xcHLFS5
+ XFelmD3M/gEAAP//AwAUzKF4MAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650eaf8c460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1827'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_e0bb891ca01242705c2bffbb44a6ef2e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBDd9RVXLllkQ65tNPYSZGo8tECBdmiLQqDJs8SU4rHkMakR+N8L0Yrk
+ oCnQhcN79x7eu+NTASCMFlsQqpWsOm9nt5+Uk5+/Lq53v2Jqvx39h831Ksov7z86vxZlr6D9PSp+
+ Vs0Vdd4iG3JnWgWUjL3r4t2y2lSbarnKREcabS9rPM+W8/WMU9jTrFq8HYxVS0ZhFFv4XgAAPOW3
+ z+g0/hZbqMpnpMMYZYNiOw4BiEC2R4SM0USWjkU5kYoco8ux79BaegO7qw7uU2SQ8GACJ2lhVJYQ
+ CXagyV0xtPIB4YBojWtiCfvEWdtiQGCCFq2HIyV4NNyCdEdujWsy4hD1HO7oEZR0sBv8M8Wk5fHm
+ MmHAQ4qy35BL1g74aaxsqfGB9nHgR/xgnIltHVBGcn29yORFZk8FwI+82vRiW8IH6jzXTD/R9YaL
+ 1dlOTMecyOV6IJlY2glfbcpX3GqNLI2NF6cRSqoW9aSc7iiTNnRBFBed/w7zmve5t3HN/9hPhFLo
+ GXXtA2qjXhaexgL2X/1fY+OOc2ARj5Gxqw/GNRh8MPmz5VOeij8AAAD//wMAfxb2i2sDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650f759e860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '708'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_1a0e0c9d86f3741a112e1e43f187e779
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/TMBC951dYc25X2VZdaG4gBCukHpZPAUWR40xTZx3b2GOJUvW/r5xkk7QU
+ iRwsa968NzPPk2PCGMgSMgZiz0k0Vs1fPQhdBFrf12/t/XLz4d3XO/ryaV8X63qTwiwyTFGjoGfW
+ jTCNVUjS6A4WDjlhVL19sUzX6TpdrlqgMSWqSKsszZc3qzkFV5h5ertY9cy9kQI9ZOxHwhhjx/aM
+ PeoSf0PG0tlzpEHveYWQDUmMgTMqRoB7Lz1xTTAbQWE0oY5t66DUBCBjVC64UmPh7jtO7qNRXKn8
+ l3ioHz+/xDcf/6hQf38v6vBNC6sm9Trpg20b2gUtBoMm+BDPLooxBpo3LXdz2LS+zS4TuKtCg5pi
+ 23Dc9u4ttpBt4bUKuIUTnHFOybX7z4kVDnfBc9V71MdPg+nKVNaZwl94CDuppd/nDrlvZwFPxna1
+ Y522AoSz9wLrTGMpJ/OIOgouVstOD8Z9GtG7HiNDXE1J69kVubxE4rJ9z2GFBBd7LEfquEo8lNJM
+ gGQy9N/NXNPuBpe6+h/5ERACLWGZW4elFOcDj2kO49/2r7TB5LZh8AdP2OQ7qSt01slh35NT8gQA
+ AP//AwCLH4qn7gMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650fcd98860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '348'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_2514fad196039e8340370a473aa77912
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/TMBC951dYc05Xaavu0tyARQuIFazgAhRFjjNJ3Dq2154slKr/HeVjk7QU
+ iRwsa968NzPPk0PAGMgMYgai5CQqq2YvH4ROS/n1drcrX9T5t8/b3/wdf3q4eb2jawgbhkm3KOiZ
+ dSVMZRWSNLqDhUNO2KjOb5bROlpHy1ULVCZD1dAKS7Pl1WpGtUvNLJovVj2zNFKgh5h9Dxhj7NCe
+ TY86w18Qsyh8jlToPS8Q4iGJMXBGNRHg3ktPXBOEIyiMJtRN27pWagKQMSoRXKmxcPcdJvfRKK5U
+ ss3W/NPd0x4f8Wf64e3Hu8c3t8WX9/NJvU56b9uG8lqLwaAJPsTjs2KMgeZVy73f37e+hecJ3BV1
+ hZqatuGw6d1bbCDewCtV4waOcMI5BpfuPyZWOMxrz1XvUR8/DqYrU1hnUn/mIeRSS18mDrlvZwFP
+ xna1mzptBahP3gusM5WlhMwOdSO4WC07PRj3aUSve4wMcTUlrcMLckmGxGX7nsMKCS5KzEbquEq8
+ zqSZAMFk6L+buaTdDS518T/yIyAEWsIssQ4zKU4HHtMcNn/bv9IGk9uGwe89YZXkUhforJPDvgfH
+ 4A8AAAD//wMAP81Fa+4DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de650fffdf660a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '291'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_0e35e0fafc98ae99051b0059cffd8800
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXYvbMBB8968Q++wcTtLcEb/1aEspTT+gyXE0xSjy2tFVlhRJhnND/vsh2Wc7
+ aQr1gxA7O7O7o/UxIgR4DikBtqeOVVpM3n5nkj3Wnw92vXo/fbhrFsZsln+SzSNfP0PsGWr3hMy9
+ sm6YqrRAx5VsYWaQOvSq07t5skyWyfw2AJXKUXhaqd1kfrOYuNrs1CSZzhYdc684Qwsp+RkRQsgx
+ nL5HmeMzpCSJXyMVWktLhLRPIgSMEj4C1FpuHZUO4gFkSjqUvm1ZCzECnFIiY1SIoXD7HUf3wSgq
+ RHb48OVb8unj15I/lPn6h3w6NPfvis2bUb1WutGhoaKWrDdohPfx9KIYISBpFbirZhV8iy8TqCnr
+ CqXzbcNx27k320K6hXtR4xZOcMY5Rdfuv0ZWGCxqS0XnURc/9aYLVWqjdvbCQyi45HafGaQ2zALW
+ Kd3W9nVCBajP3gu0UZV2mVO/UXrB2WLe6sGwTwN622FOOSrGpGV8RS7L0VEe3rNfIUbZHvOBOqwS
+ rXOuRkA0GvrvZq5pt4NzWf6P/AAwhtphnmmDOWfnAw9pBv3f9q+03uTQMNjGOqyygssSjTa83/fo
+ FL0AAAD//wMALHwZ3u4DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65103daf160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '294'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_c08b508b0339a844f85f4f7d5a6186fb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwW7bMAy9+ysEnp3CieEW8W1Dh65F03TDDgOWwVAkxlEnS6oktwuC/Psg27Wd
+ NAXmgyDw8T2ST/Q+IgQEh5wA21LPKiMnn74xxdKULbOfd9ffF8nS3NLbq5eMM1Y+QBwYev2EzL+x
+ LpiujEQvtGphZpF6DKrTqzSZJ/MkvWyASnOUgVYaP0kvsomv7VpPkuks65hbLRg6yMmviBBC9s0Z
+ elQc/0JOkvgtUqFztETI+yRCwGoZIkCdE85T5SEeQKaVRxXaVrWUI8BrLQtGpRwKt99+dB+MolIW
+ T3xOH29edviMr+v7r8ub5y/X5Y+76aheK70zTUObWrHeoBHex/OTYoSAolXDXewWjW/xaQK1ZV2h
+ 8qFt2K8692YryFfwWda4ggMccQ7RufvvkRUWN7WjsvOoix9606UujdVrd+IhbIQSbltYpK6ZBZzX
+ pq0d6jQVoD56LzBWV8YXXv9BFQRnWdrqwbBPA3rZYV57KsekeXxGruDoqWjes18hRtkW+UAdVonW
+ XOgREI2Gft/MOe12cKHK/5EfAMbQeOSFscgFOx54SLMY/raP0nqTm4bB7ZzHqtgIVaI1VvT7Hh2i
+ fwAAAP//AwCqzA4d7gMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651066ea960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '309'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_eec05993b66809801f496707b4ed6bc5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1308'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwYrbMBC9+yvEnJ3FG+MN8a0LTUupdxsKmy1NMYo8cbSRJSGNoSHk34vtrO2k
+ KdQHIebNezPzND4GjIEsIGUgdpxEZdXkw1Logp4+/VBvn23y/Tmuv75a+riK99lzBmHDMJs3FPTO
+ uhOmsgpJGt3BwiEnbFTvZ3E0j+ZRPGuByhSoGlppaRLfJROq3cZMovtpcmbujBToIWU/A8YYO7Zn
+ 06Mu8DekLArfIxV6z0uEtE9iDJxRTQS499IT1wThAAqjCXXTtq6VGgFkjMoFV2oo3H3H0X0wiiuV
+ f9PJ4uXR4Orpy2pxyB50OXtZLhf7Ub1O+mDbhra1Fr1BI7yPp1fFGAPNq5abHbLWt/A6gbuyrlBT
+ 0zYc12f3pmtI1/CoalzDCS44p+DW/dfICofb2nN19ugcP/WmK1NaZzb+ykPYSi39LnfIfTsLeDK2
+ q93UaStAffFeYJ2pLOVk9qgbwWkSd3ow7NOAPpwxMsTVmDQPb8jlBRKX7Xv2KyS42GExUIdV4nUh
+ zQgIRkP/3cwt7W5wqcv/kR8AIdASFrl1WEhxOfCQ5rD52/6V1pvcNgz+4AmrfCt1ic462e97cAr+
+ AAAA//8DAPDDc/7uAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65109aa9f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '309'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_a16f6716e110a542a5eccf805c1645eb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSPW/bMBTc9SteuXSxAil249hLkExxl6BFgQ5FIdDkk8SW4mPJJzRC4P9e6COW
+ jLZAFg537w53B74kAMJosQehasmq8Ta9/6Scfu4Ox+1nf8h+PeTt1/L+4enLx6ccS7HqFXT8gYpf
+ VVeKGm+RDbmRVgElY++ab9fZLttl6+1ANKTR9rLKc7qh9Dq73qTZbZrdTMKajMIo9vAtAQB4Gd4+
+ otP4LPaQrV6RBmOUFYr9+QhABLI9ImSMJrJ0LFYzqcgxuiH1I1pL7+DwvoEaA4J0GgJK3QET1Gj9
+ FTzSb1DSwQFGM+ioBSYtu7ulacCyjbLv5FprJ/x0Tmmp8oGOceLPeGmciXURUEZyfaLI5MXAnhKA
+ 78Ma7UVB4QM1ngumn+h6w3wz2ol5/gV5M5FMLO2Mr6cFL90KjSyNjYs1hZKqRj0r5+llqw0tiGTR
+ +e8w//IeextXvcV+JpRCz6gLH1AbdVl4PgvYf87/nZ03HgKL2EXGpiiNqzD4YMb/Ufoi/7DTt+tN
+ rpRITskfAAAA//8DALFTYhEoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6510c6e7c60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '529'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_d9775ca61cf96389bb674b556fa11f8c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXYvbMBB8968Q+2wXx/lo4rem5QqFKz0ogV5TjE5e2+rJkirJcG7Ify+WfbaT
+ plA/CLGzM7s7Wp8CQoDnkBJgFXWs1iJ698AkFofPHxp6oOLh0/Kw2X95n7TbVWvWEHYM9fQTmXtl
+ vWGq1gIdV7KHmUHqsFNdvF3Gu3gXL7ceqFWOoqOV2kUrFSVxsoribRRvBmKlOEMLKfkeEELIyZ9d
+ izLHF0hJHL5GarSWlgjpmEQIGCW6CFBruXVUOggnkCnpUHZdy0aIGeCUEhmjQkyF++80u08+USEy
+ /Vt9dM93d4vy8PJrt//Gqq/iMRd0Vq+XbrVvqGgkG/2Z4WM8vSpGCEhae+59e+9tC68TqCmbGqXr
+ 2obTcXAvOUJ6hL1o8AhnuOCcg1v3HzMrDBaNpWLwaIifR9OFKrVRT/bKQyi45LbKDFLrZwHrlO5r
+ d3V8BWgu3gu0UbV2mVPPKDvBZJ30ejCt04RuBswpR8WctA1vyGU5Osr9e44rxCirMJ+o0yrRJudq
+ BgSzof9u5pZ2PziX5f/ITwBjqB3mmTaYc3Y58JRmsPvZ/pU2muwbBttah3VWcFmi0Yb7fYdCZ4v1
+ Lt8uVwvGIDgHfwAAAP//AwCwU0NI+AMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65110ace560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '298'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_a4a558f3cb0a016325f0839cb80075a0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT24rbMBB991eIeU6K42Rz8Vu7KYXClmYLW0pTjFYeO2plSSuNu5uE/HvxZW0n
+ TaF+EGLOnDMzR+NjwBjIFGIGYsdJFFaN326Extvy/Uv2dbGZHtYfHp4Pep1R+VEePsOoYpjHnyjo
+ lfVGmMIqJGl0AwuHnLBSnSym4SpchdNlDRQmRVXRckvjmRlHYTQbh8txOG+JOyMFeojZ94Axxo71
+ WbWoU3yBmIWj10iB3vMcIe6SGANnVBUB7r30xDXBqAeF0YS66lqXSg0AMkYlgivVF26+4+De+8SV
+ SqZS0PI+pedvT7/vN0+3xaf13Hx5WAzqNdJ7WzeUlVp0/gzwLh5fFGMMNC9q7t3+rrZtdJnAXV4W
+ qKlqG47b1r1oC/EW3qkSt3CCM84puHb/MbDCYVZ6rlqP2vipM12Z3Drz6C88hExq6XeJQ+7rWcCT
+ sU3tqk5dAcqz9wLrTGEpIfMLdSUY3USNHvTr1KPzFiNDXA1Jy9EVuSRF4rJ+z26FBBc7THtqv0q8
+ TKUZAMFg6L+buabdDC51/j/yPSAEWsI0sQ5TKc4H7tMcVj/bv9I6k+uGwe89YZFkUuforJP1vkNm
+ k8nNKl1OZxMhIDgFfwAAAP//AwDoxJc0+AMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651147af460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '249'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_8d1ba3a499c4800712eaba3a4b48c5fa
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOUNFILsQblv11G20baVqVW0q5DUDODW2a5uoUZT/XvGxQNJU
+ KgfLmjfvzczzcPIIAV5ARoDV1LFGi+DhC5Nl9f6QfNwn6f75Od1r8+Hpodbx4ZCA3zHU6x6Ze2O9
+ Y6rRAh1XcoCZQeqwU10lcbgJN2G86YFGFSg6WqVdsFZBFEbrIEyD8H4k1ooztJCRF48QQk792bUo
+ C/wNGQn9t0iD1tIKIZuSCAGjRBcBai23jkoH/gwyJR3KrmvZCrEAnFIiZ1SIufDwnRb32ScqRP7p
+ 8enXN6HSA/1eJY/1Fle1/BynzaLeIH3UfUNlK9nkzwKf4tlVMUJA0qbnbo/b3jb/OoGaqm1Quq5t
+ OO1G96IdZDv4isUOznBBOXu37j8WThgsW0vFaNEYP0+eC1Vpo17tlYVQcsltnRukth8FrFN6qN3V
+ 6StAe/FcoI1qtMud+omyE4zuokEP5m2a0fsRc8pRsSSl/g25vEBHef+c0wYxymosZuq8SbQtuFoA
+ 3mLov5u5pT0MzmX1P/IzwBhqh0WuDRacXQ48pxns/rV/pU0m9w2DPVqHTV5yWaHRhvfrDqXOV3eb
+ Io3XK8bAO3t/AAAA//8DAJZPEKL3AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651171e4160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '214'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_5d3ef4ffc96d5e42e40784f78f186508
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy67TMBDd5yusWTcoTdrbJjseAiRuhdihUhT5OpPUxa/aDlCq/vtVHjdJS5HI
+ wrLmzDkzczw5B4QALyAjwPbUM2lE+PoLU+UqqY/HdL78eUo+b75+kltN68odY5g1DP10QOZfWK+Y
+ lkag51p1MLNIPTaq81USpVEaJWkLSF2gaGiV8eFCh3EUL8JoHUYPPXGvOUMHGfkWEELIuT2bFlWB
+ vyEj0ewlItE5WiFkQxIhYLVoIkCd485T5WE2gkwrj6rpWtVCTACvtcgZFWIs3H3nyX30iQqR04PE
+ Vfl++2HLfr39I6OP7w6PSbF5nNTrpE+mbaisFRv8meBDPLspRggoKlvu5rRpbZvdJlBb1RKVb9qG
+ 8653L95BtoM3osYdXOCKcwnu3b9PrLBY1o6K3qM+fhlMF7oyVj+5Gw+h5Iq7fW6RunYWcF6brnZT
+ p60A9dV7gbFaGp97/QNVIxgv404PxnUa0Yce89pTMSWtZ3fk8gI95e17DivEKNtjMVLHVaJ1wfUE
+ CCZD/93MPe1ucK6q/5EfAcbQeCxyY7Hg7HrgMc1i87P9K20wuW0Y3Ml5lHnJVYXWWN7uO5Qmny/T
+ Yp0s5oxBcAmeAQAA//8DACc4/Rn4AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651199a1060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:03:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '282'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_643baae4f87b15df2328cd64f39c2d33
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1301'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnENFsiRNuKU9NGq1qtpuq101FfKaAZwY27KNtGyUf68wFEia
+ SuVgWfPmvZl5Hk4BIcAzSAiwkjpWaRFuvzBZPBWfZP1erKto+/By/HYoDuvX+cddDLOWoZ4PyNwf
+ 1humKi3QcSU7mBmkDlvV+du7aBNtojjyQKUyFC2t0C6MVbiIFnEYrcNo1RNLxRlaSMjPgBBCTv5s
+ W5QZvkBCvIyPVGgtLRCSIYkQMEq0EaDWcuuodDAbQaakQ9l2LWshJoBTSqSMCjEW7r7T5D76RIVI
+ vz5+3+0e1IeGH7dPywaXj6/lyvz4PKnXSTfaN5TXkg3+TPAhnlwVIwQkrTz3vrn3ts2uE6gp6gql
+ a9uG0753b7GHZA/vRI17OMMF5xzcuv+aWGEwry0VvUd9/DyYLlShjXq2Vx5CziW3ZWqQWj8LWKd0
+ V7ut4ytAffFeoI2qtEudOqJsBRfLRacH4zqN6KrHnHJUTEnr2Q25NENHuX/PYYUYZSVmI3VcJVpn
+ XE2AYDL0383c0u4G57L4H/kRYAy1wyzVBjPOLgce0wy2P9u/0gaTfcNgG+uwSnMuCzTacL/vkOt0
+ vtxk67t4zhgE5+A3AAAA//8DAEetJZP4AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6511d9f6860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '228'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_b90d3a3bf1598c2e12633b58505af297
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSPW/bMBTc9SteuWSxAjlS69pLkSUfQIcWHToUhUCRTxIbio8ln9C6gf97Qdm1
+ FDQBsnC4e3e4O/AxAxBGix0I1UtWg7f59Wfluo/489dD7z7Z281N8R6/XDd6+NPjXqySgpofqPif
+ 6lLR4C2yIXekVUDJmFzXm7LYFtuiKiZiII02yTrPeZXzGBrKr4qrKi+qvNie1D0ZhVHs4FsGAPA4
+ vSmn0/hb7GDympABY5Qdit35CEAEsgkRMkYTWToWq5lU5BjdFP0OraU3cH8xQI8BgQl6tB72NF7C
+ 114yKOngHjRBSyHBwKTl/sPSL2A7Rpk6udHaE344B7TU+UBNPPFnvDXOxL4OKCO5FCYyeTGxhwzg
+ +zTE+KSb8IEGzzXTA7pkuK6OdmKef0FuTiQTSzvj5Xr1jFutkaWxcTGkUFL1qGflvLoctaEFkS06
+ /x/mOe9jb+O619jPhFLoGXXtA2qjnhaezwKmz/nS2XnjKbCI+8g41K1xHQYfzPFrtL5+q5uyKN+V
+ bSuyQ/YXAAD//wMAWy7P5ygDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651200a2d60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '680'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_2151aa31270568347757122f20dc8804
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnKFiCbtVuG166CFdtT3sRtqmQo4ZwBtju7ZRN4ry7xWGBZJm
+ peVgWfPmvZl5Ho4BIcALyAiwmjrWaBHd/2Syfim/bDbJXn7901br9eExrdOn5WP5F8KOoXYvyNwb
+ 6xNTjRbouJI9zAxSh53qzedFvIyXcXrjgUYVKDpapV2URq41OxUlcZJGcRrFy4FdK87QQkZ+BYQQ
+ cvRn16cs8BUyEodvkQatpRVCNiYRAkaJLgLUWm4dlQ7CCWRKOpRd67IVYgY4pUTOqBBT4f47zu6T
+ WVSI3L2uf+z3z5tv9+Vze2B2s9o1qyfxfVavlz5o31DZSjaaNMPHeHZRjBCQtPHch8OD9y68TKCm
+ ahuUrmsbjtvBvWQL2RZWosUtnOCMcwqu3X/PrDBYtpaKwaMhfhpNF6rSRu3shYdQcsltnRuk1s8C
+ 1ind1+7q+ArQnr0XaKMa7XKn9ig7weR20evBtFMTejdgTjkq5qRleEUuL9BR7t9zXCFGWY3FRJ1W
+ ibYFVzMgmA39fzPXtPvBuaw+Ij8BjKF2WOTaYMHZ+cBTmsHuj3svbTTZNwz2YB02ecllhUYb7vcd
+ Sp3fFrtFvLhblCUEp+AfAAAA//8DAFnf2OL9AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65125ea6b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '497'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_668ebd928e2b49c34da68350f292fd4c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPUuFYilJpVuKpgXyanNq0LoQaGol0+WrJIXYMPzvhR6RZNcF
+ qgNB7OzM7g5X+4AQ4CXkBNiaeiaNiG6emeLu5fuXW/1tm/Kvt7sneXF//2zuPkkNYcvQqw0y/8Z6
+ x7Q0Aj3XqoeZReqxVb24TuIszuJ00QFSlyhaWm18lEa+sSsdLeJFGsVpFGcDe605Qwc5+REQQsi+
+ O9s+VYlbyEkcvkUkOkdrhHxMIgSsFm0EqHPceao8hBPItPKo2tZVI8QM8FqLglEhpsL9t5/dJ7Oo
+ EMX7zXXz9PD6yjYm2zYPsv589/vjzfZlVq+X3pmuoapRbDRpho/x/KQYIaCo7LiPu8fOu/A0gdq6
+ kah82zbsl4N7iyXkS/ggGlzCAY44h+Dc/efMCotV46gYPBrih9F0oWtj9cqdeAgVV9ytC4vUdbOA
+ 89r0tds6XQVojt4LjNXS+MLrX6hawcVl0uvBtFMTejVgXnsq5qQsPCNXlOgp795zXCFG2RrLiTqt
+ Em1KrmdAMBv672bOafeDc1X/j/wEMIbGY1kYiyVnxwNPaRbbP+5faaPJXcPgds6jLCquarTG8m7f
+ oTLFZblK4uQqqSoIDsEfAAAA//8DAHtFsd79AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6512a684e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '528'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_bc15c1af6e0c4100107968014a240378
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT22rbQBB911cs82wVxbKTWG8phFJSh4bSBlwXsd4dyevurburtsb434MukWTH
+ hephWebMOTNzdnSICAHBISPAtjQwZWV898T0bvnn6/xGfXxabR7Tbyu9TdPb8Hz1cAuTmmE2O2Th
+ lfWOGWUlBmF0CzOHNGCtenWTJotkkczSBlCGo6xppQ3xLA6V25h4mkxncTKLk0XH3hrB0ENGvkeE
+ EHJozrpPzfEvZCSZvEYUek9LhKxPIgSckXUEqPfCB6oDTAaQGR1Q163rSsoREIyROaNSDoXb7zC6
+ D2ZRKXMeHtUvjp9/P9Pyw6cdrpTnD/f3X0b1Wum9bRoqKs16k0Z4H8/OihECmqqGu9wvG+8m5wnU
+ lZVCHeq24bDu3JuuIVvDe1nhGo5wwjlGl+4/RlY4LCpPZedRFz/2pktTWmc2/sxDKIQWfps7pL6Z
+ BXwwtq1d12kqQHXyXmCdUTbkwfxEXQtO52mrB8NODeh1hwUTqByTFpMLcjnHQEXznv0KMcq2yAfq
+ sEq04sKMgGg09NtmLmm3gwtd/o/8ADCGNiDPrUMu2OnAQ5rD+o/7V1pvctMw+L0PqPJC6BKddaLZ
+ dyhsPuebNEmv06KA6Bi9AAAA//8DAJ5shRb9AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651300fb060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '437'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_8625af6e0c850a59eeb8815a68643a3d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW/bMAy9+1cIPNuDEyfp7FuLoSjWZkN2a5vBUCTaUSdLgiQDzYL898EftZ0s
+ A+aDIPDxPZJP9DEgBASHjADbU88qI6PbDVNv6Y/nJ/t9cy/1883jfcnfv7zMZr/vKIQNQ+/ekPkP
+ 1iemKyPRC606mFmkHhvV2U0Sp3EaL5IWqDRH2dBK46NF5Gu709E8ni+ieBHFac/ea8HQQUZeA0II
+ ObZn06fi+A4ZicOPSIXO0RIhG5IIAatlEwHqnHCeKg/hCDKtPKqmdVVLOQG81jJnVMqxcPcdJ/fR
+ LCpl/hh/uy0eXurPu4enlVNFveFsvdRfJ/U66YNpGypqxQaTJvgQzy6KEQKKVi13fVi33oWXCdSW
+ dYXKN23Dcdu7N99CtoU7WeMWTnDGOQXX7j8nVlgsakdl71EfPw2mS10aq3fuwkMohBJun1ukrp0F
+ nNemq93UaStAffZeYKyujM+9/oWqEZwvk04Pxp0a0VWPee2pnJLS8IpcztFT0b7nsEKMsj3ykTqu
+ Eq250BMgmAz9dzPXtLvBhSr/R34EGEPjkefGIhfsfOAxzWLzx/0rbTC5bRjcwXms8kKoEq2xot13
+ KEy+5LskTlZJUUBwCv4AAAD//wMAvvw8Lv0DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65133dcb160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:04 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '574'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_a1d6410d736aa39cf4a9ba4b5922e18e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOUNFAkkVbl310qpp00s21aZCxgzEXWNbttmWRvnvFR8LJE2l
+ crCsefPezDwPZ48Q4DkkBNiJOlZpEbz7yuTzVln1TcSfBK+l3O8//375wHaN2YHfMlT2A5l7Zb1h
+ qtICHVeyh5lB6rBVXbyNwk24CeO4AyqVo2hppXZBHLjaZCpYhss4COMg3Azsk+IMLSTkySOEkHN3
+ tn3KHH9BQkL/NVKhtbRESMYkQsAo0UaAWsuto9KBP4FMSYeybV3WQswAp5RIGRViKtx/59l9MosK
+ kR7C+vHlsGoWbv/xsfj5sFh/Oej32W5Wr5dudNdQUUs2mjTDx3hyU4wQkLTquNtm23nn3yZQU9YV
+ Ste2Defj4N7yCMkRHkSNR7jAFefi3bt/n1lhsKgtFYNHQ/wymi5UqY3K7I2HUHDJ7Sk1SG03C1in
+ dF+7rdNVgPrqvUAbVWmXOvWMshVcrqJeD6admtD1gDnlqJiTNv4duTRHR3n3nuMKMcpOmE/UaZVo
+ nXM1A7zZ0H83c0+7H5zL8n/kJ4Ax1A7zVBvMObseeEoz2P5x/0obTe4aBttYh1VacFmi0YZ3+w6F
+ Tld5FoXROioK8C7eHwAAAP//AwCqMWYg/QMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651390b8360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:05 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '574'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_d792788ed2fe4ed014f0ce4d83dfa51f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vPQiFbJsx49LkVvdW4HeikKgybVEh+Iy5KqJEfjfC0qO5SAp
+ 0AsPMzvDmSVfMgBhtNiCUK1k1Xlb3P9Qzob1T1se6f7xKSzn82fctd8f48OfVuRJQfsjKn5VfVHU
+ eYtsyI20CigZk+tsNS835aZcLAeiI402yRrPxYKKzjhTVGW1KMpVMVtf1C0ZhVFs4VcGAPAynCmn
+ 0/gstlDmr0iHMcoGxfY6BCAC2YQIGaOJLB2LfCIVOUY3RN997uDYRwYJqUDPGMAHaoLsctj3DGmg
+ xYAgnYaAUp+ACVq0Hk7Uf4Jv9ARKOtjBeFVCgUnL09fbKwMe+ihTbddbe8HP1w6WGh9oHy/8FT8Y
+ Z2JbB5SRXMobmbwY2HMG8HvYVf+mvvCBOs810wO6ZDhbjHZieqGJrKoLycTSTvj8Lv/ArdbI0th4
+ s2uhpGpRT8rpYWSvDd0Q2U3n92E+8h57G9f8j/1EKIWeUdc+oDbqbeFpLGD6v/8au+54CCziKTJ2
+ 9cG4BoMPZvw9B19v9qv1/m6mlpXIztlfAAAA//8DAL7gMfJLAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6513e29d560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '722'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_784b34ad4a41011f8a3c26407fbf5168
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTYvbMBC9+1eIOcfF8WazWd+29LhpWcpiSrMYWRrb2uoLSYaEkP9ebGdtJ01h
+ fRBi3rw3M0/jY0QICA4ZAdbQwJSV8dML00o27c/vpVmuy8Mzz7fWev7uwv4ZFh3DlO/IwgfrCzPK
+ SgzC6AFmDmnATnX5cJc8Jo/Jat0DynCUHa22IV6ZWAkt4jRJV3HyEC83Z3ZjBEMPGfkdEULIsT+7
+ PjXHPWQkWXxEFHpPa4RsTCIEnJFdBKj3wgeqAywmkBkdUHet61bKGRCMkQWjUk6Fh+84u09mUSmL
+ X6+v5WF7b/er6kV9y/M8/3HXbPJ6Vm+QPti+oarVbDRpho/x7KoYIaCp6rnbw7b3bnGdQF3dKtSh
+ axuOu7N76Q6yHXyVLe7gBBecU3Tr/jazwmHVeirPHp3jp9F0aWrrTOmvPIRKaOGbwiH1/Szgg7FD
+ 7a5OXwHai/cC64yyoQjmD+pOML1PBz2YdmpC12csmEDlnLRZ3JArOAYq+vccV4hR1iCfqNMq0ZYL
+ MwOi2dD/NnNLexhc6Poz8hPAGNqAvLAOuWCXA09pDrs/7n9po8l9w+APPqAqKqFrdNaJft+hskVS
+ 0oQv01W1hOgU/QUAAP//AwDvrY68/QMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65143797360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '239'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_d54e06f4fb0c896bdc3be7efdd287406
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnKEiNFk23JrDqj3QKlupPTQVcsxAvDW2ZZtqUZR/rzAskDSV
+ ysGy5s17M/M8nANCgJeQEWAn6lijRfRhz6SMNx95m7tv+Zen+Ll73m2/f/1d7bpXCHuGOr4gc2+s
+ d0w1WqDjSg4wM0gd9qqr9H28jbfxOvVAo0oUPa3WLlqrqOGSR0mcrKM4jVaPI/ukOEMLGfkREELI
+ 2Z99n7LEV8hIHL5FGrSW1gjZlEQIGCX6CFBruXVUOghnkCnpUPaty1aIBeCUEgWjQsyFh++8uM9m
+ USGK9mHvNvIpTz9/2lSmU9U+ES+pqBb1BulO+4aqVrLJpAU+xbObYoSApI3n5l3uvQtvE6ip2wal
+ 69uG82F0LzlAdoCdaPEAF7jiXIJ7958LKwxWraVi9GiMXybThaq1UUd74yFUXHJ7KgxS62cB65Qe
+ avd1fAVor94LtFGNdoVTv1D2gskmGfRg3qkZfRgxpxwVS9JjeEeuKNFR7t9zWiFG2QnLmTqvEm1L
+ rhZAsBj672buaQ+Dc1n/j/wMMIbaYVlogyVn1wPPaQb7P+5faZPJvmGwnXXYFBWXNRptuN93qHQR
+ H2lcrpJ1tYLgEvwBAAD//wMANEXLaP0DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651467df960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '300'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_63b09f2556471da7372b172fec1b7a69
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7aMBC95yusOZPKpLDL5tZWPWyrlRY4IO1SRcaZJG4d29hOuwjx71UcmgRK
+ peZgWfPmvZl5nhwjQkDkkBLgFfO8NjL+sORqv/m5We++fF5+ypPy654uPD3Q9S96gEnL0LvvyP0f
+ 1juuayPRC606mFtkHlvV6f17+kAf6JwGoNY5ypZWGh/PdFwLJeKEJrOY3sfTxZldacHRQUpeI0II
+ OYaz7VPl+AYpCVohUqNzrERI+yRCwGrZRoA5J5xnysNkALlWHlXbumqkHAFea5lxJuVQuPuOo/tg
+ FpMye1ktX57N43L1XO3nK/nI1uwt39zVo3qd9MGEhopG8d6kEd7H06tihIBideA+HZ6Cd5PrBGbL
+ pkbl27bhuD27l2wh3cJH2eAWTnDBOUW37t9GVlgsGsfk2aNz/NSbLnVprN65Kw+hEEq4KrPIXJgF
+ nNemq93WCRWguXgvMFbXxmde/0DVCibzpNODYacG9O6Mee2ZHJMWkxtyWY6eifCe/QpxxivMB+qw
+ SqzJhR4B0Wjov5u5pd0NLlT5P/IDwDkaj3lmLOaCXw48pFls/7h/pfUmh4bBHZzHOiuEKtEaK8K+
+ Q2EyumM0nyazYgrRKfoNAAD//wMA8JMtHf0DAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65149999f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:10 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '451'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_796e1814fc23d77ec66bcef963054a25
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT72vbMBD97r9C3Od4OF6ypv7WFlboyH7AINBlGEU6O0pkSZPkkizkfy+WM9vJ
+ Uqg/CHHv3ru7p/MhIgQEh4wAW1PPKiPjux9M/fn2vJsKvfj+Yna2mH0WNV88sM2XnzBqGHq1Qeb/
+ sT4wXRmJXmjVwswi9diojm8+JrfJbTJNAlBpjrKhlcbHEx1XQok4TdJJnNzE49mJvdaCoYOM/IoI
+ IeQQzqZPxXEHGQlaIVKhc7REyLokQsBq2USAOiecp8rDqAeZVh5V07qqpRwAXmuZMyplX7j9DoN7
+ bxaVMn+avzw8lduv27/qkW8eafG8qu7vVotBvVZ6b0JDRa1YZ9IA7+LZRTFCQNEqcOf7efBudJlA
+ bVlXqHzTNhyWJ/fSJWRLuJc1LuEIZ5xjdO3+e2CFxaJ2VJ48OsWPnelSl8bqlbvwEAqhhFvnFqkL
+ s4Dz2rS1mzqhAtRn7wXG6sr43OstqkYwnaatHvQ71aOfTpjXnsohaTa6Ipdz9FSE9+xWiFG2Rt5T
+ +1WiNRd6AESDof9v5pp2O7hQ5Xvke4AxNB55bixywc4H7tMsNn/cW2mdyaFhcHvnscoLoUq0xoqw
+ 71CYPFnRhI/TSTGG6Bi9AgAA//8DAGzf6FX9AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6515f7df460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '253'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_8c29b355b50a04268efd34d1def4d74f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1306'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT247TMBB9z1dY85ygJLR0N28ssEJaLbSg5VoUufYkNTi2ZTui3ar/jnLZJC1F
+ Ig+WNWfOmZnjySEgBASHjADbUs8qI6OXK6asUulyYeYPr97e6MVqmfCvdx9/f3u/hLBh6M1PZP6J
+ 9Yzpykj0QqsOZhapx0Y1WTyPr+PreJ60QKU5yoZWGh/NdFQJJaI0TmdRvIiSq5691YKhg4x8Dwgh
+ 5NCeTZ+K4w4yEodPkQqdoyVCNiQRAlbLJgLUOeE8VR7CEWRaeVRN66qWcgJ4rWXOqJRj4e47TO6j
+ WVTK/PbD6s3y9ebhyw7v6I6L1ad37vbx8+OkXie9N21DRa3YYNIEH+LZWTFCQNGq5d7v71vvwvME
+ asu6QuWbtuGw7t1L15Ct4UbWuIYjnHCOwaX7j4kVFovaUdl71MePg+lSl8bqjTvzEAqhhNvmFqlr
+ ZwHntelqN3XaClCfvBcYqyvjc69/oWoE03na6cG4UyP6ose89lROSVfhBbmco6eifc9hhRhlW+Qj
+ dVwlWnOhJ0AwGfrvZi5pd4MLVf6P/AgwhsYjz41FLtjpwGOaxeaP+1faYHLbMLi981jlhVAlWmNF
+ u+9QmDze0Jgn6axIIDgGfwAAAP//AwC4J+R4/QMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65162aa0360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '222'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_aebe0d73738bee69b86d308d6f7d1784
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vOQiG/ILrX0pihwaH1ogvRaFQJFriQnFJciVEzfwvxeiFclB
+ U6AXHmZ2BjO7fMkAhNFiB0I1klXr7ezLvXKxejyu6dOz/3qvqrD8tv5+W4Xb8OO3yHsFVQ+o+FU1
+ V9R6i2zIXWgVUDL2rouPq2JbbIvNMhEtabS9rPY8W803M+5CRbNisdwMyoaMwih28DMDAHhJb5/R
+ aXwWOyjyV6TFGGWNYjcOAYhAtkeEjNFElo5FPpGKHKNLse/QWvoA+5sWHrrIIOFoAnfSwqjMIRLs
+ QZO7YWjkEeGAaI2rYw5Vx0nbYEBgggathxN18GS4AelO3BhXJ8Qh6jnc0RMo6WA/+CeKScvT5+uE
+ AQ9dlP2GXGftgJ/HypZqH6iKAz/iB+NMbMqAMpLr60UmLxJ7zgB+pdV2b7YlfKDWc8n0iK43XKwv
+ dmI65kSuNgPJxNJO+Hqbv+NWamRpbLw6jVBSNagn5XRH2WlDV0R21fnvMO95X3obV/+P/UQohZ5R
+ lz6gNupt4WksYP/V/zU27jgFFvEUGdvyYFyNwQeTPls65Tn7AwAA//8DAHWJ6V5rAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65164ed4b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '851'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_801542847465408d2635382f665a3793
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q9+yUxJ4z4re2bBmjKenYBltdjCJfHC2yJCQZloX89yLbsZ2s
+ g/nBiPvu++7u0+kYEAK8gJQA21HHKi0mt09M2sPTh7V8qKLH8vHHp7iefU3eref33zWEnqE2v5C5
+ M+uGqUoLdFzJFmYGqUOvOnsfTxfTxTSJGqBSBQpPK7WbxDfJxNVmoybTWZR0zJ3iDC2k5DkghJBj
+ 8/c9ygJ/Q0qm4TlSobW0REj7JELAKOEjQK3l1lHpIBxApqRD6duWtRAjwCklckaFGAq333F0Hoyi
+ QuQxX/y5X8YPKp4ne/ZzvdyLz99W+uOoXit90E1D21qy3qAR3sfTq2KEgKRVw10dVo1v4XUCNWVd
+ oXS+bThmnXtRBulzBl+wyCDMYGkQZXO6EzVm8HKCC51T8Nb5ZWSPwW1tqeh86+Kn/iKEKrVRG3vl
+ K2y55HaXG6S2mQ+sU7qt7es0FaC+uEPQRlXa5U7tUXrBKElaPRh2bEBn3TaAU46KEWt+Zl3o5QU6
+ yptL7veKUbbDYqAO+0XrgqsREIym/rubt7Tbybks/0d+ABhD7bDItcGCs8uJhzSD/gn+K613uWkY
+ 7ME6rPItlyUabXj/CIJT8AoAAP//AwBjmUkXAwQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6516b8ea760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:13 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '397'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_12afa6b5026a91015b4643945d4965e5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwYrbMBC9+yvEnJ3FSXCLfUu7UNqSQreFll0vRpEntrKypEpj2jTk34vtxHbS
+ XVgfjJg3783M0+gQMAaygJSBqDiJ2qrZ6qvQpD7vdqvi6f7Wfsf3P+5/fllWt7988hfClmE2OxR0
+ Zt0IU1uFJI3uYeGQE7aq87fLKImSKF52QG0KVC2ttDRb3sQzatzGzKL5Ij4xKyMFekjZQ8AYY4fu
+ 3/aoC/wDKYvCc6RG73mJkA5JjIEzqo0A91564pogHEFhNKFu29aNUhOAjFG54EqNhfvvMDmPRnGl
+ 8uTTwsstXy6Sb2tSzW9/p1abCD9O6vXSe9s1tG20GAya4EM8vSrGGGhed9z1ft35Fl4ncFc2NWpq
+ 24ZDdnJvkUH6kMEdFhmEGXxwiLo7vVMNZvB4hAudY/Dc+XFij8Nt47k6+XaKH4eLUKa0zmz8la+w
+ lVr6KnfIfTcfeDK2r93W6SpAc3GHYJ2pLeVknlC3gos47vVg3LERnZ+2AcgQVxPWmzPrQi8vkLjs
+ LnnYK8FFhcVIHfeLN4U0EyCYTP1/N89p95NLXb5GfgSEQEtY5NZhIcXlxGOaw/YJvpQ2uNw1DH7v
+ Cet8K3WJzjo5PILgGPwDAAD//wMAXJ9BWgMEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6516f7bdd60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:13 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '321'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_4fc39bca9095cd04b81c19cb4aa02632
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW+bMBB+51dY90wqSEa28tap06Rqeci2rqtKhRxzAafG9mwzLYvy3ycDAZJ1
+ 0nhA1n33fXf3+XwICAFeQEqAVdSxWovZzZrJZnl3V61ueMV/zr9p+/3hy/3icd0sEULPUJsdMndi
+ XTFVa4GOK9nBzCB16FXjt4voOrqOkjctUKsChaeV2s0WV8nMNWajZlE8T3pmpThDCyl5Cggh5ND+
+ fY+ywF+Qkig8RWq0lpYI6ZBECBglfASotdw6Kh2EI8iUdCh927IRYgI4pUTOqBBj4e47TM6jUVSI
+ /Mfi3eMLreLf4n69kepW7r7efoo/7Cb1Oum9bhvaNpINBk3wIZ5eFCMEJK1b7mq/an0LLxOoKZsa
+ pfNtwyHr3ZtnkD5l8BmLDMIMPhpE2Z7eiwYzeD7Cmc4xeO38PLHH4LaxVPS+9fHjcBFCldqojb3w
+ FbZcclvlBqlt5wPrlO5q+zptBWjO7hC0UbV2uVMvKL3gPEk6PRh3bETjfhvAKUfFhLU8sc708gId
+ 5e0lD3vFKKuwGKnjftGm4GoCBJOp/+7mNe1uci7L/5EfAcZQOyxybbDg7HziMc2gf4L/ShtcbhsG
+ u7cO63zLZYlGGz48guAY/AEAAP//AwBd2ZzWAwQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65172a83860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '330'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_aa977de1ade7739448166e0f370d035a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW/bMAy9+1cIPDuFk84r4luDfqBbA+wjl64uDEVmHC2ypEk0tizIfy9sJ7aT
+ tcB8MAQ+vkfyidoFjIHMIWEg1pxEadXo+qvQlV6MZ9Nis75fPix/3T7N7xZX8jf9uIWwZpjlTxR0
+ ZF0IU1qFJI1uYeGQE9aq46vLaBpNo/hDA5QmR1XTCkujy4t4RJVbmlE0nsQH5tpIgR4S9hwwxtiu
+ +dc96hz/QMKi8Bgp0XteICRdEmPgjKojwL2XnrgmCHtQGE2o67Z1pdQAIGNUJrhSfeH22w3OvVFc
+ qexxpT4/Xd/R97m7efj7SS82dvsYfZkN6rXSW9s0tKq06Awa4F08OSvGGGheNtz5dt74Fp4ncFdU
+ JWqq24ZdenBvkkLynMI3zFMIU7h3iLo5zVSFKbzs4URnH7x1fhnY43BVea4Ovh3i++4ilCmsM0t/
+ 5iuspJZ+nTnkvpkPPBnb1q7rNBWgOrlDsM6UljIyG9S14CSOWz3od6xHx4dtADLE1YD18cg60cty
+ JC6bS+72SnCxxryn9vvFq1yaARAMpv63m7e028mlLv5HvgeEQEuYZ9ZhLsXpxH2aw/oJvpfWudw0
+ DH7rCctsJXWBzjrZPYJgH7wCAAD//wMAWgdQTAMEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651758c7160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '328'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_ee7c93a145da6e2f0e1402dd2801005c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1336'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnMkKsmHbcNttpfbQtN2cKi0r5JgBvDW2a5tqkyj/XmEIkHQr
+ lQOy5s17M/M8PgaEAC8gJcBq6lijxeL+kcmWf757aT7u1/cPlP34bVblr8evW1kbCDuG2r0gc2fW
+ DVONFui4kj3MDFKHnWr87jZaR+soWXmgUQWKjlZpt7i9SRauNTu1iOJlMjBrxRlaSMlTQAghR//v
+ epQFvkJKovAcadBaWiGkYxIhYJToIkCt5dZR6SCcQKakQ9m1LVshZoBTSuSMCjEV7r/j7DwZRYXI
+ 1ZfXA11tY/5BLr9/OxyK9SF+v9k3s3q99F77hspWstGgGT7G06tihICkjedu9hvvW3idQE3VNihd
+ 1zYcs8G9ZQbpUwZbLDIIM/hkEKU/PYgWM3g+wYXOKXjr/Dyzx2DZWioG34b4abwIoSpt1M5e+Qol
+ l9zWuUFq/XxgndJ97a6OrwDtxR2CNqrRLnfqJ8pOcJkkvR5MOzah8bAN4JSjYsa6O7Mu9PICHeX+
+ kse9YpTVWEzUab9oW3A1A4LZ1H9385Z2PzmX1f/ITwBjqB0WuTZYcHY58ZRmsHuC/0obXfYNg91b
+ h01eclmh0YaPjyA4BX8AAAD//wMAZswc9wMEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65178783c60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:15 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '349'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_5b23cda24626c6c176aa4b48845648ce
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTYvbMBS8+1e86tJLvDiJk25yKaWUbgpLWwi0UIpRpBdbrawnpOe2Ycl/L/7Y
+ 2GG30IsOM2+GmUEPCYAwWmxBqEqyqr1N33xW7te78FEvsg/79eHr/a7OP73ffAn3+/1bMWsVdPiB
+ ih9VN4pqb5ENuZ5WASVj6zp/tcw22SZbrTqiJo22lZWe05zSRbbI0+w2zdaDsCKjMIotfEsAAB66
+ t43oNP4RW8hmj0iNMcoSxfZyBCAC2RYRMkYTWToWs5FU5Bhdl/oOraUXsHtZQ4UBQToNAaU+ARNU
+ aP0N3NFvUNLBDnozOFEDTFqeXk9NAx6bKNtOrrF2wM+XlJZKH+gQB/6CH40zsSoCykiuTRSZvOjY
+ cwLwvVujuSoofKDac8H0E11rOM97OzHOPyHXA8nE0o74cljw2q3QyNLYOFlTKKkq1KNynF422tCE
+ SCadn4Z5zrvvbVz5P/YjoRR6Rl34gNqo68LjWcD2c/7r7LJxF1jEU2Ssi6NxJQYfTP8/jr6Yrzb6
+ dpnPlRLJOfkLAAD//wMA1RWdUCgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6517c3cfc60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '601'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_9399647f874008c4f4f3ed29c0a97e12
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT32+bMBB+56+w7plMkF9teOu6LetDpiWdNlWlQq45iDNje7ZRi6L87xOQAkkz
+ aTwg6777vrv7zt57hABPISLAttSxQovRzZrJF3aL65ur4tdDFX6a8i+T9eRFb16XGfg1Qz3vkLk3
+ 1gemCi3QcSVbmBmkDmvV8GoSLIJFMJs3QKFSFDUt1240VaNxMJ6OgutRMD8St4oztBCRR48QQvbN
+ v25RpvgKEQn8t0iB1tIcIeqSCAGjRB0Bai23jkoHfg8yJR3KumtZCjEAnFIiYVSIvnD77Qfn3icq
+ RHL/vbr7Gtxvlt9+5j8+r/SfWXG3q253g3qtdKWbhrJSss6fAd7Fo7NihICkRcNdVavGNv88gZq8
+ LFC6um3Yx0f3xjFEjzFsMI3Bj2FpEGVz+ihKjOHpACc6B+/S+Wlgj8GstFQcfTvGD90ihMq1Uc/2
+ zFfIuOR2mxiktpkPrFO6rV3XaSpAebJD0EYV2iVO/UZZC45ns1YP+ivWo2F4BJ1yVAxY87l/QS9J
+ 0VHeLLm7V4yyLaY9tb9ftEy5GgDeYOr33VzSbifnMv8f+R5gDLXDNNEGU85OJ+7TDNYv8F9pnctN
+ w2Ar67BIMi5zNNrw5hFAppNwtkivJ9OQMfAO3l8AAAD//wMAtCN62Q0EAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651815bbf60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '448'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_448e84f7a16e1d5e3ff0cb8cc5cc63df
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q9+wM20ncxm/rBtkK2ehgpaUuRpXOjjpZEpLMGkL++7Cd2k6W
+ wfxgxH33fXf3nbQPCAHBISPAttSz2sjZxzumfn++Xb/tomQdfZXztNyp+Orh8eEx/QZhy9Avr8j8
+ O+sD07WR6IVWPcwsUo+tanw1j1bRKlqmHVBrjrKlVcbPFnqWRMliFl3PovRI3GrB0EFGngJCCNl3
+ /7ZFxfENMhKF75EanaMVQjYkEQJWyzYC1DnhPFUewhFkWnlUbdeqkXICeK1lwaiUY+H+20/Oo09U
+ yuL1C8abpLm7/yQbeR99N3zz07Lbm0m9XnpnuobKRrHBnwk+xLOzYoSAonXH3ew2nW3heQK1VVOj
+ 8m3bsM+P7iU5ZE85/ECeQ5jD2iKq7nQjG8zh+QAnOofg0vl5Yo/FsnFUHn07xg/DIqSujNUv7sxX
+ KIUSbltYpK6bD5zXpq/d1ukqQHOyQzBW18YXXv9C1Qomy2WvB+MVG9E4PoJeeyonrDQNL+gVHD0V
+ 3ZKHe8Uo2yIfqeP9og0XegIEk6n/7uaSdj+5UNX/yI8AY2g88sJY5IKdTjymWWxf4L/SBpe7hsHt
+ nMe6KIWq0BorukcApSni5YpfzxcxYxAcgj8AAAD//wMAm35mow0EAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65184e84f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '512'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_0e8df9adef7f48dde7481b50a4e40fc7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPcuF7PipW4qiBtwGbdMAaRMFAkOtZKYUSZBU6wf874EoR5Jd
+ F6gOArGzM7s7S+4DQoBnEBNga+pYqcXg+huTm+nkEyseis9fV/ZHvrvDpcpzbZYFhDVDPb8gc2+s
+ d0yVWqDjSjYwM0gd1qrD2VW0iBbRZOaBUmUoalqh3WCsBqNoNB5E80E0PRLXijO0EJPHgBBC9v5f
+ tygz3EBMovAtUqK1tECI2yRCwChRR4Bay62j0kHYgUxJh7LuWlZC9ACnlEgZFaIr3Hz73rnziQqR
+ zn9v/rzc393b79vVh93tbLSb6S8ff6569RrprfYN5ZVkrT89vI3HZ8UIAUlLz73Z3njbwvMEaoqq
+ ROnqtmGfHN0bJRA/JnCLWQJhAkuDKP3pvagwgacDnOgcgkvnp549BvPKUnH07Rg/tIsQqtBGPdsz
+ XyHnktt1apBaPx9Yp3RTu67jK0B1skPQRpXapU79QlkLjiaTRg+6K9ahw+ERdMpR0WNNp+EFvTRD
+ R7lfcnuvGGVrzDpqd79olXHVA4Le1H93c0m7mZzL4n/kO4Ax1A6zVBvMODuduEszWL/Af6W1LvuG
+ wW6twzLNuSzQaMP9I4Bcp8PJIptfjYeMQXAIXgEAAP//AwCkGAgLDQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651890e6460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '320'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_32f2e20c5245e55b602dd1a8f58acc9f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUWvbMBB+968Q9+wMO03SxG8tK4NtLd0oYVAXo8hnW6ssqZJMl4b892I5tZ0s
+ g/nBiPvu++7uO2kXEAI8h4QAq6hjtRaTqx9MbquvV3fr18vX4rt6e7uLo8/f7PXsgcYQtgy1+Y3M
+ fbA+MVVrgY4r2cHMIHXYqsaXF9EqWkXzpQdqlaNoaaV2k5maTKPpbBItJ9HiQKwUZ2ghIY8BIYTs
+ /L9tUeb4BxIShR+RGq2lJULSJxECRok2AtRabh2VDsIBZEo6lG3XshFiBDilRMaoEEPh7tuNzoNP
+ VIisfKnsy68HOn3Oqb0p7+9nN5s1X9tRvU56q31DRSNZ788I7+PJSTFCQNLac2+3t9628DSBmrKp
+ Ubq2bdilB/emKSSPKfzEPIUwhS8GUfrTtWgwhac9HOnsg3Pnp5E9BovGUnHw7RDf94sQqtRGbeyJ
+ r1BwyW2VGaTWzwfWKd3Vbuv4CtAc7RC0UbV2mVPPKFvB6Xze6cFwxQY0jg+gU46KEWuxCM/oZTk6
+ yv2S+3vFKKswH6jD/aJNztUICEZT/93NOe1uci7L/5EfAMZQO8wzbTDn7HjiIc1g+wL/lda77BsG
+ u7UO66zgskSjDfePAAqdxfNVvryYxYxBsA/eAQAA//8DAPgrA18NBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6518bba5d60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:18 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '310'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_d1ce0db20f24822ee2cf16b7ead46fa3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1329'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnEkFCckm3JqVuoc2UruqulstK+Q1A3FrbMs27aIo/15hskDS
+ VCoHZM2b92bmjX0ICAFeQEqA7aljtRaz91+YbH/9Ng9Wf6tX38361t0kXNx93Ja3awg7hnr5gcy9
+ sd4xVWuBjivZw8wgddipxjeLaBNtouXaA7UqUHS0SrtZombzaJ7MovUsWp2Ie8UZWkjJU0AIIQf/
+ 71qUBb5CSqLwLVKjtbRCSIckQsAo0UWAWsuto9JBOIJMSYey61o2QkwAp5TIGRViLNx/h8l59IkK
+ kbsPq61N7ndq/oiLNinbh/b109fHz5N6vXSrfUNlI9ngzwQf4ulFMUJA0tpzd+3O2xZeJlBTNTVK
+ 17UNh+zk3jyD9CmDeywyCDO4M4jSn7aiwQyej3CmcwyunZ8n9hgsG0vFybdT/DgsQqhKG/ViL3yF
+ kktu97lBav18YJ3Sfe2ujq8AzdkOQRtVa5c79RNlJzhfLns9GK/YiMbxCXTKUTFhrVbhFb28QEe5
+ X/JwrxhleyxG6ni/aFNwNQGCydR/d3NNu5+cy+p/5EeAMdQOi1wbLDg7n3hMM9i9wH+lDS77hsG2
+ 1mGdl1xWaLTh/hFAqfN4uSnWiyRmDIJj8AcAAP//AwBwVPWMDQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6518f6f7f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '564'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_9fed0bb322124aff121bcfc93ee11375
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBTc9RWvXLpYgRzLTeWlaKcGnZylKIpCoMgniS3FR5BPQOzA/15QdiwF
+ SYEuHO7eHe4OfMoAhNFiB0L1ktXgbf55r9zxW9M+dEf1Y8/4cc8tb49l9eWxeRCrpKDmNyp+Vt0o
+ GrxFNuTOtAooGZPr+m5TVEVVbKuJGEijTbLOc17mPIaG8tvitsyLMi+qi7onozCKHfzMAACepjfl
+ dBofxQ6K1TMyYIyyQ7G7HgGIQDYhQsZoIkvHYjWTihyjm6J/RWvpHdy/H6DHgMAEPVoPBxpv4Hsv
+ GZR0cA+aoKWQYGDS8vBp6RewHaNMndxo7QU/XQNa6nygJl74K94aZ2JfB5SRXAoTmbyY2FMG8Gsa
+ YnzRTfhAg+ea6Q+6ZLguz3Zinn9B3l1IJpZ2xjfr1RtutUaWxsbFkEJJ1aOelfPqctSGFkS26Pw6
+ zFve597Gdf9jPxNKoWfUtQ+ojXpZeD4LmD7nv86uG0+BRTxExqFujesw+GDOX6P19VY3m2LzYdO2
+ IjtlfwEAAP//AwCRK0r1KAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651948e0f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '752'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_afcbfc916238dc92c59d40581c5ba831
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOYeKhHw03DZqtYd2D+l2t5WWFXLMAG6N7dqmShrlv68wWSDp
+ VioHZM2b92bmeXwMCAGeQ0KAVdSxWovwZstU9PV9/LhcPTCx+fN9JePtfYz30+pzCZOWoXY/kLlX
+ 1jumai3QcSU7mBmkDlvV6SqO1tE6WkYeqFWOoqWV2oXz0DVmp8JZNJuH0TyM1md2pThDCwl5Cggh
+ 5Oj/bZ8yxz0kxGv5SI3W0hIh6ZMIAaNEGwFqLbeOSgeTAWRKOpRt67IRYgQ4pUTGqBBD4e47js6D
+ WVSI7HckP/Db7af8ZrV/jKOPvxb7bw8bOx3V66QP2jdUNJL1Jo3wPp5cFSMEJK099+5w572bXCdQ
+ UzY1Ste2Dcf07N4sheQphS+YpzBJ4dYgSn/aiAZTeD7Bhc4peOv8PLLHYNFYKs6+neOn/iKEKrVR
+ O3vlKxRccltlBqn184F1Sne12zq+AjQXdwjaqFq7zKmfKFvB2WLR6cGwZwM6PW8DOOWoGLGWr6wL
+ vSxHR7m/5H6vGGUV5gN12C/a5FyNgGA09d/dvKXdTc5l+T/yA8AYaod5pg3mnF1OPKQZbJ/hv9J6
+ l33DYA/WYZ0VXJZotOH+EUChs0W+i6N4GRcFBKfgBQAA//8DACYA0AYSBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6519afe2160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '658'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_493350068f82ec809dfd3e6adc037d92
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT246bMBB95yuseQ4Vua7CW2+73UrpJepl1WWFHDOAE2Nbtlk1ivLvFSYBkm6l
+ 8oCsOXPOzByPDwEhwDOICbCSOlZpEb7+ytR4nb3frj7cc0sfft4/rx9uxx+/b8tvCxg1DLXZInNn
+ 1iumKi3QcSVbmBmkDhvV8c00WkbLaDH2QKUyFA2t0C6cha42GxVOosksjGZhtDyxS8UZWojJY0AI
+ IQf/b/qUGf6GmESjc6RCa2mBEHdJhIBRookAtZZbR6WDUQ8yJR3KpnVZCzEAnFIiZVSIvnD7HQbn
+ 3iwqRHr39vZmt/0i6Y8Fl5/o87vdr89uXxaDeq30XvuG8lqyzqQB3sXjq2KEgKSV5672K+/d6DqB
+ mqKuULqmbTgkJ/cmCcSPCawxS2CUwJ1BlP70RtSYwNMRLnSOwUvnp4E9BvPaUnHy7RQ/dhchVKGN
+ 2tgrXyHnktsyNUitnw+sU7qt3dTxFaC+uEPQRlXapU7tUDaCk/m81YN+z3p0fNoGcMpRMWAtzqwL
+ vTRDR7m/5G6vGGUlZj213y9aZ1wNgGAw9d/dvKTdTs5l8T/yPcAYaodZqg1mnF1O3KcZbJ7hv9I6
+ l33DYPfWYZXmXBZotOH+EUCu03m2mUbTxTTPITgGfwAAAP//AwBHTJUeEgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651a00c6360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '688'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ef56ff5fa13a61b81c293ff7df5d498c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW/bMAy9+1cIPMeD63x08a3D0OWSYSl66FAXhiLTjhJZEiR5WxLkvw+WE9tJ
+ O2A+GAIf3yP5RB0DQoDnkBBgG+pYpUX4sGIqtve7r9MaH19+Py32n1fP+rB9rJarHYwahlpvkbkL
+ 6xNTlRbouJItzAxSh43q3f04mkfzaBZ7oFI5ioZWahdOQlebtQrjKJ6E0SSM5mf2RnGGFhLyGhBC
+ yNH/mz5ljn8gIdHoEqnQWloiJF0SIWCUaCJAreXWUelg1INMSYeyaV3WQgwAp5TIGBWiL9x+x8G5
+ N4sKkW0P5fd5VaFcHyYvD8+O/fzxSy32i0G9VnqvfUNFLVln0gDv4slNMUJA0spzl/ul9250m0BN
+ WVcoXdM2HNOze3EKyWsKT5inMErhm0GU/vRF1JjC2wmudE7BR+e3gT0Gi9pScfbtHD91FyFUqY1a
+ 2xtfoeCS201mkFo/H1indFu7qeMrQH11h6CNqrTLnNqhbATj6bTVg37PevTuvA3glKNiwJpdWFd6
+ WY6Ocn/J3V4xyjaY99R+v2idczUAgsHU77v5SLudnMvyf+R7gDHUDvNMG8w5u564TzPYPMN/pXUu
+ +4bB7q3DKiu4LNFow/0jgEJn03w9jsazcVFAcAr+AgAA//8DAJK7aYsSBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651a52a9160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '672'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_016c9eb66e50ac59720d31a6c92476c5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTYvbMBC9+1eIOcfF63xtfEtLCCwsZXvoZb0YRR476soaIcltQ8h/L/6I7aRb
+ qA9GzJv3ZuZpdA4YA5lDwkAcuReVUeH2RVC8/vVzu/u6+7KP6Wm34e/1qtSyKj3MGgYdfqDwV9Yn
+ QZVR6CXpDhYWucdG9WE9jzbRJlrFLVBRjqqhlcaHi9DX9kBhHMWLMFqE0aZnH0kKdJCw14Axxs7t
+ v+lT5/gbEhbNrpEKneMlQjIkMQaWVBMB7px0nuuu5x4UpD3qpnVdKzUBPJHKBFdqLNx958l5NIsr
+ lZ221ZP4HpF/PLw8rlekKJL7x205qddJn0zbUFFrMZg0wYd4cleMMdC8arnPp+fWu9l9ArdlXaH2
+ TdtwTnv34hSS1xS+YZ7CLIW9RdTt6bOqMYW3C9zoXIKPzm8TeywWteOq962PX4aLUFQaSwd35ysU
+ Ukt3zCxy184HzpPpajd12gpQ39whGEuV8Zmnd9SNYLxcdnow7tmIPvTbAJ48VxPW6sq60cty9Fy2
+ lzzsleDiiPlIHfeL17mkCRBMpv67m4+0u8mlLv9HfgSEQOMxz4zFXIrbicc0i80z/Ffa4HLbMLiT
+ 81hlhdQlWmNl+wigMNkyP8yj+WpeFBBcgj8AAAD//wMAYShBWhIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651aa592860a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:23 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '707'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_bc23774b9078de726f348e941c25c454
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPVuFbPmpW1MgySFpUaOAjUSBQFMrmS1FsiTVxjX874EelmQ3
+ BaqDQOzszO4Ol0ePEOApRATYnjpWaOF//MpUaG7Z/f1m+zT98+Xh20IuH+avi9ndzw2MKobafUfm
+ zqwPTBVaoONKNjAzSB1WquNFGKyCVTAPa6BQKYqKlmvnT31Xmp3yJ8Fk6gdTP1i17L3iDC1E5Nkj
+ hJBj/a/6lCm+QkSC0TlSoLU0R4i6JELAKFFFgFrLraPSwagHmZIOZdW6LIUYAE4pkTAqRF+4+Y6D
+ c28WFSK5XS+XN2YpN9Nw/ImyX9vfT9u1/awH9Rrpg64bykrJOpMGeBeProoRApIWNffx8Fh7N7pO
+ oCYvC5SuahuOceveJIboOYY1pjGMYrgziLI+3YgSY3g5wYXOyXvv/DKwx2BWWipa39r4qbsIoXJt
+ 1M5e+QoZl9zuE4PU1vOBdUo3tas6dQUoL+4QtFGFdolTP1BWgpPZrNGDfs96dNxuAzjlqBiw5mfW
+ hV6SoqO8vuRurxhle0x7ar9ftEy5GgDeYOq/u3lPu5mcy/x/5HuAMdQO00QbTDm7nLhPM1g9w3+l
+ dS7XDYM9WIdFknGZo9GG148AMp3M0l0YhPMwy8A7eW8AAAD//wMApPv6sRIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651b0289360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '657'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_1615227cdba9755b4a49d66abf007c60
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSQW7bMBC86xVbXnqxCskWGseXoGgCN73lVCBFIdDkSmJDcQlyVdcI/PeCsmMp
+ aAr0wsPMzmBml88ZgDBabECoTrLqvc0/PSiqqs+3W1nePmwf7d3j3Vqawypsv/7ai0VS0O4nKn5R
+ fVDUe4tsyJ1oFVAyJtfyalVcF9fFx2oketJok6z1nFeU98aZfFksq7y4ysv1Wd2RURjFBr5nAADP
+ 45tyOo2/xQaKxQvSY4yyRbG5DAGIQDYhQsZoIkvHYjGRihyjG6Pfv+9Bk3Et7NHaBXAn3VN8B19o
+ D3JHA8OBhhv41kkGJR3cQ4fWJxD2hjtg0vJwMzcP2AxRpoJusPaMHy9pLbU+0C6e+QveGGdiVweU
+ kVxKFpm8GNljBvBj3MrwqqjwgXrPNdMTumRYVic7Md1iRq7PJBNLO+Gr5eINt1ojS2PjbKtCSdWh
+ npTTCeSgDc2IbNb57zBveZ96G9f+j/1EKIWeUdc+oDbqdeFpLGD6qf8au+x4DCziITL2dWNci8EH
+ c/onja+LnSx0uayaUmTH7A8AAAD//wMA78Z5QzUDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651b5d81f60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '394'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4739a701a38581742ae49c08cfad0c2f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT24rbMBB991eIeY6Lneay8Vu3hZS2oTdKKevFKPLYUStLQpKbhJB/L5a9tpPN
+ Qv1gxJw5Z2bOSKeAEOA5JATYjjpWaRG++crU3MWHT1qoWb7++OsvO+w3PzAu8IODScNQ29/I3BPr
+ FVOVFui4ki3MDFKHjWq8fB2tolW0mHugUjmKhlZqF85UWHHJw2k0nYXRMozvOvZOcYYWEvIQEELI
+ yf+bPmWOB0hINHmKVGgtLRGSPokQMEo0EaDWcuuobHvuQKakQ9m0LmshRoBTSmSMCjEUbr/T6DyY
+ RYXICj6rdl/uP79d/Jzt9+v375j8bpciGtVrpY/aN1TUkvUmjfA+nlwVIwQkrTx3c9x47ybXCdSU
+ dYXSNW3DKe3cm6aQPKTwDfMUJimsDaL0p3tRYwqPZ7jQOQe3zo8jewwWtaWi862Ln/tFCFVqo7b2
+ ylcouOR2lxmk1s8H1ind1m7q+ApQX+wQtFGVdplTf1A2gtP5vNWD4Z4NaBx3oFOOihFrsZjc0Mty
+ dJT7Jff3ilG2w3ygDveL1jlXIyAYTf28m1va7eRclv8jPwCMoXaYZ9pgztnlxEOaweYZvpTWu+wb
+ Bnu0Dqus4LJEow33jwAKna22y7vtImbzKQTn4B8AAAD//wMAZF0CZhIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651ba6e5160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:25 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '410'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4a087a9d855b0837c5ecebc44b5e4fd8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW/bMAy9+1cIPMeDnTVJ49uKbb0sA9IPdEVdGIpMO1plSZPktW6Q/z5YTm0n
+ 64D5YAh8fI/kE7ULCAGeQ0KAbaljlRbhpzVT888XNy/i6/Z6zXH564nd3z+/NvJbLGDSMtTmJzL3
+ xvrAVKUFOq5kBzOD1GGrGi8+RstoGc3nHqhUjqKlldqFZyqsuOThNJqehdEijM8P7K3iDC0k5CEg
+ hJCd/7d9yhxfICHR5C1SobW0REj6JELAKNFGgFrLraPSwWQAmZIOZdu6rIUYAU4pkTEqxFC4+3aj
+ 82AWFSL78trcLK+ei7vb5vb77x+bWq4u6fV8ParXSTfaN1TUkvUmjfA+npwUIwQkrTx31ay8d5PT
+ BGrKukLp2rZhlx7cm6aQPKRwhXkKkxQuDaL0pwtRYwqPezjS2QfvnR9H9hgsakvFwbdDfN9fhFCl
+ NmpjT3yFgktut5lBav18YJ3SXe22jq8A9dEdgjaq0i5z6gllKzidzTo9GPZsQOP4ADrlqBixupU7
+ 1ctydJT7S+73ilG2xXygDvtF65yrERCMpv67m/e0u8m5LP9HfgAYQ+0wz7TBnLPjiYc0g+0z/Fda
+ 77JvGGxjHVZZwWWJRhvuHwEUOltuFuebecxmUwj2wR8AAAD//wMArZwclRIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651be1abb60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:26 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '405'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_0335c2b6ee1d6160307503b6d631dc06
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTYvbMBC9+1eIOcfFdjdfvmVhKWy7h5TQll0vRpEnjhp9RZJJQ8h/L7aztpNu
+ YX0wYt68NzNPo1NACPACUgJsSz2TRoSLJdOT3f5hufTJ/DD+upipx8O3w8OilD9jGNUMvf6NzL+x
+ PjEtjUDPtWphZpF6rFXj6edoHs2jyaQBpC5Q1LTS+PBOh5IrHiZRchdG0zCeXdhbzRk6SMlLQAgh
+ p+Zf96kK/AMpiUZvEYnO0RIh7ZIIAatFHQHqHHeeKg+jHmRaeVR166oSYgB4rUXOqBB94fY7Dc69
+ WVSI/JmZ1Wrs9lKtHo8Htt/Z/fHX5IcY1Gulj6ZpaFMp1pk0wLt4elOMEFBUNtyn41Pj3eg2gdqy
+ kqh83Tacsot7SQbpSwbfschglMEXi6ia072oMIPXM1zpnIP3zq8DeyxuKkfFxbdL/NxdhNClsXrt
+ bnyFDVfcbXOL1DXzgfPatLXrOk0FqK7uEIzV0vjc6x2qWjAZj1s96PesR+P4AnrtqRiw2pW71csL
+ 9JQ3l9ztFaNsi0VP7feLVgXXAyAYTP1vN+9pt5NzVX5EvgcYQ+OxyI3FgrPrifs0i/Uz/F9a53LT
+ MLij8yjzDVclWmN58whgY/L5ejpbT2I2TiA4B38BAAD//wMAy9NPOhIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651c20f7060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '452'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_df09ac2fd03f1ff199c414cf57639aee
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnKEi6SYk3LaqtL2katNLu8sKGTMQb41t2UbabJR/rzAskDSV
+ ygFZ8+a9mXljnwJCgJeQEmAH6lijRXT/nanEiM0+cT+5ePhly0cV37+q4lu8+Qphx1DFCzL3zvrA
+ VKMFOq5kDzOD1GGnukg+xtt4G68TDzSqRNHRau2iOxU1XPJoGS/vojiJFpuBfVCcoYWUPAWEEHLy
+ /65PWeIrpCQO3yMNWktrhHRMIgSMEl0EqLXcOiodhBPIlHQou9ZlK8QMcEqJnFEhpsL9d5qdJ7Oo
+ EPnn1Vt83BhZrI9fHt94/LKvcCd+yFm9XvqofUNVK9lo0gwf4+lVMUJA0sZzd8ed9y68TqCmbhuU
+ rmsbTtng3jKD9CmDPZYZhBk8GETpT59Eixk8n+FC5xzcOj/P7DFYtZaKwbchfh4XIVStjSrsla9Q
+ ccntITdIrZ8PrFO6r93V8RWgvdghaKMa7XKnfqPsBJerVa8H0z2b0MViAJ1yVMxY63V4Qy8v0VHu
+ lzzeK0bZAcuJOt0v2pZczYBgNvXf3dzS7ifnsv4f+QlgDLXDMtcGS84uJ57SDHbP8F9po8u+YbBH
+ 67DJKy5rNNpw/wig0vm2SDbFesFWSwjOwR8AAAD//wMAQEgqChIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651c71d4c60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '336'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1c5f9e5f7ff425452c4afee4f0fb9076
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "items": {"enum": ["Red", "Green", "Blue"], "type": "string"},
+ "title": "Choice2", "type": "array"}}, "required": ["choice2"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1334'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXW+cMBB851dY+wwVXO+Tt0ZqkypN0ouiNFWIkDEL59bYrm2ink733yvgAtz1
+ KpUHZO3szO7O2juPEOA5xATYhjpWaRF8WDO1fMy/TL/dq6frh9lT9v3ySr/+WhVLdQF+w1DZD2Tu
+ jfWOqUoLdFzJDmYGqcNGNVq8D1fhKpwvW6BSOYqGVmoXTFVQccmDSTiZBuEiiJYH9kZxhhZi8uwR
+ Qsiu/Td9yhx/Q0xC/y1SobW0RIj7JELAKNFEgFrLraPSgT+ATEmHsmld1kKMAKeUSBkVYijcfbvR
+ eTCLCpE+PK4/u6tPH+Xd7R0Nv77ernSY8fX1qF4nvdVtQ0UtWW/SCO/j8UkxQkDSquXebG9a7/zT
+ BGrKukLpmrZhlxzcmyQQPydwj3kCfgKXBlG2pwtRYwIvezjS2Xvnzi8jewwWtaXi4Nshvu8XIVSp
+ jcrsia9QcMntJjVIbTsfWKd0V7up01aA+miHoI2qtEud+omyEZzMZp0eDPdsQKPoADrlqBix5nP/
+ jF6ao6O8XXJ/rxhlG8wH6nC/aJ1zNQK80dR/d3NOu5ucy/J/5AeAMdQO81QbzDk7nnhIM9g8w3+l
+ 9S63DYPdWodVWnBZotGGt48ACp2ussUym0dsNgFv7/0BAAD//wMAOEW8PxIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651ca498560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '350'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_918aad9cebbde2c128479caa27b799de
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBDd9RVXLllkQ47jNvYSFO0Qd2jRLhmCQqDIs0SX4hHkKakb+N8L0Yrk
+ oCmQhcN79x7eu+NTBiCMFhsQqpGsWm9nH78rur778sMeLqnCu+bz/lNXLWz8g/uv30TeK6jao+Jn
+ 1VxR6y2yIXeiVUDJ2LsuPiyLdbEu3l8noiWNtpfVnmfL+WrGXahoViwuV4OyIaMwig3cZwAAT+nt
+ MzqNv8UGivwZaTFGWaPYjEMAIpDtESFjNJGlY5FPpCLH6FLsW7SW3sH2ooV9FxkkPJjAnbQwKnOI
+ BFvQ5C4YGvmAsEO0xtUxh6rjpG0wIDBBg9bDgTp4NNyAdAdujKsT4hD1HG7pEZR0sB38E8Wk5eHm
+ PGHAXRdlvyHXWTvgx7GypdoHquLAj/jOOBObMqCM5Pp6kcmLxB4zgJ9ptd2LbQkfqPVcMv1C1xsu
+ rk52YjrmRC5XA8nE0k741Tp/xa3UyNLYeHYaoaRqUE/K6Y6y04bOiOys879hXvM+9Taufov9RCiF
+ nlGXPqA26mXhaSxg/9X/NzbuOAUW8RAZ23JnXI3BB5M+WzrlMfsLAAD//wMAAmwAZWsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651cd7d5660a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '703'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_6a34463c0d4a7cc0228769d395897a6c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7TMBC95yusOaerNlVZkhscEAfKAoctC0GRa09SF8dj2Q5Qqv47StJN0lIk
+ coisefPezLyxjxFjoCRkDMSOB1FbPXv1UVD6LnnzaPZm9YM+y3KTcO83j3z59BbilkHbPYrwzLoT
+ VFuNQZHpYeGQB2xVF/fLeTpP5y/SDqhJom5plQ2z5d1qFhq3pdl8kazOzB0pgR4y9jVijLFj9297
+ NBJ/Qcbm8XOkRu95hZANSYyBI91GgHuvfOAmQDyCgkxA07ZtGq0nQCDSheBaj4X77zg5j0ZxrYsP
+ KxlSkewP71c/N6n+8vCUmLX5vZjU66UPtmuobIwYDJrgQzy7KsYYGF533PVh3fkWXydwVzU1mtC2
+ Dcf87F6SQ5bDa91gDnEOfsclPpSfUHbxNXdEJocTXKidolvnbxOTHJaN5/rs3jl+GtahqbKOtv7K
+ XSiVUX5XOOS+mxJ8INvXbut0FaC52CRYR7UNRaDvaFrB5P5lrwfjTRvRxfIMBgpcT1jpIr6hV0gM
+ XHWrHm6X4GKHcqSOt4w3UtEEiCZT/93NLe1+cmWq/5EfASHQBpSFdSiVuJx4THPYPsR/pQ0udw2D
+ P/iAdVEqU6GzTg1PITpFfwAAAP//AwDDdlxgCQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651d34cce60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '451'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_21a5c067a7bbf35bbd6245dc3fc93ab0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW/aMBB+z6+w7hmqAKOMvLWVtr1QBlM1qcsUGecIXh2fazvqEOK/V3FYEhiT
+ lofIuu++7+6+sw8RYyBzSBiIHfeiNGp4txJ096C/f/Avz2ux/LKiyePn1f3rp9evpGBQM2jzC4X/
+ w7oRVBqFXpJuYGGRe6xVR7NJPI/n8SwOQEk5qppWGD+c3EyHvrIbGsaj8fTE3JEU6CBhPyLGGDuE
+ f92jzvE3JCzohEiJzvECIWmTGANLqo4Ad046z7WHQQcK0h513baulOoBnkhlgivVFW6+Q+/cGcWV
+ yh708zQ2b3b5bT5VexvT+u329unpsVevkd6b0NC20qI1qIe38eSiGGOgeRm4i/0i+Da4TOC2qErU
+ vm4bDunJvXEKSQr3qsIUBim4Hc9xuV1jHuILbol0Ckc4UztG184/eyZZ3FaOq5N7p/ixXYeiwlja
+ uAt3YSu1dLvMIndhSnCeTFO7rhMqQHW2STCWSuMzTy+oa8Hx7GOjB91N69DR5AR68lz1WPPR4Ipe
+ lqPnMqy6vV2Cix3mHbW7ZbzKJfWAqDf1391c024ml7r4H/kOEAKNxzwzFnMpzifu0izWD/Ffaa3L
+ oWFwe+exzLZSF2iNle1TiI7ROwAAAP//AwCfhKsdCQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651d7193460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:30 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '394'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_5319500892f246d1e6fb26d0a44f7bd7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOZNVPnaVDbdsq1SqRNMP9dJSIccM4MTYrm3UpFH++wpDgaSp
+ VA7Imjfvzcwb+xwQAjyDiAArqWOVFpP1J6bW6xdVFxu6fbevv7z/oDeb8iD2bz5+g7BhqN0emfvD
+ emCq0gIdV7KFmUHqsFGdLRfT1XQ1XU49UKkMRUMrtJssHp4mrjY7NZnO5k8ds1ScoYWIfA8IIeTs
+ /02PMsMjRMTr+EiF1tICIeqTCAGjRBMBai23jkoH4QAyJR3Kpm1ZCzECnFIiZVSIoXD7nUfnwSgq
+ RHo8xnQTv/2V66/b58PvfB4/roX5+Tiq10qftG8oryXrDRrhfTy6KUYISFp5bnyKvW/hbQI1RV2h
+ dE3bcE469+YJRAm8iBoTCBOwJc1wm3/GzMdjapSSCVzgSu0S3Dv/GJlkMK8tFZ17XfzSr0OoQhu1
+ szfuQs4lt2VqkFo/JVindFu7qeMrQH21SdBGVdqlTh1QNoLz5XOrB8NNG9DZogOdclSMWKtZeEcv
+ zdBR7lfd3y5GWYnZQB1uGa0zrkZAMJr6727uabeTc1n8j/wAMIbaYZZqgxln1xMPaQabh/ivtN5l
+ 3zDYk3VYpTmXBRpteP8UgkvwCgAA//8DACQ/oYgJBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651db6efb60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '398'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_761338d56880ae0b8d848952b26472b3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOZNVPjZK4dbtoeq2abWpuoctFXLMAG6Mx7VNtqso/70CskDS
+ VCoHZM2b92bmjX0IGAOZQcxAlNyLyqjJ2wdBdw+P94t3u/dP0f7b7d65fanN14+f7wWEDYO2P1H4
+ V9aNoMoo9JJ0BwuL3GOjOlstptE0mq5mLVBRhqqhFcZPFjfLia/tlibT2Xx5YpYkBTqI2feAMcYO
+ 7b/pUWf4G2I2DV8jFTrHC4S4T2IMLKkmAtw56TzXHsIBFKQ96qZtXSs1AjyRSgVXaijcfYfReTCK
+ K5WKdbXcbfineXn7vNxE4jmiX/njh6dRvU76xbQN5bUWvUEjvI/HF8UYA82rlrt+Wbe+hZcJ3BZ1
+ hdo3bcMhObk3TyBO4E7VmECYgCt5hl/yDWZtfM0tkU7gCGdqx+Da+cfIJIt57bg6uXeKH/t1KCqM
+ pa27cBdyqaUrU4vctVOC82S62k2dtgLUZ5sEY6kyPvW0Q90IzldvOj0YbtqAzhYn0JPnasSKZuEV
+ vTRDz2W76v52CS5KzAbqcMt4nUkaAcFo6r+7uabdTS518T/yAyAEGo9ZaixmUpxPPKRZbB7iv9J6
+ l9uGwb04j1WaS12gNVb2TyE4Bn8AAAD//wMANDG1CwkEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651df6cc960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '408'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_842e59bbe841284e2ab041ccdc54c1af
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1446'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/aMBC951dYcw6rAKJAbtttJbRd2qXHNlVk7Eni1rFd26mgiP9e5WOTQFlp
+ c4isefPezLyxTwEhIDjEBFhBPSuNnNzvmH5YHYqPv/8+76h82v3ZPqyfffnhUD5uIKwZev8TmX9h
+ 3TFdGoleaNXCzCL1WKtOl/NoHa2j5awBSs1R1rTc+Mn8bjHxld3rSTSdLTpmoQVDBzH5HhBCyKn5
+ 1z0qjgeISRS+REp0juYIcZ9ECFgt6whQ54TzVHkIB5Bp5VHVbatKyhHgtZYpo1IOhdvvNDoPRlEp
+ 00/R5/ts861a7TdP75zKqh1n24V+HNVrpY+maSirFOsNGuF9PL4qRggoWjbc7XHb+BZeJ1CbVyUq
+ X7cNp6Rzb5ZAnMB7WWECYQKuoBy/ZF+RN/EttVqrBM5woXYObp1/jEyymFWOys69Ln7u1yF1bqze
+ uyt3IRNKuCK1SF0zJTivTVu7rtNUgOpik2CsLo1Pvf6FqhacLVetHgw3bUCn8w702lM5Yq2n4Q29
+ lKOnoll1f7sYZQXygTrcMlpxoUdAMJr6/25uabeTC5W/RX4AGEPjkafGIhfscuIhzWL9EF9L611u
+ GgZ3dB7LNBMqR2us6J9CcA7+AQAA//8DAHPLkkcJBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651e349b960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:32 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '398'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_f53f3f848ca30e022673d3d929a60591
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTY/TMBS851c8fOHSrNKP3W57QSs4dA+w4kaFUOS1XxOD42fZL5Rq1f+OnGSb
+ VIDExYeZN6OZkV8yAGG02IJQtWTVeJs/fFb0/lNxvF1/+bnZf/T73RMeNT08hQ/7tZglBT1/R8Wv
+ qhtFjbfIhlxPq4CSMbnO18tiU2yK9aIjGtJok6zynK8oXxSLVV7c58XdIKzJKIxiC18zAICX7k0R
+ ncZfYgvF7BVpMEZZodhejgBEIJsQIWM0kaVjMRtJRY7Rdal3aC29gce3DdQYEKTTEFDqEzBBjdbf
+ wI6OoKSDR+jN4EQtMGl5ejc1DXhoo0ydXGvtgJ8vKS1VPtBzHPgLfjDOxLoMKCO5lCgyedGx5wzg
+ W7dGe1VQ+ECN55LpB7pkOF/1dmKcf0LeDSQTSzviy2HBa7dSI0tj42RNoaSqUY/KcXrZakMTIpt0
+ /jPM37z73sZV/2M/EkqhZ9SlD6iNui48ngVMn/NfZ5eNu8AiniJjUx6MqzD4YPr/cfDl/Haj75er
+ uVIiO2e/AQAA//8DAI8oHg4oAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651e71fbe60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '493'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_a95951d1e68965b403dacf4c52d6e041
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7TMBC95yusOacobdJtmxsFISG1uywCIS1BkdeepAbHdm0HqKr+O0rSTdJS
+ JHKIrHnz3sy8sY8BISA4pATYjnpWGTl5/cj0W/NuP5/Ge+744xvNn7bOfrlbP9gPEDYM/fwdmX9h
+ vWK6MhK90KqDmUXqsVGdLuJoFa2iRdwCleYoG1pp/CTRk1k0SybRchLdnYk7LRg6SMnXgBBCju2/
+ aVFx/A0picKXSIXO0RIh7ZMIAatlEwHqnHCeKg/hADKtPKqma1VLOQK81jJnVMqhcPcdR+fBJypl
+ /p7rz2KfiH282twnnzabX5v4fv30c1Svkz6YtqGiVqz3Z4T38fSqGCGgaNVyt4dta1t4nUBtWVeo
+ fNM2HLOze7MM0gzWssYMwgzcjnJ8KD4i7+K1LWvFDxmc4ELvFNw6fxvZZLGoHZVn/87xU78QqUtj
+ 9bO78hcKoYTb5Rapa+cE57Xpajd12gpQX+wSjNWV8bnXP1A1grPFvNOD4aoN6DQ5g157Kkes5Sq8
+ oZdz9FS0y+7vF6Nsh3ygDveM1lzoERCMpv67m1va3eRClf8jPwCMofHIc2ORC3Y58ZBmsXmJ/0rr
+ XW4bBndwHqu8EKpEa6xoHwMUJp/OV3wZJ1PGIDgFfwAAAP//AwDGTvM8FQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651eb0d9a60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '503'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_28644298a00046082a50f068af3d0955
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTy27bMBC86yuIPcuF/Ehs65ai7qGIEbgIkrRVIDDkSmZCkSxJtXEM/3uhRyTZ
+ dYHqIBA7O7O7s+Q+IAQEh5gA21LPCiNHVxumVytJ8yL/Mn2l6+ucF79uvr3cf/q8nkBYMfTTMzL/
+ zvrAdGEkeqFVAzOL1GOlOp5Po2W0jOazGig0R1nRcuNHMz2aRJPZKFqMosuWuNWCoYOY/AgIIWRf
+ /6sWFcdXiEkUvkcKdI7mCHGXRAhYLasIUOeE81R5CHuQaeVRVV2rUsoB4LWWKaNS9oWbbz849z5R
+ KdPLu1u/ebj7Ke5v367fMNt9x9/PG1wN6jXSO1M3lJWKdf4M8C4enxQjBBQtau56t65tC08TqM3L
+ ApWv2oZ90ro3SSBO4KMsMYEwAbelHG+yr8ibeGnzUvFdAgc40jsE586PA5ssZqWjsvWvjR+6hUid
+ G6uf3Im/kAkl3Da1SF09JzivTVO7qlNXgPJol2CsLoxPvX5BVQlO5heNHvRXrUfHsxb02lM5YC2W
+ 4Rm9lKOnol52d78YZVvkPbW/Z7TkQg+AYDD1392c024mFyr/H/keYAyNR54ai1yw44n7NIvVS/xX
+ Wudy3TC4nfNYpJlQOVpjRf0YIDPp+GLJF9PZmDEIDsEfAAAA//8DAK0vc4kVBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651ef6b7060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2411'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_19e4737d19125d27cf657e8b6fee5a98
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOZMKSHY34batVpVWpdVW/VBUKuTYA3FqbNc2VbNR/nsFZIGk
+ qVQOyJ4382bmzfgQEAKCQ0qAbalntZGz+yem38b3+2b95qF5/pWs3dcvEh+fNpoltxC2EXqzQ+Zf
+ ol4xXRuJXmjVw8wi9diyxnfzaBWtorvbDqg1R9mGVcbPFnqWRMliFi1n0YmXbbVg6CAl3wJCCDl0
+ /7ZExfE3pCQKXyw1OkcrhHRwIgSslq0FqHPCeao8hCPItPKo2qpVI+UE8FrLglEpx8T9d5icR52o
+ lMVuXS3Uo1rE1buHjP+sPz1/zl6/z3aTfD313nQFlY1igz4TfLCnF8kIAUXrLjbbZ51s4aUDtVVT
+ o/Jt2XDIT+olOaQ5fESeQ5iD21KOH8rumuaQUau1yuEIZ2TH4Nr5+0Qji2XjqDyJd7Ifh2lIXRmr
+ N+5CXCiFEm5bWKSuaxKc16bP3ebpMkBzNkgwVtfGF17/QNUSJnc3PR+Mezai8fwEeu2pnEQtl+EV
+ voKjp6Kb9LBcjLIt8jF0XDLacKEnQDDp+u9qrnH3nQtV/Q/9CDCGxiMvjEUu2HnHo5vF9hn+y21Q
+ uSsY3N55rItSqAqtsaJ7CVCaIr5Z8eV8ETMGwTH4AwAA//8DAL1i8UASBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de651ff682e60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '506'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_4c10ac05795e286d4e2a5e0635d22912
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXY+bMBB851dY+0wq8p3w1l5P6kmXXttL1ZNKhRx7AeeM7cNGlzTKf6+AHJA0
+ lcoDsnd2ZnfH9sEjBASHkADLqGO5kYP3X5n+NL27302+P35cre8edzfr2+3zzez2x/YV/IqhN1tk
+ 7o31juncSHRCqwZmBVKHlepwPg6WwTKYz2sg1xxlRUuNG0z0YBSMJoNgMQhmJ2KmBUMLIfnpEULI
+ of5XLSqOOwhJ4L9FcrSWpghhm0QIFFpWEaDWCuuocuB3INPKoaq6VqWUPcBpLWNGpewKN9+ht+58
+ olLGHzaf8ffoy8vs4f5p/8THzKav2Vq/9Oo10ntTN5SUirX+9PA2Hl4UIwQUzWvuar+qbfMvE2iR
+ ljkqV7UNh+jk3iiCMIJvyCPwI7AZ5fiQ1NswghUttFYRHOFM7OhdW//qeVRgUloqT+ad4sf2NKRO
+ TaE39sJcSIQSNosLpLYeEqzTpqld1akrQHl2kGAKnRsXO/2MqhIczaeNHnT3rEOH4xPotKOyx1os
+ /Ct6MUdHRX3S7eVilGXIO2p3yWjJhe4BXm/qv7u5pt1MLlT6P/IdwBgahzw2BXLBzifu0gqsnuG/
+ 0lqX64bB7q3DPE6ESrEwhahfAiQmHk6XfDGeDBkD7+j9AQAA//8DAFtVlSESBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65203dd8a60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:37 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '515'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_f9f7c541adc54079d94fbe7167839a41
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1439'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY+bMBC98yusOZOKfG0Ct92qq660adU9NS0VcuwB3Brbss120yj/fQVkgaSp
+ VA7InjfvzcyzfQgIAcEhIcBK6lll5OT2C9MPL49PH78un4tP77f7501+L5bx7fZhV0LYMPTuJzL/
+ xnrHdGUkeqFVBzOL1GOjOl3NoziKo9W6BSrNUTa0wvjJQk9m0WwxidaT6OZELLVg6CAh3wNCCDm0
+ /6ZFxfEFEhKFb5EKnaMFQtInEQJWyyYC1DnhPFUewgFkWnlUTdeqlnIEeK1lxqiUQ+HuO4zWg09U
+ yuzbY4F++Xt2szOrP2x7V31Q8b3hd6N6nfTetA3ltWK9PyO8jycXxQgBRauWu9lvWtvCywRqi7pC
+ 5Zu24ZCe3JulkKTwhDyFMAVXUo6f83abpLChVmuVwhHOxI7BtfWPkUcW89pReTLvFD/2pyF1Yaze
+ uQtzIRdKuDKzSF07JDivTVe7qdNWgPrsIMFYXRmfef0LVSM4Wy07PRju2YBO5yfQa0/liLVeh1f0
+ Mo6eivak+8vFKCuRD9ThktGaCz0CgtHUf3dzTbubXKjif+QHgDE0HnlmLHLBzice0iw2z/Bfab3L
+ bcPg9s5jleVCFWiNFe1LgNxk02XM1/PFlDEIjsErAAAA//8DAIUnyOUSBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652090bd260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '558'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_b1f20a2addb5b303ed57fc071e47721d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTYvbMBS8+1e86tJLvDix03xcSg+F5lRKoYWWxSjSs61W1hPSM2xY8t+LnGzs
+ ZXehFx1m3gwzgx4zAGG02INQnWTVe5t/+qbo8GO5duvPLvD2u6l+bb8em7h6UG0Qi6Sg4x9U/KS6
+ U9R7i2zIXWgVUDIm1+WmLHbFrthsR6InjTbJWs95lfMQjpSvilWVF1Ve7K7qjozCKPbwOwMAeBzf
+ lNNpfBB7KBZPSI8xyhbF/nYEIALZhAgZo4ksHYvFRCpyjG6M/gWtpXdweN9DhwGBCTq0Hk403MHP
+ TjIo6eAAmqChkGBg0vL0ce4XsBmiTJ3cYO0VP98CWmp9oGO88je8Mc7Erg4oI7kUJjJ5MbLnDOB+
+ HGJ41k34QL3nmukvumS4rC52Ypp/Rm6uJBNLO+HlcvGKW62RpbFxNqRQUnWoJ+W0uhy0oRmRzTq/
+ DPOa96W3ce3/2E+EUugZde0DaqOeF57OAqbP+dbZbeMxsIinyNjXjXEtBh/M5Ws0vl7rY1mUH8qm
+ Edk5+wcAAP//AwBwynnGKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6520d692560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '598'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_7ca37541f5e967ac6e8fbe53d8c2d5b9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTXW/TMBR9z6+w7nOCsrSsS94okzoGE4JJA0ZQ5No3H6tjG9uZVlX97yhJl6Sl
+ SOQhsu+559x7j+2dRwhUHBICrKSO1VoE774wdRtfLX/g6vfNhj9/+LTRqxtZ3FPx9Ax+y1DrJ2Tu
+ lfWGqVoLdJWSPcwMUoet6sViFsZhHC7iDqgVR9HSCu2CeeAas1ZBFEbzIJwHYXxgl6piaCEhPz1C
+ CNl1/7ZPyfEFEhL6r5EaraUFQjIkEQJGiTYC1NrKOiod+CPIlHQo29ZlI8QEcEqJjFEhxsL9t5us
+ R7OoEFl5Hz7mZnX9Xqnr228v+HH5cPUYXX6f1Oult7prKG8kG0ya4EM8OSlGCEhad9y77V3nnX+a
+ QE3R1Chd2zbs0oN7UQpJCl+Rp+CnYEvK8XPebZMUlo0pGsm3KezhSG7vnVv/mrhkMG8sFQf7DvH9
+ cB5CFdqotT2xF/JKVrbMDFLbjQnWKd3Xbut0FaA5OkrQRtXaZU5tULaC0eKq14Pxuo3oxfwAOuWo
+ mLDiyD+jl3F0tOrOerhejLIS+UgdrxlteKUmgDeZ+u9uzmn3k1ey+B/5EWAMtUOeaYO8YscTj2kG
+ 29f4r7TB5a5hsFvrsM7yShZotKm6twC5zt7y9SycXc7yHLy99wcAAP//AwAGU9uNGQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652121f4360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1707'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_f6485940877626da91a820d0702d5df3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7TMBC95yusOScoTQttc6OAhArLQk+wBEWuPUkNjm3ZjkSp+u+rON0kW4pE
+ DpE9b96bmWf7FBECgkNOgB2oZ42RyesvTH/ERs7bt8v79w+7h+2bLddOrt99+sYg7hh6/xOZf2K9
+ YLoxEr3QqoeZReqxU50t5+k6XaerWQAazVF2tNr4ZJH41u51kqXZIkkXSbq+sA9aMHSQk+8RIYSc
+ wr/rU3H8DTlJ46dIg87RGiEfkggBq2UXAeqccJ4qD/EIMq08qq511Uo5AbzWsmRUyrFw/50m69Es
+ KmWp/2xoqtqvlq922WL7QZjPm8avNpN6vfTRhIaqVrHBpAk+xPOrYoSAok3g3h3vgnfxdQK1ddug
+ 8l3bcCou7mUF5AXskBcQF+AOlON9FbZ5AZvW1q3ixwLO8EzuHN1a/5i4ZLFqHZUX+y7x83AeUtfG
+ 6r27shcqoYQ7lBapC2OC89r0tbs6oQK0z44SjNWN8aXXv1B1gtly1evBeN1GdLa4gF57KiesdRbf
+ 0Cs5eirCWQ/Xi1F2QD5Sx2tGWy70BIgmU//dzS3tfnKh6v+RHwHG0HjkpbHIBXs+8ZhmsXuN/0ob
+ XA4Ngzs6j01ZCVWjNVaEtwCVKV/y/Tydv5pXFUTn6BEAAP//AwA2vMTmGQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6521dfe8960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:42 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '752'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_e85b27a6dc118a944954a52e250e1ab3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7TMBC99yusOSfITbu0zW05ILGoKqxgpYWgyLUnqaljG9tBVFX/fZWkm6Sl
+ SOQQ2fPmvZl5to8TQkAKSAnwHQu8siq+/8zNesNosvnycf/BTsunZ/Ek7h+W39aLPUQNw2x/Ig+v
+ rDfcVFZhkEZ3MHfIAjaq08WMruiKLpMWqIxA1dBKG+J5HGq3NXFCk3lM5zFdndk7Izl6SMn3CSGE
+ HNt/06cW+AdSQqPXSIXesxIh7ZMIAWdUEwHmvfSB6QDRAHKjA+qmdV0rNQKCMSrnTKmhcPcdR+vB
+ LKZU/lS8D/Lxa+Cfng9a0T39TX+xh7vpqF4nfbBtQ0WteW/SCO/j6VUxQkCzquWuD+vWu+g6gbmy
+ rlCHpm04Zmf3kgzSDB5RZBBl4HdM4KZot2kG72pX1locMjjBhdxpcmv9Y+SSw6L2TJ3tO8dP/Xko
+ U1pntv7KXiikln6XO2S+HRN8MLar3dRpK0B9cZRgnalsyIPZo24Ek8Wy04Phug3odH4GgwlMjVir
+ JLqhlwsMTLZn3V8vzvgOxUAdrhmrhTQjYDKa+u9ubml3k0td/o/8AHCONqDIrUMh+eXEQ5rD5jX+
+ K613uW0Y/MEHrPJC6hKddbJ9C1DY/E5sZ3T2dlYUMDlNXgAAAP//AwCsHZrpGQQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652239dec60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '868'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_bb1d02c52cb75eace0f884edaa903188
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnKEiJN0N3LpVql1F2W63p6pUyDEDeGts1zZtoij/vgKyQNJU
+ Kgdkz5v3ZubZPniEAM8hIcAq6litRfDhC1OPu1+/HzZKfrMy/tqsXm5UVT2t15+W4LcMtX1B5t5Y
+ 75iqtUDHlexhZpA6bFVnt/MwDuNwOe+AWuUoWlqpXbAIXGO2KojCaBGEiyCMT+xKcYYWEvLdI4SQ
+ Q/dv+5Q57iAhof8WqdFaWiIkQxIhYJRoI0Ct5dZR6cAfQaakQ9m2LhshJoBTSmSMCjEW7r/DZD2a
+ RYXIHqLHO/2Eszi6/7i/fw5X62jF/mx2k3q99F53DRWNZINJE3yIJxfFCAFJ64672W867/zLBGrK
+ pkbp2rbhkJ7ci1JIUnjGPAU/BVvRHD8X3TZJ4a4xZSPzfQpHOJM7etfWPyYuGSwaS8XJvlP8OJyH
+ UKU2amsv7IWCS26rzCC13ZhgndJ97bZOVwGas6MEbVStXebUT5StYHS77PVgvG4jOlucQKccFRNW
+ HPlX9LIcHeXdWQ/Xi1FWYT5Sx2tGm5yrCeBNpv67m2va/eRclv8jPwKMoXaYZ9pgztn5xGOawfY1
+ /ittcLlrGOzeOqyzgssSjTa8ewtQ6Ox9vp2H85t5UYB39F4BAAD//wMAj5orOBkEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6522a4eec60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '762'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_83809f2c8820b7d725dfc5aca5628b3e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY7TMBC95yusOSco25btNje2oFUlVoWuEFIJilx7khoc22s7LG3Vf0dJukla
+ ikQOkT1v3puZZ/sQEAKCQ0KAbalnpZHRu89ML8tn9+Fp9VLdr/dfl3n8MMeXj9P9pzWENUNvfiDz
+ r6w3TJdGohdatTCzSD3WqjfTcTyLZ/HdpAFKzVHWtML4aBL5ym50NIpHkyieRPHsxN5qwdBBQr4F
+ hBByaP51n4rjb0hIHL5GSnSOFghJl0QIWC3rCFDnhPNUeQh7kGnlUdWtq0rKAeC1lhmjUvaF2+8w
+ WPdmUSmzp/J29msxX4gv1XQ/fzaL1cPLeD19P6jXSu9M01BeKdaZNMC7eHJRjBBQtGy4j7vHxrvw
+ MoHaoipR+bptOKQn90YpJCmskKcQpuC2lOMyb7ZJCveVLSrFdykc4UzuGFxbfx+4ZDGvHJUn+07x
+ Y3ceUhfG6o27sBdyoYTbZhapa8YE57Vpa9d1mgpQnR0lGKtL4zOvf6KqBUfTu1YP+uvWozeTE+i1
+ p3LAmo3CK3oZR09Fc9bd9WKUbZH31P6a0YoLPQCCwdR/d3NNu51cqOJ/5HuAMTQeeWYscsHOJ+7T
+ LNav8V9pnctNw+B2zmOZ5UIVaI0VzVuA3GRv+WYcj2/HeQ7BMfgDAAD//wMAHA+iMhkEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65230bf6b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '685'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_aaaeb08ad238b0c42ed5414779e4a648
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSQW7bMBC86xVbXnqxCsl2EceXoAGKxqemQNEeikKgyZXEhOIS5Aq2E/jvBWXH
+ UtAU6IWHmZ3BzC6fMwBhtFiDUK1k1Xmbf/qm6L7YPz1t5ILi7d2PLw/3X7/vyu7z/nYvZklB2wdU
+ /KL6oKjzFtmQO9EqoGRMruXVorgurovVx4HoSKNNssZzvqS8M87k82K+zIurvFyd1S0ZhVGs4VcG
+ APA8vCmn07gXayhmL0iHMcoGxfoyBCAC2YQIGaOJLB2L2UgqcoxuiL5534Em4xrYobUz4Fa6x/gO
+ 7mgHcks9w4H6G/jZSgYlHWygResTCDvDLTBpebiZmges+yhTQddbe8aPl7SWGh9oG8/8Ba+NM7Gt
+ AspILiWLTF4M7DED+D1spX9VVPhAneeK6RFdMiyXJzsx3mJCrs4kE0s74ov57A23SiNLY+Nkq0JJ
+ 1aIeleMJZK8NTYhs0vnvMG95n3ob1/yP/UgohZ5RVz6gNup14XEsYPqp/xq77HgILOIhMnZVbVyD
+ wQdz+ie1r4qtLHQ5X9alyI7ZHwAAAP//AwBt4dlWNQMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65235de6360a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '826'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c7366e72206407d5a0ced3b564d5ebdb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnKGCNLtJuG2lVqq0q2zaalW1VMixB3BqbNc26qZR/n0FZIGk
+ qVQOyJo3783MG/sQEAKCQ0qAVdSz2sjobsP05n7ePG7V5n31Z6fF0+PtbvGR3cXsN4QtQ293yPwr
+ 6w3TtZHohVY9zCxSj61qsngbr+JVvLztgFpzlC2tND6a66gWSkSzeDaP4kWULE/sSguGDlLyPSCE
+ kEP3b/tUHJ8hJXH4GqnROVoipEMSIWC1bCNAnRPOU+UhHEGmlUfVtq4aKSeA11rmjEo5Fu6/w+Q8
+ mkWlzIVd74y4EU/PH5LlZ/rr6+rb8/36i5rU66X3pmuoaBQbTJrgQzy9KEYIKFp33If9Q+ddeJlA
+ bdnUqHzbNhyyk3uzDNIM3skGMwgzcBXluC4+Ie/jjS0bxfcZHOFM7xhcO/+Y2GSxaByVJ/9O8eOw
+ EKlLY/XWXfgLhVDCVblF6ro5wXlt+tptna4CNGe7BGN1bXzu9U9UreBscdPrwXjfRjSZn0CvPZUT
+ 1nIVXtHLOXoqumUP94tRViEfqeM9ow0XegIEk6n/7uaadj+5UOX/yI8AY2g88txY5IKdTzymWWyf
+ 47/SBpe7hsHtncc6L4Qq0RoruscAhcnjLY15MpsXCQTH4AUAAP//AwC4nTSVGgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6523c3ea060a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '378'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_5199f6ae50a1a00f2be6a80f31e7e050
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT72vbMBD97r9C3Gd7OFnaJP62tttgULaGUjbmYRTp7KjRr0ryWBbyvw/bqe1k
+ GcwfjLh3793dO2kfEQKCQ0aAbWhgysrk3QMzD9/uws9tnbp1cO9fnh/lzUzxr0/hA8QNw6yfkYVX
+ 1htmlJUYhNEdzBzSgI3qZP42XabLdHHdAspwlA2tsiGZmUQJLZJpOp0l6TyZLI7sjREMPWTke0QI
+ Ifv23/SpOf6CjKTxa0Sh97RCyPokQsAZ2USAei98oDpAPIDM6IC6aV3XUo6AYIwsGJVyKNx9+9F5
+ MItKWdyGsPy93K4e7z75K79bvdx+4dfqox7V66R3tm2orDXrTRrhfTw7K0YIaKpa7v3uvvUuPk+g
+ rqoV6tC0Dfv86N40hyyHG1ljDnEOfkM5fi5XyLt47apa810OBzjRO0SXzj9GNjksa0/l0b9j/NAv
+ RJrKOrP2Z/5CKbTwm8Ih9e2c4IOxXe2mTlsB6pNdgnVG2VAEs0XdCE7nV50eDPdtQCezIxhMoHLE
+ WizjC3oFx0BFu+z+fjHKNsgH6nDPaM2FGQHRaOq/u7mk3U0udPU/8gPAGNqAvLAOuWCnEw9pDpvn
+ +K+03uW2YfA7H1AVpdAVOutE+xigtEW6pimfTGflBKJD9AcAAP//AwCBok7KGgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6523f7a9560a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '405'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_94e929107379a2f7fe8483e51e4132ac
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/TMBC991dYc05Qmi1qNrdy4MCqIBZBtSIocu1JavBXbWehVP3vKEk3SUuR
+ yCGy5s17M/PGPs4IAcEhJ8B2NDBlZbz6yMzj07N6zrKVsgrR/l5/qpl6+CIzA1HLMNvvyMIL6xUz
+ ykoMwugeZg5pwFZ1vrxL7pP7JFt2gDIcZUurbYgXJlZCizhN0kWcLON5dmbvjGDoISdfZ4QQcuz+
+ bZ+a4y/ISRK9RBR6T2uEfEgiBJyRbQSo98IHqgNEI8iMDqjb1nUj5QQIxsiSUSnHwv13nJxHs6iU
+ pXu3+SnNndhU+8/27fun5GGTrvZuP6nXSx9s11DVaDaYNMGHeH5VjBDQVHXc9WHdeRddJ1BXNwp1
+ aNuGY3F2Ly0gL+CNbLCAqAC/oxw/VI/I+3jj6kbzQwEnuNA7zW6dv01sclg1nsqzf+f4aViINLV1
+ Zuuv/IVKaOF3pUPquznBB2P72m2drgI0F7sE64yyoQzmB+pWMF2+7vVgvG8jOl+cwWAClRNWdh/d
+ 0Cs5Biq6ZQ/3i1G2Qz5Sx3tGGy7MBJhNpv67m1va/eRC1/8jPwKMoQ3IS+uQC3Y58ZjmsH2O/0ob
+ XO4aBn/wAVVZCV2js050jwEqWyZbmvB5uqjmMDvN/gAAAP//AwBtdTsCGgQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65242df0160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '440'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_e2885bca4cf20fb971ea611644d0450a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTUW+bMBB+51dY9wwTSTMl4W3VXiYtS5dqk7oxIcc+wKuxHdtUTaP89wlIgWSp
+ VB6Qdd993919Zx8CQkBwSAiwknpWGRl9+s70fSxenpY/2bPga7fa7F50/CV++vF5BWHD0Nu/yPwr
+ 6wPTlZHohVYdzCxSj43qZH4TL+NlvFi0QKU5yoZWGB/NdFQJJaJpPJ1F8TyaLE7sUguGDhLyOyCE
+ kEP7b/pUHJ8hIXH4GqnQOVogJH0SIWC1bCJAnRPOU+UhHECmlUfVtK5qKUeA11pmjEo5FO6+w+g8
+ mEWlzKqV2FQPv+6/frMP69385nFZ7u7utrejep303rQN5bVivUkjvI8nF8UIAUWrlrvar1rvwssE
+ aou6QuWbtuGQntybppCkcCtrTCFMwZWU4zrfIO/itS1qxfcpHOFM7xhcO/8Z2WQxrx2VJ/9O8WO/
+ EKkLY/XWXfgLuVDClZlF6to5wXltutpNnbYC1Ge7BGN1ZXzm9SOqRnA6/9jpwXDfBnQyO4FeeypH
+ rMUyvKKXcfRUtMvu7xejrEQ+UId7Rmsu9AgIRlP/38017W5yoYr3yA8AY2g88sxY5IKdTzykWWye
+ 41tpvcttw+D2zmOV5UIVaI0V7WOA3GTxlsZ8Mp3lEwiOwT8AAAD//wMAcvnHvRoEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65247bd8460a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '455'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_be4a847d11a6cbcc727ec420934407aa
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"choice2": {"description":
+ "Choices for text", "enum": ["Red", "Green", "Blue"], "title": "Choice2", "type":
+ "string"}, "shadeOfRed": {"description": "Choices for text", "enum": ["Maroon",
+ "Burgundy"], "title": "Shadeofred", "type": "string"}}, "required": ["choice2",
+ "shadeOfRed"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1444'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnKEibLZJuO0qUbdVV223vZUKOfYA3hrbtY26KMq/V0AWSJpK
+ 5YCsefPezLyxDwEhIDikBFhFPauNjO6+MP1112zfLj8+3Ni1+szxg7zdvtjdr3cthB1D75+R+VfW
+ G6ZrI9ELrQaYWaQeO9XF6ibexJt4ve6BWnOUHa00PlrqqBZKREmcLKN4FS3WJ3alBUMHKfkeEELI
+ of93fSqOL5CSOHyN1OgcLRHSMYkQsFp2EaDOCeep8hBOINPKo+paV42UM8BrLXNGpZwKD99hdp7M
+ olLm33ZPd4a3zfq9bO/rSpXP26Rofj/M6g3SrekbKhrFRpNm+BhPL4oRAorWPfexfey9Cy8TqC2b
+ GpXv2oZDdnIvySDN4F42mEGYgasox0/FE/Ih3tiyUbzN4Ahnesfg2vnHzCaLReOoPPl3ih/HhUhd
+ Gqv37sJfKIQSrsotUtfPCc5rM9Tu6vQVoDnbJRira+Nzr3+i6gST1e2gB9N9m9DF8gR67amcsdab
+ 8IpeztFT0S97vF+Msgr5RJ3uGW240DMgmE39dzfXtIfJhSr/R34CGEPjkefGIhfsfOIpzWL3HP+V
+ NrrcNwyudR7rvBCqRGus6B8DFCaP9zTmi2RZLCA4Bn8AAAD//wMAJPCFqhoEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6524b9a3a60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '561'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ae36e897b6608e364ab7f3ee2aae0394
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWrcMBC9+yumuuTiXbzdLMnupZRQyJbSUprSQylGlmZtJbJGSOOk27D/Hqx1
+ 7A1NoRcd3pv3eG9GjxmAMFpsQKhGsmq9nb3/quhGfr+6+PKt+hi6T5c3W/fnqv1Q2x+f70TeK6i6
+ RcXPqrmi1ltkQ+5Iq4CSsXddXCyLdbEuLteJaEmj7WW159lyvppxFyqaFYu3q0HZkFEYxQZ+ZgAA
+ j+ntMzqNv8UGivwZaTFGWaPYjEMAIpDtESFjNJGlY5FPpCLH6FLsa7SW3sD2rIXbLjJIuDeBO2lh
+ VOYQCbagyZ0xNPIeYYdojatjDlXHSdtgQGCCBq2HPXXwYLgB6fbcGFcnxCHqOVzTAyjpYDv4J4pJ
+ y/2704QBd12U/YZcZ+2AH8bKlmofqIoDP+I740xsyoAykuvrRSYvEnvIAH6l1XYvtiV8oNZzyXSH
+ rjdcnB/txHTMiVyuBpKJpZ3w83X+ilupkaWx8eQ0QknVoJ6U0x1lpw2dENlJ57/DvOZ97G1c/T/2
+ E6EUekZd+oDaqJeFp7GA/Vf/19i44xRYxH1kbMudcTUGH0z6bOmUh+wJAAD//wMALAKSgmsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6524fffa260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '619'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_6eb77cf6c86188f19e532ff4d175c565
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV22rjMBCG7/MUZq6TEh9ysO96U3bb7W7bpSylDkaRJ4m2siQkmW0JeffFSmo5
+ bgu2wQj9882Mxp7xfhQEwErIAqA7Ymml+OTynsrHGhdE3TBqHur77083XN1E11fyxxLGDSHXf5Ha
+ d+qCykpxtEyKo0w1EouN13ART1N3O6GSJfIG2yo7iS9mE1vrtZxMw2h2IneSUTSQBc+jIAiCvXs2
+ OYoSXyELnB+3U6ExZIuQtUZBAFryZgeIMcxYIiyMvUilsCiatEXNeUewUvKCEs594OO176x9oQjn
+ Rfp0+xuv/9xFL9/Uw/q6fn38l85/LredeEfXb8oltKkFbQvU0dv9rBcsCECQyrG3b7eubuO+AdHb
+ ukJhm7RhnwMna+Q5ZM/7HIwl2uaQRfE4BxRlDlnSLJ2NaYxyuNOyrKnNYXUYd5AkaZHZ8itknIPL
+ qg8v5y0cTpMefYXE1hr7TDideSgKB0JR5KE4HQjNFx5aTnvQpbWarWv7EVuGHkujwVjqix+5Mw7C
+ oij1WDI4WpR0os3DwVg6bbE47H8ivxQTTIo+FIf+NcdxOBCa+SrGi+hraHWAs0/9MPpsvep0sMZN
+ bQg/tfZp/9DOCi63Ssu16bU+bJhgZldoJMa1IBgr1TF2E8dFgPpszIDSslK2sPIFReMwDk8zCfwY
+ 9Gq4WJxUKy3hXkiW78KZw6JES5gbRO3so4TusPSon4GkLpnsCKPOsT+m85nv49GZ2A5x7wVKUVks
+ C6WxZPT8yN5MY/Ob+MqsLbNLGMybsVgVGya2qJVm7aAeHUb/AQAA//8DAKh/juinBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65255df6960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3056'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_edf3950a3d250604d4b04552b1e2b8b2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUbW+bMBDH3+dToHtNKp5CUt616roHre0eVHVTqZBjHOLW2Mg+tmVRvvsESTGh
+ 7QSRkOX//e7+drjbThwHeA6JA3RNkJaVmJ59perH/OZDiefV3dPF5bdHen16/veS/ZbXObgNoZaP
+ jOIzdUJVWQmGXMm9TDUjyJqs/jz0Tptf2AqlyplosKLCaXgym2Ktl2rq+cHsQK4Vp8xA4txPHMdx
+ tu278Shz9gcSx3Ofd0pmDCkYJF2Q44BWotkBYgw3SCSCa0WqJDLZ2Ja1ED0BlRIZJULYwvtn21vb
+ iyJCZBG/ffdzdnex+rUp4k9e+Pn26fv7j2HUq7dPvalaQ6ta0u6Cenq3nwyKOQ5IUrbs1eaqvTd3
+ GEB0UZdMYmMbtikIsmQiheR+m4JBojGFJAjdFJjMU0iiZtnGmCYohS9a5TXFFB52bg+Jog6ZLd5C
+ 3BRaV0N4EXew70UD+pIRrDUbMr43s1Dgj4SCwELh6Uho5lsoHto7Q9R8WeNLLO4ZXMxHY4tFhwVe
+ OBYLetcR+IvRWOBZLPZHY7H9QkJ/aPKm4pIrOYRC3/7NYfjfWg87OPpud5PX1g+9dtRsVRsiDn16
+ 2N91jS9UUWm1NIM+hhWX3KwzzYhp+wkMqmpfu6nTVoD6aGZApVVZYYbqickmYegfBgzYmWZVPw4O
+ KiokwgrR/Fk4SpjlDAlvp0o3yCiha5Zb1A40Uudc9YRJ79gv7byWe390Losx6a1AKauQ5VmlWc7p
+ 8ZFtmGbNzH8rrLvm1jCYjUFWZisuC6YrzbupO9lN/gEAAP//AwCA0AdadAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65269eb2260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:04:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5967'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_c73aad8cceaa3447026df92d0cfa1ff2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVbWvbMBDH3+dTmHvtFD/H8buy9QnabmXtRqmLUWQl0SpLRpJHS8h3H3ZSS3FS
+ cAxB3P9+d6dD3G0mjgO0hMwBvEYaVzWbnj9gUV7evCVPfx6vbsWjd3mf/EvIt6vzX8IDtyXE4i/B
+ +pM6w6KqGdFU8J2MJUGatFH9WejN22/eCZUoCWuxVa2n4Vk81Y1ciKnnB/GeXAuKiYLMeZk4juNs
+ uv+2Rl6Sd8gcz/20VEQptCKQ9U6OA1Kw1gJIKao04hpcI2LBNeFt2bxhzBK0EKzAiDGTePfbWGfT
+ KMRY8b7S98+36+uH6x/PF9dPs6fmrfp+czGz8u1Cf9RdQcuG475Blt7bs0EyxwGOqo69+7jr+uYO
+ HZBcNRXhui0bNjkwtCAsh+xlk4PSSOocsiB0cyC8zCGL2mPno1qnHH5KUTZY5/C6dS0kinokTr9C
+ 3By6qoZwmvSw70UD+pIg3UgyZHwvNlDgj4SCwEDhfCSUzAyUegPoXGtJF40+xlLfYPPZaGye9ljg
+ h2OxIDI3C+J4NBab1gdpMBpLzQsJxxcZWkWGUXL0TCg+gZjmh7E3Col9C4nGIbGFpOOQuUGScVkS
+ K0s6RH4j1hwjqYUcPaLTiPWAIt//CnndwsFo2E5OnV+tiSfJslGI7Ufh3r7tZysTq1qKhRqMSlhS
+ TtW6kASpbmSB0qLe5W7zdBmgORjLUEtR1brQ4o3wNmDo72c4mLVh1CAO9qoWGjEjxMmncBCwKIlG
+ tBvc/a7ACK9JaVCzM1BTUmEJE+vax+Wcir27OuWrMeGNgDGpNSmLWpKS4sMrGzdJ2rX6lVvf5q5g
+ UB9Kk6pYUr4ispa0X2yT7eQ/AAAA//8DAJ6YfkTXBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65291596b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:04 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4351'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_f8b0f37d30a54f675c0b2afd307e9a3f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV226jMBCG7/MUaK5JxSEH4C6raqVdqbttVa22KhVyzIR4a2xqG/UQ5d1XkAQT
+ 2kpwgaz555sZj/GwmzgOsBwSB+iWGFpWfLq6oZLht7vF8+vqZ3Dt/Snk6p4+3/54ueL34DaEXP9D
+ ak7UBZVlxdEwKQ4yVUgMNlH9ZejFXux7s1YoZY68wYrKTMOL+dTUai2nnh/Mj+RWMooaEudh4jiO
+ s2vfTY0ix1dIHM89WUrUmhQISefkOKAkbyxAtGbaEGHAtSKVwqBoyhY15z3BSMkzSji3iQ/Prre2
+ jSKcZ+9Pf2+j25fX7Ua+b2X869LDm7C4u+zlO4R+q9qCNrWgXYN6emdPBskcBwQpW/bq7artmzt0
+ IKqoSxSmKRt2KXCyRp5C8rBLQRuiTApJELopoMhTSGbNsvXRjVMK10rmNTUpPO7dHjKbdcg8+gpx
+ U2irGsLRooObUz+nvyMxtcIh43tzCwX+SCgILBQuR0KLpYUibwCtjFFsXZuPWORbLF6OxuKowwI/
+ HIsFvm1HEMSjsdCz2MIfjcUWCz8U+btigkkxhELfHnMY+iOh0J5YOFt8DT3u4exT308+Wz/2brDC
+ Ta0JP17to33fzQoui0rJtR5cfdgwwfQ2U0h0ewVBG1kdcjd52gxQn40ZqJQsK5MZ+YSiCRj6x5kE
+ dgxa1V8uj6qRhnArzKKTcBYwy9EQ1g6ibvZRQreYW9TOQFLnTPaESW/bH8v5LPZh60wUY8JbgVKs
+ DOZZpTBn9HzL1k1h85v4yq1rc1sw6DdtsMw2TBSoKsW6QT3ZT/4DAAD//wMANqe2z6cGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652ad985d60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4999'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_af9f1b132926064036557d53a71f4f4b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1783'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVW2+bMBTH3/Mp0HkmFQZygbesW7eXamu0dpdSRY5xiDtjW7bplkb57hMkxYS2
+ Ejwgy//zOzfsw37kecBySD0gW2xJqfh4cUOkuCmvlH58+vzzEqPbX7fLu6sPiy8flxT8mpDrR0rs
+ C3VBZKk4tUyKo0w0xZbWXtEsCpIgQUHSCKXMKa+xQtlxdDEZ20qv5ThA4eREbiUj1EDq3Y88z/P2
+ zbvOUeT0H6Re4L/slNQYXFBIWyPPAy15vQPYGGYsFhZ8JxIpLBV12qLivCNYKfmKYM5d4OOz76xd
+ ozDnq09F/Pjj7vl5sfi73CXq8mn5PdjF6Hcn3tH1TjUJbSpB2gZ19HY/7QXzPBC4bNjr3XXTN79v
+ gHVRlVTYOm3YZ8DxmvIM0vt9BsZibTNIw8jPgIo8gzSul42NqY0y+KZlXhGbwcPB7yBx3CKT+XuI
+ n0GTVR+eT1sYBXGPvqLYVpr2GRRMHBSigVAYOihKBkLTmYPmQQ9aWKvZurKvsTlyWBIOxhLX/LCp
+ cRAWog4WTgdjoastnKLBWBK0WIT6R+SrYoJJ0Yci5M5IFKGBUOS+WBRP34ceDnB21A+jt9YPnRus
+ 6aYymJ+u9mn/0M4KLgul5dr0rj5smGBmu9IUm+YKgrFSHWPXcZoIUJ2NGVBalsqurPxDRe0wQqeZ
+ BG4MOhXNZifVSou5E+L5i3DmcJVTi1kziNrZRzDZ0tyhbgbiKmeyI4w6Zb9O5y3fx9KZKIa4dwIh
+ VFmar5SmOSPnJTszTevfxHtmbZubhMHsjKXlasNEQbXSrB3Uo8PoPwAAAP//AwCFmc/ZpwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652ce281b60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2393'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_6afd08edc79212d95eb34f3369aa80af
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTY/TMBS851c8fOHSrNI222V7QXBYtZwWwQ2hyGu/JGYdP9d+EUSr/neUj21S
+ ARIXH2bejGZGfkkAhNFiD0LVklXjbfrhs6JT9fD1y2N318rDdnd8Did9so+fHj5mYtUr6OkHKn5V
+ 3ShqvEU25EZaBZSMvev6bpvdZ/fr9WYgGtJoe1nlOc0p3WSbPM3epdluEtZkFEaxh28JAMDL8PYR
+ ncZfYg/Z6hVpMEZZodhfjgBEINsjQsZoIkvHYjWTihyjG1If0Fp6A8e3DdQYEKTTEFDqDpigRutv
+ 4EA/QUkHRxjNoKMWmLTs3i9NA5ZtlH0n11o74edLSkuVD/QUJ/6Cl8aZWBcBZSTXJ4pMXgzsOQH4
+ PqzRXhUUPlDjuWB6RtcbrvPRTszzL8jdRDKxtDO+nRa8dis0sjQ2LtYUSqoa9aycp5etNrQgkkXn
+ P8P8zXvsbVz1P/YzoRR6Rl34gNqo68LzWcD+c/7r7LLxEFjELjI2RWlchcEHM/6P0hf5rSpvc40S
+ RXJOfgMAAP//AwBOAyDKKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652de6fbc60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '698'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_efca40e632b31f85d985988615ac1fa4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6xU247aMBB95yuseQ5VuBbytl2qbSuhpV2VXjYoMs4keNexLdtUsIh/r5ywSaBb
+ qdI2D5Y1Z86ZS2Z86BACPIWIANtQxwotulefmTI/zcPNzXKUudkvmj3Nxne3vS/5aLaAwDPU+gGZ
+ e2a9YarQAh1XsoKZQerQq/beDsJpOO31BiVQqBSFp+XadYeq2w/7w2446YbjE3GjOEMLEbnvEELI
+ oTx9ijLFHUQkDJ4tBVpLc4SodiIEjBLeAtRabh2VDoIGZEo6lD5ruRWiBTilRMKoEE3g6ju07k2f
+ qBDJ8ruc5h/ef3v8urz+sd6J6/5azfXsUyteJb3XZULZVrK6Py28tkcXwQgBSYuSO9/Py7YFlw7U
+ 5NsCpfNpwyEGQdcoYojuDzFYR42LIQqDGFCmp1vpYb1LDLcmp5I/UR8+hlUQg8Odp8TAFxslMYZj
+ 8Fql2V7SgjPy0Qrqua9XvOqNyTuuJGf/Q62qlPSGZGFUDMfVEc66fOy8dF+1hsdgtrVUnKbqZD/W
+ YypUro1a24upg4xLbjeJQWrLvw/WKV3F9nHKCLA9m3DQRhXaJU49ovSCg3BS6UGzgA066Z9ApxwV
+ Ldb0tETnekmKjvJyBeqtY5RtMG2ozfbRbcpVC+i0qv4zm5e0q8q5zP9FvgEYQ+0wTbTBlLPzihs3
+ g/59+ptb3eUyYbB767BIMi5zNNrw8omATCfDEctGwxQpQufY+Q0AAP//AwDPbREjKwUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652e38f3160a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1873'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c0756b1d4b5595d4694911473802f524
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6RUwW7bMAy95ysEnp3BcZSm9a2H7jCgWNfu0tWBoci0o06WBInZ2gb590FOajtd
+ BxSYD4bBx/f4RJHeTRgDVUHOQG4Eydbp6eU3aYmv71LeXtHt/W/+mdLNpbn6cXNDApLIsOtHlPTK
+ +iRt6zSSsuYAS4+CMKrOlvP0Ir2YzRYd0NoKdaQ1jqbcTrM049P0fJqeHYkbqyQGyNnDhDHGdt07
+ WjQVPkHO0uQ10mIIokHI+yTGwFsdIyBCUIGEIUgGUFpDaKJrs9V6BJC1upRC66Hw4dmNvoc+Ca1L
+ QS+/6u9mnt3d8yVf3q3vH2+/mMcwqneQfnadoXprZN+fEd7H8zfFGAMj2o57/XzdtS15myB8s23R
+ ULQNuwK0WKMuIH/YFRBIeCogn/GkADRVAXm2SI45ISYV8NU3wqgXEQ0UsEoKIHyKpALUzcYaZDNe
+ wD4ZyV0serlZmv2/3pxnveCcn39c8NI5jQXsV3s4act+8t73anTbHuttEPo4Bsf4vp8rbRvn7Tq8
+ GROolVFhU3oUobsuCGTdoXas01WA7clIgvO2dVSS/YkmCs7T84MeDBszoGfZESRLQo9Yy+PUn+qV
+ FZJQ3cz2ayKF3GA1UId1EdtK2REwGZ36bzfvaR9OrkzzEfkBkBIdYVU6j5WSpyce0jzGH8q/0vou
+ d4YhPAfCtqyVadA7r7qdhtqVfCHrBa9QIEz2kz8AAAD//wMAAJf2KdwEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652f07fd760a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1055'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_e515686758ac090e2d1feadcdb39488e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6xUTW/iMBC98yusOYdVgMBCbrSV2D10afcC2gZFxhmCW8e2bGcFRfz3ygklge1K
+ K3VzsKx58958ZMaHDiHAM4gJsC11rNCiO31kqpzJx5968fwyn4/y6Pftj+UivA1VtIbAM9T6GZl7
+ Z31hqtACHVeyhplB6tCr9r4Owkk46fVGFVCoDIWn5dp1I9Xth/2oG4674ehE3CrO0EJMnjqEEHKo
+ Tp+izHAHMQmDd0uB1tIcIT47EQJGCW8Bai23jkoHQQMyJR1Kn7UshWgBTimRMipEE7j+Dq170ycq
+ RDosZjccXxf5r2kxuLPLnO9m35Y91YpXS+91ldCmlOzcnxZ+tsdXwQgBSYuKe7+/r9oWXDtQk5cF
+ SufThkMCgq5RJBA/HRKwjhqXQBwGCaDMTrfKw3qXBOYmp5K/Uh8+gVWQgMOdpyTAH7ZKYgLH4LNK
+ d3tJC87Idyuo535ecdobkRuuJGf/Q62ulPQi8mBUAsfVES66fOx8dF+1hsfgprRUnKbqZD+ex1So
+ XBu1tldTBxsuud2mBqmt/j5Yp3Qd28epIkB5MeGgjSq0S516QekFB+G41oNmARt03D+BTjkqWqzJ
+ aYku9dIMHeXVCpy3jlG2xayhNttHy4yrFtBpVf1nNh9p15Vzmf+LfAMwhtphlmqDGWeXFTduBv37
+ 9De3c5erhMHurcMi3XCZo9GGV08EbHQaDdlmGGVIETrHzhsAAAD//wMAo+onyysFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de652f8bbfd60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1388'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_56f34a2b7ff43da2cec4c543bf8420c7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA5SU32+bMBDH3/NXWPdMJgiQBt66aVpXqVun/VC3EiHHHMStsZlttKZR/vfJJAWa
+ ZVLLA0L3vfvc+bjzdkII8AJSAmxNLasbMT3/wtSf6Mf11025mut3F2fi7HvNmpvZh7v3j+C5CLW6
+ Q2afot4wVTcCLVdyLzON1KKjBmehn/hJECw6oVYFChdWNXYaqenMn0VTfzH154fAteIMDaTkdkII
+ Idvu7UqUBT5ASnzvyVKjMbRCSHsnQkAr4SxAjeHGUmnBG0SmpEXpqpatECPBKiVyRoUYEu+f7eh7
+ 6BMVIr8Pv7H7i7h+FLOP7U2cXH76ubn89bsY5dujN01XUNlK1vdnpPf29CgZISBp3cVeba66tnnH
+ DlRXbY3SurJhm4GgKxQZpLfbDIyl2maQzhIvA5RFBmkUeAcf45wy+KwrKvkjdQVksPQysPjggjLg
+ 12slkQQRudYqg503QibzHhn44WuZR7AwHGhh9AraeTAnb7mSnB0R4zjqiXG8eDkxSZIMdssdPOvz
+ bnLqezkaH41la6g4zNXBvusHVaiq0WpljuYOSi65Wecaqen+Pxirmn1ul6fLAO2zGYdGq7qxuVX3
+ KB0w9Bd7HgwrOKiL4CBaZakYRS0S7wQvL9BS3i1Bv3eMsjUWQ+iwf7QtuBoJk9Gp/63mFHt/ci6r
+ l+AHgTFsLBZ5o7Hg7PmJBzeN7ob6n1vf5a5gMBtjsc5LLivUjebdJQFlk0cxK+OoQIow2U3+AgAA
+ //8DACUkViAtBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65302a8a960a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1280'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_f149312be88239aec1e1ed817720a7c2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1776'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA6xUXW/aMBR951dY9zlMgaYU8sZA+6q60qoTkxoUuc5NMHPszHY2GOK/T05SElgn
+ TeryYFn33HPuR+71vkcI8ARCAmxNLcsL0Z/eMbW9/TkJ5p/v5pv77+8Xy6UOZlN59UVdg+cY6mmD
+ zD6z3jCVFwItV7KGmUZq0akOri78iT8ZDCYVkKsEhaNlhe0Hqj/0h0HfH/f9UUNcK87QQEgee4QQ
+ sq9Ol6JMcAsh8b1nS47G0AwhPDoRAloJZwFqDDeWSgteCzIlLUqXtSyF6ABWKREzKkQbuP72nXvb
+ JypEPJv9WH64v/766eHBKP1utBnvyk26XXTi1dK7okooLSU79qeDH+3hWTBCQNK84t7sbqq2eecO
+ VGdljtK6tGEfgaBPKCIIH/cRGEu1jSD0vQhQJs2t8jDOJYJbnVHJf1EXPoKVF4HFraNEwBdrJTGC
+ g/dapflO0pwz8tEI6rivV5wORuQtV5Kz/6FWV0oGAVloFcFhdYCTLh96L91XneHRmJaGimaqGvvh
+ OKZCZYVWT+Zs6iDlkpt1rJGa6u+DsaqoY7s4VQQoTyYcCq3ywsZWfUPpBC/8ca0H7QK26HjYgFZZ
+ KjqsSbNEp3pxgpbyagWOW8coW2PSUtvto2XCVQfodar+M5uXtOvKucz+Rb4FGMPCYhIXGhPOTitu
+ 3TS69+lvbscuVwmD2RmLeZxymaEuNK+eCEiLOLhk6WWQIEXoHXq/AQAA//8DAF4ZB0krBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6530c3cec60a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1390'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_894e233455c3da2ef9876d13e2327a96
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBTc9RWvXLpYgWS5ce0l6BCgGQokCIoORSHQ5JPEluJjyKegbuB/Lyg7
+ loKmQBYOd+8Odwc+ZQDCaLEFoTrJqvc2/3Sn6M/Qmi/ru9vr7v7rx3j7KK/7x3t+uHwQi6Sg3U9U
+ /Ky6UNR7i2zIHWkVUDIm13JdFZtiUy7LkehJo02y1nO+ynkIO8qXxXKVF6u82JzUHRmFUWzhewYA
+ 8DS+KafT+FtsoVg8Iz3GKFsU2/MRgAhkEyJkjCaydCwWE6nIMbox+me0lt7BzfseOgwITNCh9bCn
+ 4QK+dZJBSQc3oAkaCgkGJi33V3O/gM0QZerkBmtP+OEc0FLrA+3iiT/jjXEmdnVAGcmlMJHJi5E9
+ ZAA/xiGGF92ED9R7rpl+oUuG5epoJ6b5Z+T6RDKxtBNelYtX3GqNLI2NsyGFkqpDPSmn1eWgDc2I
+ bNb53zCveR97G9e+xX4ilELPqGsfUBv1svB0FjB9zv+dnTceA4u4j4x93RjXYvDBHL9G4+sPelcV
+ 1WXVNCI7ZH8BAAD//wMA0jmx3CgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de653160a5260a0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:05:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '655'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_bc61f61a8ff1439d9d1733a731b09d0f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/bMAy951cIPDuDP/LR+NYOG7BizdadhtWBoci040yWVEkekgX574Mdx3Ky
+ bogPgsDHx0fSpA4jQqDMICbANtSySvHx/TN7nTxP9z+UeX34sKw+q+Wy2P7aftxNH7+A1zDkeovM
+ nlnvmKwUR1tKcYKZRmqxiRrMI3/hL4K7uxaoZIa8oRXKjidjW+u1HId+OBn7k7G/6NgbWTI0EJOX
+ ESGEHNqzyVNkuIOY+N7ZUqExtECIeydCQEveWIAaUxpLhQXPgUwKi6JJXdScDwArJU8Z5dwJn77D
+ 4O6aRTlP9f23mR+Gu0/ff4dYReqheu9n+8f9QO8Ueq/ahPJasL5JA7y3x1dihICgVct92j+1vfOu
+ Hagu6gqFbdKGQwKcrpEnEL8cEjCWaptAHMy9BFBkCcSR73U+pnFK4KuWWc1sAqujN6T4jhOEN5LC
+ IOxJYTi7kRQ5pXAa3EiaRY40v1EpWjilSfCfmlZHuGjzcfTWfTWYHo15bSjvxqqzH/s55bJQWq7N
+ 1dhBXorSbFKN1LS/H4yV6qTd6LQKUF+MOCgtK2VTK3+iaAJGQbcP4NbQoXdBB1ppKR+wFmfgIl6a
+ oaVluwP92jHKNpg5qls/WmelHACjQdV/Z/NW7FPlpShuCe8AxlBZzFKlMSvZZcXOTWPzSv3Lre9y
+ mzCYvbFYpXkpCtRKl+0bAblKp9k68qNZlOcwOo7+AAAA//8DAGt+vtMxBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de654b8af2a1187-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:06:30 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2947'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_2c5b5180545721022985c5772300839e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUUW+bMBDH3/kU1j2TCQxJCm9bpalV22lttWpbiZBjTMJmbNc2W6Mo332CJOBk
+ 3QQPCPl///udT9xtPYSgKiBFQNfE0lrxyft7+nL9DZc3cfAQPV29PMin66/hbyEuf91H4LcOufzB
+ qD263lFZK85sJcVeppoRy9qs4TwKkiDBAe6EWhaMt7aVspN4Yhu9lBMc4HgSxJMgObjXsqLMQIqe
+ PYQQ2nbvtk5RsFdIUeAfT2pmDFkxSPsghEBL3p4AMaYylggL/iBSKSwTbemi4dwRrJQ8p4TzAbx/
+ ts730CzCef7lCs8vPzQ3j59ubWIevwfm422i1qHD26feqK6gshG0b5Kj9+fpGQwhEKTuvHebu653
+ /nkA0aumZsK2ZcM2A06WjGeQPm8zMJZom0Eazv0MmCgySKPAP8SYNiiDz1oWDbUZLHa+awkGT4hH
+ mnCIexPG05GmaCDh6VjS1CHNxpJmDuliLOnCISVjSYnT8XAkKXK6F43tXoQdUjyWFDuk6X9Iix2c
+ /G87763vhTNGmpWNIfwwX4fzXT+wXK6UlktzNn9QVqIy61wzYro5AGOl2rNbTkeA5mTWQWlZK5tb
+ +ZOJNmHbaO8w5Md9NKhhPDuoVlrCByGeHoWThHnBLKm6bdAvIEromhWDdVhEpCkq6Qiec+2/y3kr
+ 9/7qlViNST8IlDJlWZErzYqKnl55CNOs3df/Cuvb3BUMZmMsq/OyEiumla66bQmlyqfFMgqiWVSW
+ 4O28PwAAAP//AwBMaOivOwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6550efd7c8f4d-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:06:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4938'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_2361777135d5410c996c842fffd3fa6d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/bMAy951cIPDuDP5I18W1Yt52Cbjt0RevAUCTaUSdLgiRnTYP898JOYjtZ
+ N8QHQeDj4yNpUrsRISA4pATYmnpWGTn+9IO5n9OF3CaC/sHN7YY/vPi7+8/TjWUzCBqGXj0j8yfW
+ B6YrI9ELrQ4ws0g9NlGjmySch/MkmbZApTnKhlYaP56MfW1XehyH8WQcTsbh/Mhea8HQQUqeRoQQ
+ smvPJk/F8QVSEgYnS4XO0RIh7ZwIAatlYwHqnHCeKg9BDzKtPKomdVVLOQC81jJnVMpe+PDtBve+
+ WVTKnD8+/7J3xX1dFQ/fytfZ4otJvt6+Pg70DqG3pk2oqBXrmjTAO3t6IUYIKFq13MV20fYuuHSg
+ tqwrVL5JG3YZSLpCmUH6tMvAeWp9Bml0E2SAimeQJmFw9HGNUwbfreY18xks98GQEvacKL6SFEdx
+ R4rj6ZWkuFeKJ9cqTQZK0yuVknmvNIn+o7Tcw1mb96P37svB9FgsakflcayO9n03p1KXxuqVuxg7
+ KIQSbp1bpK79/eC8NgftRqdVgPpsxMFYXRmfe/0bVRMwiY77AP0a9ugsOoJeeyoHrPkJOIuXc/RU
+ tDvQrR2jbI28p/brR2su9AAYDar+O5v3Yh8qF6q8JnwPMIbGI8+NRS7YecW9m8XmlfqXW9flNmFw
+ W+exyguhSrTGivaNgMLkU75KwuRjUhQw2o/eAAAA//8DAP2SFCsxBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65851ff618f4e-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:08:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4375'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_3cbd5a8ae69ae54718e2276d83fc8830
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTY+bMBC98yusOUPF5yZways1qqq0qdptVS0RMsYQdo1t2UbbbJT/XkEIkHRb
+ hYNlzZs3b2aY8cFCCOoCEgRkhw1pJHPefiXm/Z337il6+STJ/fM+2sSb9fdIFy9yCXbHEPkjJebM
+ ekNEIxk1teAnmCiKDe2ieovAjd04WPo90IiCso5WSeOEjmlVLhzf9UPHDR03Htg7UROqIUEPFkII
+ Hfqzy5MX9DckyLXPloZqjSsKyeiEECjBOgtgrWttMDdgTyAR3FDepc5bxmaAEYJlBDM2CZ++w+w+
+ NQszluWPZPVlVf36wFjwmf38+ONehN+eV4uZ3in0XvYJlS0nY5Nm+GhPrsQQAo6bnrver/ve2dcO
+ WFVtQ7np0oZDCgznlKWQPBxS0AYrk0LiLewUKC9SSALXHnx055TCRomiJSaF7dGeU9yJ4/k3knzP
+ H0m+H91I8iclP7xVKZwpRTcqBfGkFHr/Udoe4aLNR+u1+3Y2PYqWrcZsGKvBfhznlIlKKpHrq7GD
+ sua13mWKYt3/ftBGyJN2p9MrQHsx4iCVaKTJjHiivAsYeMM+wLSGE7r0BtAIg9mMFZ+Bi3hZQQ2u
+ +x0Y145gsqPFRJ3WD7dFLWaANav672xei32qvObVLeEngBAqDS0yqWhRk8uKJzdFu1fqX25jl/uE
+ Qe+1oU1W1ryiSqq6fyOglFlU5IEb3AVlCdbR+gMAAP//AwBEXa2BMQUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6597a3d119120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2495'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_f7403b0188fb246f4a5b37681fccc265
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBC95ysGX7gkKGmLttvLiguwggMLEgghFLn2JDHreIw9USmr/jty2m2y
+ 2l2Jiw/vzXt6b8Z3GYAwWmxAqE6y6r0t3twofvvOLlfN/vMn/D78/vj17wfv11/K/mYQeVLQ9hcq
+ vle9UtR7i2zIHWkVUDIm1+piWV6Wl8v165HoSaNNstZzsaKiN84Ui3KxKsqLolqf1B0ZhVFs4EcG
+ AHA3vimn0/hHbKDM75EeY5Qtis15CEAEsgkRMkYTWToW+UQqcoxujH79sgdNxrWwQ2tz4E662/gC
+ 3tMO5JYGhj0NV/CtkwxKOriGDq1PIOwMd8Ck5f5qbh6wGaJMBd1g7Qk/nNNaan2gbTzxZ7wxzsSu
+ DigjuZQsMnkxsocM4Oe4leFBUeED9Z5rplt0ybBaHe3EdIsZuT6RTCzthC8X+RNutUaWxsbZVoWS
+ qkM9KacTyEEbmhHZrPPjME95H3sb1/6P/UQohZ5R1z6gNuph4WksYPqpz42ddzwGFnEfGfu6Ma7F
+ 4IM5/pPG1+VWlrparJpKZIfsHwAAAP//AwAYtleZNQMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6598b1bc49120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '482'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_8b922bda5dc3958cd2663d4650981a2d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xT72vbMBD97r9C3Gdn+EeWpP7W0a2s0DVjhW3UwSjy2VErS0aSadyQ/33ITmMn
+ y2D+YMS9e3fvnk47jxDgOSQE2IZaVtVicv2d2dvNzedvN9vXX1Fo40XTyC9t9DhfzhvwHUOtn5HZ
+ d9YHpqpaoOVK9jDTSC26quE8Dq6Cq3gx64BK5SgcraztZKomFZd8EgXRdBLMJ+HiwN4oztBAQp48
+ QgjZdX+nU+a4hYQE/nukQmNoiZAckwgBrYSLADWGG0ulBX8AmZIWpZMuGyFGgFVKZIwKMTTuv93o
+ PJhFhche5s/hG21/3329/rH9ub6LPz604vbT66hfX7qtO0FFI9nRpBF+jCdnzQgBSauOe9/ed975
+ 5wlUl02F0jrZsEtB0DWKFJKnXQrGUm1TSKKpnwLKPIUknvmHHOOSUnjQJZX8jToBKaz8FCxuHSkF
+ vtwoiSSckqVWKexXezjpvvcunVcjUzUWjaHi4PYhvj9en1BlrdXanN0GFFxys8k0UtO5Asaquu/t
+ +nQdoDm5eai1qmqbWfWC0hWMg0VfD4btHNBodgCtslSMWPHUv1Avy9FS3q3GcRsZZRvMB+qwlbTJ
+ uRoB3mjqv9Vcqt1PzmX5P+UHgDGsLeZZrTHn7HTiIU2je7z/Sju63AkG0xqLVVZwWaKuNe+eDhR1
+ FqxpkIfRtAjB23t/AAAA//8DAKEKf9dIBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6598f083d9120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '618'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_84bf3ee8c8823d1b896f63339d4d66ad
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTwY6bMBC98xXWnEkFCdkl3FJVXe0h3W1atYclQo4ZiLPGpraRko3y7yuTLJA0
+ lcoBWfPmzbx5Hh88QoDnkBBgG2pZVYvR/DuzD9v8x88/Rs/j120VL6dfnuafg8YGc/AdQ623yOwH
+ 6xNTVS3QciVPMNNILbqq4f0kmAWzSXzXApXKUThaWdtRpEYVl3w0DsbRKLgfhfGZvVGcoYGEvHiE
+ EHJo/06nzHEHCQn8j0iFxtASIemSCAGthIsANYYbS6UFvweZkhalky4bIQaAVUpkjArRNz59h8G5
+ N4sKkUXT8UI8hMv46+/p7q14XH6bbR/Z+teg36n0vm4FFY1knUkDvIsnV80IAUmrlrvYL1rv/OsE
+ qsumQmmdbDikIOgaRQrJyyEFY6m2KSRh7KeAMk8hmQT+Oce4pBSedEklf6NOQAorPwWLO0dKgT9v
+ lEQSRuRZqxSOqyNcdD96t86rgakai8ZQcXb7HD921ydUWWu1Nle3AQWX3GwyjdS0roCxqj71dn3a
+ DtBc3DzUWlW1zax6RekKToL4VA/67ezR8d0ZtMpSMWBNIv9GvSxHS3m7Gt02Mso2mPfUfitpk3M1
+ ALzB1H+ruVX7NDmX5f+U7wHGsLaYZ7XGnLPLifs0je7x/iutc7kVDGZvLFZZwWWJuta8fTpQ1Fmw
+ pkEejqMiBO/ovQMAAP//AwAn8lEwSAQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65993df2b9120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1445'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_db31e5640b758b0a3b6ff9d32b8c7418
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTW+jMBC951dYc4YVJGyacttDW+2h2q5UaftBhIwZwImxWduozUb57ytDCiTN
+ SssBWfNm3nszHu9nhADPISbAKmpZ3Qj/209mv28fv1a3ERXb8vH5bvMW7paZKs3NCjxXobINMvtR
+ 9YWpuhFouZI9zDRSi441vFoE18H1YrXqgFrlKFxZ2Vg/Un7NJffnwTzygys/PJKzSnGGBmLyOiOE
+ kH33dz5lju8Qk8D7iNRoDC0R4iGJENBKuAhQY7ixVFrwRpApaVE667IVYgJYpUTKqBCjcP/tJ+dx
+ WFSI9CZ7Kdivt+r26coU0fJFq+fN0++7aKLXU++azlDRSjYMaYIP8fhMjBCQtO5q73f33ey88wSq
+ y7ZGaZ1t2CcgaIYigfh1n4CxVNsE4nDlJYAyTyBeBN4xx7ikBH7okkr+hzoDCay9BCy+u6IE+EOl
+ JJIwIg9aJXBYH+BE/TC7dF5PhqqxaA0Vx2kf44fh+oQqG60yc3YbUHDJTZVqpKabChirml7b6XQK
+ 0J7cPDRa1Y1NrdqidISLYNXzwbidIzpfHkGrLBWTqkXkXeBLc7SUd6sxbCOjrMJ8LB23krY5VxNg
+ Nun6s5tL3H3nXJb/Qz8CjGFjMU8bjTlnpx2PaRrd4/1X2jDlzjCYnbFYpwWXJepG8+7pQNGkQUaD
+ PJxHRQizw+wvAAAA//8DALbi7fhIBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6599e3a109120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '504'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_967401c83a5425fa1ad2457a6f2d5d50
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/aMBC98yusOSdVArQLuW27B4R2t6BW/dAGRcaZBBfHdm2n5UP898qBJYFS
+ qTlE1rx5M2+ex/seIcBzSAiwFXWs0iK8nzM3FfOfu6+T5/nv7cY+y5H8vMo/fMq/f4HAM9TyBzL3
+ ynrDVKUFOq7kEWYGqUNfNb4bRONoPBiNG6BSOQpPK7ULhyqsuORhP+oPw+gujEcn9kpxhhYS8tIj
+ hJB98/c6ZY4bSEgUvEYqtJaWCMk5iRAwSvgIUGu5dVQ6CFqQKelQeumyFqIDOKVExqgQbePjt++c
+ W7OoENls/Ws8XU8n88dtvHv7MHp8rx/uv01Yp9+x9FY3gopasrNJHfwcT66aEQKSVg33afvUeBdc
+ J1BT1hVK52XDPgVBlyhSSF72KVhHjUshiUdBCijzFJJBFJxyrE9K4aMpqeQ76gWksAhScLjxpBT4
+ bKUkknhIZkalcFgc4KL7oXfrvOiYarCoLRUnt0/xw/n6hCq1UUt7dRtQcMntKjNIbeMKWKf0sbfv
+ 03SA+uLmQRtVaZc5tUbpCw6i0bEetNvZov13J9ApR0WHNRgGN+plOTrKm9U4byOjbIV5S223ktY5
+ Vx2g15n6bzW3ah8n57L8n/ItwBhqh3mmDeacXU7cphn0j/dfaWeXG8Fgt9ZhlRVclmi04c3TgUJn
+ 0ZJGedwfFjH0Dr0/AAAA//8DAD8F4GRIBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de659a22f119120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '527'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_69199f151f2039bcbc5ced2ae55759d1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Person", "Organization",
+ "Location"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xTTY/aMBC951dYcw5VIHSB3Ha3p2qXsmq7pd2gyDiTYOrYlu1IfIj/XjmwJFAq
+ NYfImjdv5s3zeB8QAjyHhABbUccqLXr3L8x9/j6vXtejn1N0H789zp/ifLp7+PU4vofQM9Ryjcy9
+ sz4wVWmBjit5hJlB6tBX7Y/iaBJN4vGkASqVo/C0UrveUPUqLnlvEA2GvWjU649P7JXiDC0k5C0g
+ hJB98/c6ZY4bSEgUvkcqtJaWCMk5iRAwSvgIUGu5dVQ6CFuQKelQeumyFqIDOKVExqgQbePjt++c
+ W7OoENn0bj2dmR/86+Zpwl539OFl92kw59NOv2PprW4EFbVkZ5M6+DmeXDUjBCStGu7z9rnxLrxO
+ oKasK5TOy4Z9CoIuUaSQvO1TsI4al0LSH4cpoMxTSOIoPOVYn5TCF1NSyXfUC0hhEabgcONJKfDZ
+ Skkk/SGZGZXCYXGAi+6H4NZ50THVYFFbKk5un+KH8/UJVWqjlvbqNqDgkttVZpDaxhWwTuljb9+n
+ 6QD1xc2DNqrSLnPqN0pfMI7Gx3rQbmeLDu5OoFOOig4rHoY36mU5Osqb1ThvI6NshXlLbbeS1jlX
+ HSDoTP23mlu1j5NzWf5P+RZgDLXDPNMGc84uJ27TDPrH+6+0s8uNYLBb67DKCi5LNNrw5ulAobNo
+ SaO8PxgWfQgOwR8AAAD//wMArROi/EgEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de659a63d1f9120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '483'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_883507fbee0dc163d46c91192d179749
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBC95ysGX/bSVinZgtoL4taCVisQBySEIteeJl4cj2WPu5RV/x3FDUlX
+ LBIXH96b9/TejJ8KAGG02IBQrWTVeTt//0nxx5TuPle/ljt5f/x6V4b9h+rLfaDtGzHrFbR/QMV/
+ VAtFnbfIhtyFVgElY++6fFuV63JdrctMdKTR9rLG87xarOacwp7m5fL1alC2ZBRGsYFvBQDAU377
+ jE7jT7GB7JORDmOUDYrNOAQgAtkeETJGE1k6FrOJVOQYXY69RWvpFexuOnhIkUHC0QRO0sKonEEk
+ 2IEmd8PQyiPCAdEa18QZ7BNnbYsBgQlatB5OlODRcAvSnbg1rsmIQ9QL2NIjKOlgN/hniknL07vr
+ hAEPKcp+Qy5ZO+DnsbKlxgfax4Ef8YNxJrZ1QBnJ9fUikxeZPRcA3/Nq07NtCR+o81wz/UDXGy5v
+ L3ZiOuZEVquBZGJpJ/x2PXvBrdbI0th4dRqhpGpRT8rpjjJpQ1dEcdX57zAveV96G9f8j/1EKIWe
+ Udc+oDbqeeFpLGD/1f81Nu44BxbxFBm7+mBcg8EHkz9bPuW5+A0AAP//AwBIQefAawMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de659aa3ad69120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '701'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_b74c5b9e0b3a70556175620e16648c06
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW+bMBR9z69A95lUYCcQeOvD1mhbt3VttY8SIcc4xK2xETbqoij/fYKkmGat
+ ZB4Q8jnn3nuu4LCfeB7wAlIP6JYYWtVienlDzZebp8v2590uLuPgxz35dfe4vLulnz9x8DuFWj8y
+ al5UF1RVtWCGK3mEacOIYV3VMMZBEiQ4CXugUgUTnayszRRfzKembdZqGoRoflJuFadMQ+o9TDzP
+ 8/b9vZtRFuwvpF7gv5xUTGtSMkgHkudBo0R3AkRrrg2RBnwLUiUNk93YshViBBilRE6JELbx8dqP
+ nu2iiBA5fW4Xt89/roqlnHG1u2o/Bvp31C5H/Y6ld3U/0KaVdFjQCB/O07NmngeSVL32enfd780/
+ J5CmbCsmTTc27DMQZM1EBunDPgNtSGMySAM/AyaLDFIc+ieK7jgZfP1wn8Hq4I/YGA30ECdn/O/f
+ bs/54czWD2exi2BhBRF2EEQzK1iEDoLFyEMSOQiSeBAg5NABIdsBYQfTCFvTKHYYCcV2JBw4CHAw
+ EoQOa8WhXStGCwcBSqxgjhwEczwSOLxLOBq9q5GL6cianr1nenWAV5/NYfLW82qUBg3btJqIU0yc
+ zg9D7ghV1o1a67MYgQ2XXG/zhhHdf86gjaqPvbs+fQdoX0UW1I2qapMb9cRkVxCH4bEe2Ei1KArR
+ CTXKEGGBOcL+GwXzghnC+1AbcpQSumWFldo8JW3B1QiYjGz/P85btY/WuSxdyluAUlYbVuR1wwpO
+ X1u2tIZ1v5z3aMOa+4FB77RhVb7hsmRN3fAh9CeHyT8AAAD//wMA2t9CL/MGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de659b02f909120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3063'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_54c3a3a1c15ad4566be1c1d275ee5097
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVUW/bRgx+968gDn2UDbt22tlvybaHbMjipe2wtgoM+kRJ7E532h3PjhD4vw8n
+ pbaTZcD0IEj8yI8fqSP1OAJQXKgVKF2j6KY148vftdyixyt7fWu/Lffv3PTzdee72fsf/UxlKcJt
+ v5GW71ET7ZrWkLCzA6w9oVBinb2fT5fT5Xy56IHGFWRSWNXKeD65GEv0Wzeezt5ePEXWjjUFtYKv
+ IwCAx/6eNNqCHtQKptl3S0MhYEVqdXQCUN6ZZFEYAgdBKyo7gdpZIZtk22jMGSDOmY1GY06Jh+vx
+ 7PnUKDRmc7VeXNd3d5df5uX6l/DH4lP8+OfNZ391lm+g7tpeUBmtPjboDD/aVy+SASiLTR970930
+ fcteOqCvYkNWkmz1mCuDWzK5Wn19zFUQ9JKr1TTLFdkiV6v5LHtyCcknV7/9/ClX91muhB6Sa67W
+ 3hVRC9zRjmm/Al7XzhLMFrD2LleH7Ix4Pj8yv50vXlCvbz+8oP5YE1jaP6cET62nkEoAhMCV5ZI1
+ WoHYVh4LArcjD62nHbsYoD8/YQKJbBvZFPB3RMPSAQegB01t6iWaDPYsdYprODbQoJBnNAFioAKk
+ 9i5WtYsygV+pg5JQoqcAbLWJBa3y3Oa5HcNPncWGNVwHg7aAgkNrsAO2QpXHlKp3W/xws4YG2YLG
+ hjz2xsvZO7hiZ1mDrrkdKK9QhHwHhktKkrlJ5QfeUQYGg7CtAKGMxkCBHbgSasJdl2QPRQ8JIHRB
+ qIG2/1wUIEi0NgW3tROXCoGtkzqRGK5qgSTfuP14eNPOFpzkh8mg63ZHHk1qW82GgB5askkVoMCb
+ 5XKZgdQcoKAda4KCDO/IDx03hqzADk0kKJ2H1u3JJ8E+9Fl7RZXHtu6ArNQxMAYJk1wd7g/q2Yk+
+ jF57vj8bVE9lDGieJvjJfjiuBOOq1rtteDHhqmTLod54wtBPmgri2iF3ytNnUPHZNlGtd00rG3F/
+ kU2E89ls4FOnbXdCZ4vFEypO0JyAxcVF9grhpiBB7vfNccVp1DUVp9DTqsNYsDsDRmdl/1vOa9xD
+ 6Wyr/0N/AnSaKCo2raeC9fOST26e0t/gv9yObe4Fq+Hobkq2FfnW83Efjw6jfwAAAP//AwBhXBrv
+ jgYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de659c49b429120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2308'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_80e1cbd522c87cc49514b875018ce098
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/jNgx+z19BCHt0gmRpdpe8tfsBFEOb7NodcHcuAkWmbd5kSZMop74i//sg
+ u5ekXQfMD4bNj/z4kRbppxGAoEKsQKhasmqcHl/+ofjD/bpsv04/h/bnRXN9qfa/3apPy8W9FVmK
+ sLuvqPh71ETZxmlksmaAlUfJmFhn7+bT5XQ5X77rgcYWqFNY5Xg8nyzGHP3OjqezHxfPkbUlhUGs
+ 4MsIAOCpvyeNpsBHsYJp9t3SYAiyQrE6OgEIb3WyCBkCBZaGRXYClTWMJsk2UeszgK3VWyW1PiUe
+ rqez51OjpNbb+7u795tP68VlWBcf49W328f1dbjf+bN8A3XnekFlNOrYoDP8aF+9SgYgjGz62Jvu
+ pu9b9tpB+io2aDjJFk+50HKHOherL0+5CCw952I1zXKBpsjFaj7Lnl1C8snF7a9/5uIhywXjY3LN
+ xcbbIiqGD9gS7ldAm9oahNkFbLzNxSE7I57Pj8yz5fIV9WZ994r6vkYwuH9JCR6dx5BKAAmBKkMl
+ KWkYoqu8LBBsix6cx5ZsDNCfnzCBRLaLpAv4O0pN3AEFwEeFLvVS6gz2xHWKayg20EhGT1IHiAEL
+ 4NrbWNU28gR+xw5KlBw9BiCjdCxwlecmz80YfumMbEjBddDSFFBQcFp2QIax8jKl6t0u3t9soJFk
+ QMkGveyNl7Of4IqsIQWqJjdQXklm9B1oKjFJpiaVH6jFDLQMTKYCCWXUGgrZgS2hRtl2SfZQ9JAA
+ QhcYG3D958IAgaMxKdjVlm0qBHaW60SiqaoZknxt9+PhTVlTUJIfJoOudYte6tS2mjQCPjo0SRVI
+ hh+Wy2UGXFOAAltSCAVqatEPHdcaDUMrdUQorQdn9+iTYB/6rL2iyktXd4CG6xhIBg6TXBweDuLF
+ iT6M3np+OBtUj2UMUj9P8LP9cFwJ2lbO2114NeGiJEOh3nqUoZ80Edi6IXfK02cQ8cU2Ec7bxvGW
+ 7V9oEuF8Nhv4xGnbndDZxcUzypalPgEXi0X2BuG2QJbU75vjilNS1VicQk+rTsaC7BkwOiv733Le
+ 4h5KJ1P9H/oToNJEYbF1HgtSL0s+uXlMf4P/cju2uRcshqO7LclU6J2n4z4eHUb/AAAA//8DAAPm
+ c8KOBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de659d3fc459120-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:09:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2285'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_56e2411bd7fccf1c48a39a613b0a117b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV226jMBCG7/MUyNekAptwuqu27a5UtdvDdk+lQo5xiHeNjbCR2kZ59xUki900
+ lcwFQp75ZuYfDePNzPMAq0DuAbLGmjQtn5/eEk3Z6e+2/vX52/0nuqy/JPXZRZP0l+gO+AMhl38o
+ 0f+pEyKbllPNpNiZSUexpkPUMEFBFmRRGIyGRlaUD1jd6jk6Wcx13y3lPAjhYk+uJSNUgdx7nHme
+ 523G91CjqOgzyL0xznjSUKVwTUE+OXke6CQfTgBWiimNhQa+MRIpNBVD2aLn3DJoKXlJMOcm8e7Z
+ WN+mUZjz8uLu9vzmbPnw85le4ueK3X6/VhevP16tfLvQL+1Y0KoXZGqQZZ/O84NkngcEbkb26uVq
+ 7Jt/6IC7um+o0EPZYFMAjpeUFyB/3BRAadzpAuSBXwAqqgLkKPT3LmrwKcD1+UMBnra+5Y3g5B6i
+ 7MD/5uv9oX8YmfhhlLgAqQFi5ADEkQHS0AFILQ1Z7ABkyQRA6JABQpMBIgfREBnRMHEoCSamJBQ4
+ ACiwgNChrSg0bUUwdQBgZoAFdAAWyAIcZgnF1qzGLqJjIzp6J/rIdEeW6MhFQ2RpiGKH0YhiMxpR
+ 4gIkFpAGDsD4D+yBj8b7aQve7Irt7Nj3k7UCO7rqFeb73bg/307Llsu67eRSHexOsGKCqXXZUazG
+ HQaUlu0u95BnzAD6N3satJ1sWl1q+ZeKISAKw108YO4RY4VJurdqqTE3hkWa+UcClhXVmI2bfLo8
+ CCZrWhnUXCK4r5i0DDNL9vtyjsXeSWeidglvDITQVtOqbDtaMfJWsnHr6HDPfuQ2tXksGKgXpWlT
+ rpioadd2bLrpZtvZPwAAAP//AwChTZOa6AcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65a257f38dadc-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:10:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4041'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_3cfd1bb2241deabc7926a74b25f6e7e0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '2'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW+bMBR9z69A95lU2AYCvFXTKu2j7aZq2qRSIcc4CauxkW2kRlH++wRJMc1a
+ yTwg5HPOvfdcweGwCAJoaigCYDtqWduJ5fVP1uf0z529Jmj3LLKHDblJjRBfX9L4BsJBodZ/ObOv
+ qium2k5w2yh5gpnm1PKhKlqRKI/yOEYj0Kqai0G27eySXCVL2+u1WkYIJ2flTjWMGyiCx0UQBMFh
+ vA8zypq/QBFE4etJy42hWw7FRAoC0EoMJ0CNaYyl0kLoQKak5XIYW/ZCzACrlKgYFcI1Pl2H2bNb
+ FBWior9xnmTfWisSib/8IA/f6/2n+2w363cqve/GgTa9ZNOCZvh0Xlw0CwKQtB21t/vbcW/hJYHq
+ bd9yaYex4VCCoGsuSigeDyUYS7UtoYjCErisSygICs8UM3BKuPv8q4SnYzhjEzzREckv+D/uHy75
+ KHb1UbzyEWROkBIPQRo7QYY8BNnMQ556CPLVJMDYowPGrgMmHqYxcabxymMkvHIjkchDQKKZAHms
+ lSC3VoIzDwHOnSDBHoKEzAQe7xJJZ+9q6mM6dabjj0w/HeHNZ3NcvPf8NEsDzTe9oeIcE+fz45Q7
+ Qm07rdbmIkZg08jG7CrNqRk/ZzBWdafeQ5+xA/RvIgs6rdrOVlY9czkUJAid6oGLVIdihM+oVZYK
+ BySYhO8UrGpuaTOG2pSjjLIdr53U5Snt60bNgMXM9v/jvFf7ZL2RW5/yDmCMd5bXVad53bC3lh1N
+ 8+GX8xFtWvM4MJi9sbytNo3cct3pZgr9xXHxDwAA//8DAA5d1ZHzBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65ae6d8762ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:10:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2715'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_e60726fb5186b973529090c16bd78c34
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevnDZVOk27bZ7QVCEukIcuCEhFLn2S2Jw/Iz9Amyr/XfkJN1k
+ BZV68WHmzWhm5McMQBgttiBUK1l13uZvP6v+doNN+PXhZ/8QPu0e6P3HbrN+p26vv4hVUtD9d1T8
+ pDpT1HmLbMiNtAooGZPr+eaiuCluyrIciI402iRrPOcl5etiXebFdV5cTcKWjMIotvA1AwB4HN4U
+ 0Wn8I7ZQrJ6QDmOUDYrt8QhABLIJETJGE1k6FquZVOQY3ZD6Dq2lV7B73UGLAUE6DQGl3gMTtGj9
+ GdzRb1DSwQ5GM9hTD0xa7t8sTQPWfZSpk+utnfDDMaWlxge6jxN/xGvjTGyrgDKSS4kikxcDe8gA
+ vg1r9CcFhQ/Uea6YfqBLhuflaCfm+Rfk1UQysbQzfjEteOpWaWRpbFysKZRULepZOU8ve21oQWSL
+ zv+G+Z/32Nu45iX2M6EUekZd+YDaqNPC81nA9DmfOztuPAQWcR8Zu6o2rsHggxn/R+2r8lLVl6VG
+ iSI7ZH8BAAD//wMAbZkMeygDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65af9ce102ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:10:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '902'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_254aa27697ed94d9c1145518118b979e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV227bMAyG7/MUAq+dwYccfbd1RYEBbdduLQrURaDIjKNVljQduqRB3n2wk9qJ
+ 2yHzRWCI5MefPyxm0yMEeA4pAbakjpVa9D/fMP/1anx2eWXPvt2/8tXZT397vX71Kr7nEFQVav4L
+ mXur+sRUqQU6ruQuzAxShxU1GifhNJwOBsM6UKocRVVWaNcfqH4cxoN+OOmHo33hUnGGFlLy2COE
+ kE39W0mUOa4gJWHwdlKitbRASJskQsAoUZ0AtZZbR6WDoA0yJR3KSrX0QhwEnFJixqgQbePdszl4
+ b32iQsxu8Orc39nV3EbD2z/+Qi4f7h7O+fNBvx16rWtBCy9Z489BvDlPO80IAUnLuvZyfVnbFnQT
+ qCl8idJVsmGTgaBzFBmkj5sMrKPGZZAm4yADlHkG6XAS7HNslZTB9+sfGTwFGThcVbkZWF5IvuCM
+ Ske8LgzNMYNtcMAbDRreJDnJm3sucvLbU8HdukOaTBpSFJ6Wpg2W3JekpA4Np1XiES4atsqi8fAk
+ 7wt1Ds2aCL7ozhhHowYVJ+Fp15yXksuC6KVyqissnsYNLYlOe4YrhkKgdOSFCt/VlkTTlhZPT9um
+ /qAh3qLp6kqS1rBkOD5NqoYrDNXLNUHplt5yat27aUdR691o1KFenV+8m1ajtPylmvNpC0ef+Lb3
+ 0fvTwc01uPCWiv2V3p9vmx0hVKGNmtvOlYcFl9wuZwapra8eWKf0rnfVp+4A/mi9gDaq1G7m1DPK
+ CpiE0x0P2u3XRqPxflOBU46KNjAYv5UdAWc5OsrrBdTsPEbZEvO2tN191OdcHQR6B2O/l/MRezc6
+ l8X/4NsAY6gd5jNtMOfseOQ2zWD17/CvtMbmWjDYtXVYzhZcFmi04fWChoWeRcNpPkkGEWPQ2/b+
+ AgAA//8DAKX7fCCpBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65b005d222ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:10:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3126'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_7d917991608ce2032bab864fbaed21a2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yU32+bMBDH3/NXWPdMJiAkIby12jTtR9dU1bROpUKOOYhbY3u2mRpF+d8nSAqU
+ dcp4QNZ97z53PrjbTwgBnkNCgG2pY5UW04sbVn+c/6S81Ov5Dylvw+ra3axvg838MwOviVCbR2Tu
+ JeodU5UW6LiSR5kZpA4barCc+St/FUVxK1QqR9GEldpNIzUN/TCa+vHUX5wCt4oztJCQ+wkhhOzb
+ d1OizPEZEuJ7L5YKraUlQtI5EQJGicYC1FpuHZUOvF5kSjqUTdWyFmIgOKVExqgQfeLjsx+c+z5R
+ IbLH5Zeny/X37bfgLuLXoiw/3NVfTXE7yHdE73RbUFFL1vVnoHf2ZJSMEJC0amOvdldt27yxAzVl
+ XaF0TdmwT0HQDYoUkvt9CtZR41JIZksvBZR5Csk89k4+tnFKYX19m8KDl4LD58Y3BctLyQvOqHSk
+ 1qWhOaZw8Aa8RdTx4tlZ3qbmIie/aiq4241IQbjoUME8PMt6v5O04ox8soLKnOTcakF3hEuHpaFN
+ E8cJFv3dg9g/myCKr9akolwSRis0dIyLe1zoB2dxF8GCXHIlOSNsy/WIFvoDWni+uEvqHJodEbwY
+ f5JwuepRq/ONtK6WksuS6K1yyo5os1XQ0SL//C+DzwyFQOnIbyrqpraHA7z6Uw+Tt84PgwE0WNSW
+ itNknuyHbtSFKrVRGzuaXCi45HabGaS2nSCwTulj7iZPmwHqV1sCtFGVdplTTygb4MxfHXnQL7Fe
+ DebxSXXKUdEL0WLpvQHMcnSUt3ukW12Msi3mfWi/wmidczUQJoNr/13OW+zj1bks/wffC4yhdphn
+ 2mDO2esr924GmyX/L7euzW3BYHfWYZUVXJZotOHtnoVCZ8F8lcezKGAMJofJHwAAAP//AwBW4Y6S
+ cAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65b14cd082ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:10:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3151'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_da17d33618ef6518977510ff41ca44d7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yU32+bMBDH3/NXWH4mE78DvLXrIm1Su1STpqmlQo45iDdje7apkkb53ydICinr
+ lPGArPvefe58cLefIYRZiTOE6YZY2ig+v7qn7ZdK3YEffFpu4/slf15a+QL+t7vnFXa6CLn+CdS+
+ Rn2gslEcLJPiKFMNxEJH9RaBm7ppGHm90MgSeBdWKzsP5dx3/XDuJnM3PgVuJKNgcIYeZwghtO/f
+ XYmihC3OkOu8WhowhtSAs8EJIawl7yyYGMOMJcJiZxSpFBZEV7VoOT8TrJS8oITzMfHx2Z+dxz4R
+ zot4p2++Lz4uHxr/ect+kKq1VfLysDrLd0TvVF9Q1Qo69OdMH+zZJBlCWJCmj73d3fZtc6YORNdt
+ A8J2ZeN9jjlZA89x9rjPsbFE2xxnwcLJMYgyx1mUOCcf0znlePX1W46fnBxb2Ha+OTasFqxilAiL
+ WlVrUkKOD84ZLw4HXhJc5K1bxkv0uyWc2d2E5PnxgPIi/yLrZidIwyj6bDgRJSqZUZzsEBMWak26
+ Jk4TxOPdvcS9mCBMbleoIUwgShrQZIpLowHnu+lF3JUXo2smBaOIbpia0HzfH2lBdJF2TawFvUOc
+ VdNP4i/SEZVebqSxrRBM1EhtpJVmQguikRYk4UUabClwDsKiZ8LbrranA37zpx5m752fzgZQQ9Ua
+ wk+TebIfhlHnslZars1kcnHFBDObQgMx/QRhY6U65u7y9Blw+2ZLYKVlo2xh5S8QHTBw0yMPj0ts
+ VL0oOalWWsJHIYwXzjvAogRLWL9HhtVFCd1AOYaOK4y0JZNnwuzs2n+X8x77eHUm6v/BjwKloCyU
+ hdJQMvr2yqObhm7J/8ttaHNfMDY7Y6EpKiZq0Eqzfs/iShVelJZJEHqU4tlh9gcAAP//AwDz1TNg
+ cAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65b29aa9a2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:10:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3026'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c4b9a735979335b9c1087afec5ec98c9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVTY/aMBCG7/wKy+oRqoSEQLhtP9RWKt2ueqqaFRqcIbj1V21nuwjx3ysHmoTs
+ ViwHFPmdeWbGdt4cRoRQXtIloWwHnkkjJjd3rP6SfpDTd9t4I1e/71L8+D1jdfmwv2F0HDL05icy
+ /y/rNdPSCPRcq5PMLILHQI3nSZRHeTqbNYLUJYqQVhk/SfVkGk3TSbSYRNk5cac5Q0eX5MeIEEIO
+ zX9oUZX4SJckGv9bkegcVEiXbRAh1GoRVig4x50H5em4E5lWHlXoWtVC9ASvtVgzEKIrfPodes/d
+ PoEQa7sqP1cfv89/3b69fWCf1Z9vdwZ95nr1Tui9aRra1oq1+9PT2/XloBghVIFsclf7VbNt42EA
+ 2KqWqHxomx4KKmCDoqDLH4eCOg/WF3SZzMcFRVUWdDlbjM8xLgQV9Ovtt4Lejwvq8THEFtTxSvEt
+ Z6A8qU1locSCHsc9Xpa2vEVylYePDE2YDwTZ1FyU5HcNgvv9gLrIW2qeXaUai5LXkkjwaDmEwAta
+ nHVDxy/gvdsrkJyRT06AKknJnRGwJ1x5rCyE9gcFpnHSFphOZ1cLpIvVVyKBK8JAooUhLp12uNn8
+ Ku4mzsgbrhVnhO24GdKyXnPz6zQujUXn+AOSDXiPdk8E3w7PPYm6HpP4BTfJ10pxVRGz014PTyiZ
+ Rx1tMaR9ef/hyT0yqJoWwZNXeZ4PeXl34mmcveheCoHKkwcQdZj1/kgvXq/j6Lnn+55rWNzWDsTZ
+ Ts7rx9afhK6M1Rs3sBu65Yq73doiuOa1p85rc6od6jQVaH1hbdRYLY1fe/0LVQAmUX7i0c55O3Ua
+ xWfVaw+iE2bx2T4vgesSPfDG/Fq/ZcB2WHapne9CXXLdE0a9sZ+28xz7NDpX1UvwncCClWC5NhZL
+ zi5H7sIshi/T/8LabW4apm7vPMr1lqsKrbG8+TjQrVnHs7xcJGnMGB0dR38BAAD//wMA2GFP6iUH
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65b3e287e2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:10:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4283'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_580900adda23a76f04ed4b4a782da54f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVb2+bMBDG3+dTWH5NphDyB/KuVSut06K2m1ZNKlV0MRfi1diubbpkUb77ZJIC
+ YZ1SXiDk5+53dwY/7HqEUJ7RGaFsDY4VWvQv7ln57f7P7frH+DYz8fzz9Vx/S+DmYfnz5p4GPkMt
+ fyFzb1mfmCq0QMeVPMjMIDj01HAaDZJBMhonlVCoDIVPy7Xrj1R/OBiO+oO4P5gcE9eKM7R0Rh57
+ hBCyq+6+RZnhhs7IIHhbKdBayJHO6iBCqFHCr1CwllsH0tGgEZmSDqXvWpZCtASnlFgwEKIpfLh2
+ redmn0CIxXj8fP116eQXvHq5MVDwjXiYTpJNq94BvdVVQ6tSsnp/Wnq9PusUI4RKKKrc+XZebVvQ
+ DQCTlwVK59umu5QKWKJI6exxl1LrwLiUzqJpkFKUWUpn4zg4xlgflNK72+8pfQpS6nDjY1NqeS75
+ ijOQjpQ6N5BhSvdBizcZ1bw4OsvDDUPt5wNBliUXGXkpQXC37VDjpKaGg+lZrDZY8LIgBTg0HHzg
+ CS6cNFOHyeQs72oroeCM3FgBMiMZt1rAlnDpMDfg++8UGIZRXWA4HJ8tMIrnd6QALgmDAg10caNh
+ gxufn/8inJBLriRnhK257tImream52mX4ByaLRF8hYQX2qC1/LX74ofVPh6oUXieal0pJZc50Wvl
+ VPcNRdPmO4qS5EMfkhAoHXkFUSJZKUO0+o2GlBaNpz/t6cn52Pfee35qHXuDq9KCOPrBcX1fG4xQ
+ uTZqaTt+QVdccrteGARbnVtqndKH2r5OVYGWJ95EtVGFdgunnlF6YDRIDjzaWGejhvHwqDrlQDTC
+ KAmDd4CLDB3wyr1qw2TA1pg1qY1xQplx1RJ6rbH/bec99mF0LvOP4BuBeS/AbKENZpydjtyEGfS/
+ lv+F1dtcNUzt1josFisuczTa8Mrd6UovwnGSxdEoZIz29r2/AAAA//8DAP+sEsfmBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65b5a5daa2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '8531'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_e73b50b518cb54302cc72b827755e25b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevnDZVNkmdMleEBfUIoRUpIIQQpHXfklcHD/LfgFW1f47cna7
+ SUWRuPgw82Y0M/JDBiCMFlsQqpesBm/zt7dqlPLd9d37X+On+w+3dfjpPn/c3w2b+mspVklBu3tU
+ /Ki6UDR4i2zIHWkVUDIm1/WmLOqirq5eT8RAGm2SdZ7zKucx7Ci/LC6rvKjyoj6pezIKo9jCtwwA
+ 4GF6U06n8bfYQrF6RAaMUXYotucjABHIJkTIGE1k6VisZlKRY3RT9Gu0ll7AzcsBegwITNCj9bCn
+ 8QK+9JJBSQc3oAlaCgkGJi33b5Z+AdsxytTJjdae8MM5oKXOB9rFE3/GW+NM7JuAMpJLYSKTFxN7
+ yAC+T0OMT7oJH2jw3DD9QJcM19XRTszzL8jNiWRiaWe8XK+ecWs0sjQ2LoYUSqoe9aycV5ejNrQg
+ skXnv8M8533sbVz3P/YzoRR6Rt34gNqop4Xns4Dpc/7r7LzxFFjEfWQcmta4DoMP5vg1Wt+80ruy
+ KK/KthXZIfsDAAD//wMAd1dYKSgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65b90da8c2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '673'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_a045144136db0e1314325e0bb0e16d92
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU3W+bMBB/56+w7hkmEkhTeMs+pFVb01VZ11YlQsYY4s3Ylm2kRlH+9wlIgWSp
+ Fh4s634fdz7O3jkIAcshRkA22JJKcW9xT+rs5pFtb1b+/d1TUXxbzcPJgzGLr6UBt1HI7Dcl9k31
+ gchKcWqZFB1MNMWWNq6TeeBHfhReRS1QyZzyRlYq64WerXUmvak/DT0/9PzooN5IRqiBGL04CCG0
+ a9emTpHTV4iR775FKmoMLinEPQkh0JI3EcDGMGOxsOAOIJHCUtGULmrOR4CVkqcEcz4k7r7daD80
+ C3Oebu71x9dl8ZR/LqLnT8vv1eLnr+dHVY7yddZb1RZU1IL0TRrhfTw+SYYQCFy12tvtbds795SA
+ dVlXVNimbNglwHFGeQLxyy4BY7G2CcS+mwAVeQLxNHIPFNNwElh+eUhgvXdH7GCgT6JT/o+71Sl/
+ 6o/8g/ACQTAbBPPgAsE87AWhf/1/QehHvWAWvZNhvYejZu6dc/v1aEY0LWqD+WF4DvF9P41clkrL
+ zJwMFxRMMLNJNcWm/clgrFRd7iZPmwHqo0EGpWWlbGrlHyoaw2Ay6fxguGwDej09gFZazEeqKHDP
+ +KU5tZi1k95fLoLJhuaDdLhkuM6ZHAHO6NT/VnPOuzs5E+Ul9gNACFWW5qnSNGfk+MQDTdPmLXqP
+ 1ne5LRjM1lhapQUTJdVKs/YlgEKlszwL/OAqKApw9s5fAAAA//8DAL6XLDQXBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65b9729ba2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3461'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_cd2ac465db86ea6d79faac048b63b242
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW+bMBR9z6+w7jNMhK8E3qZ9dVKTrZq6VS0RcmxDaI3NbLM1jfLfJyAFkmXK
+ eEDonnPuufdy7d0EISgoxAjIBhtSVtx+e0PqjF+pnzcv9/zT77u5qa9/0Hd8+fQ9uwKrUcj1IyPm
+ VfWGyLLizBRSdDBRDBvWZJ3OPCdyIn/mtUApKeONLK+M7dumVmtpu47r245vO9FBvZEFYRpi9DBB
+ CKFd+27qFJQ9Q4wc6zVSMq1xziDuSQiBkryJANa60AYLA9YAEikME03pouZ8BBgpeUow54Nx9+xG
+ 38OwMOcpDj4vHl/48k7d/lIz8fzx+v39DcXhyK9Lva3agrJakH5II7yPxydmCIHAZatdbBft7KxT
+ AlZ5XTJhmrJhlwDHa8YTiB92CWiDlUkgdqwEmKAJxG5kHSi64SSw/HCbwGpvjdjeiO75J/yvX76d
+ 8l0v6AXePLos8KLBIQicy4IgmPaC0A0utxC6YS+YzcPzDqs9HA1zPzn3vRrtiGJZrTE/LM8hvu+3
+ kcu8UnKtT5YLskIUepMqhnX7k0EbWXXejU/rAPXRIkOlZFmZ1MgnJpqE3nTa5YPhsA3o3DuARhrM
+ R6rIt87kSykzuGg3vT9cBJMNo4N0OGS4poUcAZNR139Xcy5313kh8v9JPwCEsMowmlaK0YIcdzzQ
+ FGvuon/R+im3BYPeasPKNCtEzlSlivYmgKxKA7r2HC/0sgwm+8kfAAAA//8DAGmSOOQXBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65bae3d852ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3041'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_53115ea9296723efa5310a192a5d06ab
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW+bMBR9z6+w7jOZCCZk8LZNa/eVrl1VaVqpkGMM8WJsyzbSsij/fYKkmGat
+ Gh4Quuece+69+Ho3QQh4CRkCuiaONlpM393Qli9v9eXnn59uKjl/H7cbffPj4qpmX7cQdAq1+s2o
+ e1S9oarRgjmu5AGmhhHHuqyzBQ7TMI0XSQ80qmSik9XaTeOpa81KTaMwiqdhPA3To3qtOGUWMnQ/
+ QQihXf/u6pQl+wMZCoPHSMOsJTWDbCAhBEaJLgLEWm4dkQ4CD1IlHZNd6bIVYgQ4pURBiRDe+PDs
+ Rt9+WESIAvP074dL/E3hZL6hv64vN+LL3VJfjPwOqbe6L6hqJR2GNMKHeHZihhBI0vTa5XbZzy44
+ JRBTtw2TrisbdjkIsmIih+x+l4N1xLgcsjDIgckyhyxKgyPFdpwcrj7e5fCwD0Zs7Omz9JR//f32
+ lB+Fo/w4PkOA516wwGcIFvEgiMO3rwviMB0E8/QMh3nqHZL0jB6S1PewSKLXBYsED4I0ekHwsIcn
+ /3c/ee77YXRsDataS8TxPB/j+2FBhKq1USt7ct6h4pLbdWEYsf25A+uUPnh3Pr0DtE92C7RRjXaF
+ Uxsmu4R4NjvkA7//Hp1Fj6hTjggPxDgKnklYlMwR3m/fsPCU0DUrvdQvPmlLrkbAZNT2/+U8l/vQ
+ Opf1Oek9QCnTjpWFNqzk9GnLnmZYdz++RBvG3BcMdmsda4qKy5oZbXh/O0Gli3m5wiFOcFXBZD/5
+ BwAA//8DALEf0xarBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65bc24b112ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4961'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_620b9879592c746893fb3edadc32577f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUT2+bMBS/51NY7wwTYEgKtx2madKyda3WQ0qEHGOIV2Mz27SNonz3CkiBZKky
+ Dpb1fn/e8+PZ+xlCwHNIENAtsbSqhfv5F23kSq+sXni3zSuvFl89/Pzy8Fzt5vfgtAq1+cOofVd9
+ oqqqBbNcyR6mmhHLWld/gb3Yi8MbvwMqlTPRysrauqFrG71RbuAFoeuFrhcf1VvFKTOQoMcZQgjt
+ u7WtU+bsFRLkOe+RihlDSgbJQEIItBJtBIgx3FgiLTgjSJW0TLaly0aICWCVEhklQoyJ+28/2Y/N
+ IkJkdFlFT3fke7ANX6K7mL7E6m/x8G01yddb7+quoKKRdGjSBB/iyVkyhECSqtMud8uud845geiy
+ qZi0bdmwT0GQDRMpJI/7FIwl2qaQeE4KTOYpJEHsHCmm5aTw48vvFNYHZ8LGI90P/DP+7c/7c74f
+ BKM/Dq8LAhwNArzwrgvwwh8EkR9cF0Q+HgTzjwTrA5w08zC7tF9PZkSzojFEHIfnGD8M0yhUWWu1
+ MWfDBQWX3GwzzYjpfjIYq+o+d5unywDNySBDrVVV28yqJyZbQ+z7vR+Ml21Eb4IjaJUlYqKKsXPB
+ L8uZJbyb9OFyUUK3LB+l4yUjTc7VBJhNTv1vNZe8+5NzWf6P/QhQymrL8qzWLOf09MQjTbP2LfqI
+ NnS5KxjMzlhWZQWXJdO15t1LAEWdRfkGe3iOiwJmh9kbAAAA//8DAH27EXoXBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65be2bf4e2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:23 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2501'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_97587768888d41aef08f5d92edc6d116
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUW2+bMBR+z6+wzjOZCBACvHXTpk1Tu01tV02lQo45JLTG9myzNYvy3ydIimmW
+ qeUBWee7nIuOvZ0QAnUJGQG2ppY1ik/PvrH25+OH38kNY2//hLM5l7+um8ub5cNVmIDXKeTyHpl9
+ Ur1hslEcbS3FHmYaqcXOdbYI/dRPoyTqgUaWyDvZStlpNLWtXspp4AfR1I+mfnpQr2XN0EBGbieE
+ ELLt/12dosRHyIjvPUUaNIauELKBRAhoybsIUGNqY6mw4DmQSWFRdKWLlvMRYKXkBaOcu8T7bzs6
+ u2FRzgujPp39OF/P6LvL8vP3+/Ri1mLyoD6O8u2tN6ovqGoFG4Y0wod4dpSMEBC06bXnm/N+dt4x
+ gepV26CwXdmwzYHTJfIcstttDsZSbXPIfC8HFGUOWZB6B4rpODlcvL/O4W7njdjhiB5GR/yvXy6P
+ +UE4HwRhkr4sCFOXYR7HLwvm8WIQxMH85RbiIHaC5DWCxAkWSXC6pLsdPJv+bnLqfDdaKo1Vayg/
+ bNshvhvWl8uV0nJpjrYRqlrUZl1opKbfCjBWqn3uLk+fAdpnmw9Ky0bZwsoHFJ1hOJvt/cDdToem
+ iwNopaXcxSM/8U74FSVaWvdXY7iNjLI1lk7qbiVty1qOgMmo63+rOeW977wWq9fYO4AxVBbLQmks
+ a/a8Y0fT2D1e/6MNU+4LBrMxFpuiqsUKtdJ1/3RApYp5uQz9MA6rCia7yV8AAAD//wMAWrSuHEgF
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65bf36adb2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3676'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ab24558527ecf26100bbd938fe8f748c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwU7cMBS85ytefellUyUhlGUvFeIAqEhVe62qyLFfEoPjZ9kv0BXaf6+cXTaL
+ SqVefJh5M5559ksGIIwWGxBqkKxGb/Or72qaftw8Xrfu9tpW99/81+f2vDt/erqvUKySgtoHVPyq
+ +qRo9BbZkNvTKqBkTK7lxVlxWVzW6/VMjKTRJlnvOa8pH40zeVVUdV5c5OX6oB7IKIxiAz8zAICX
+ +Uw5ncbfYgPF6hUZMUbZo9gchwBEIJsQIWM0kaVjsVpIRY7RzdHvPo7wMEUGCanAxBjAB+qDHFfQ
+ TgxpYMCAIJ2GgFJvgQkGtB62NH2AW3oGJR3cwf6qhAKTltsvp1cG7KYoU203WXvAd8cOlnofqI0H
+ /oh3xpk4NAFlJJfyRiYvZnaXAfyadzW9qS98oNFzw/SILhmW9d5OLC+0kFV1IJlY2gU/+7x6x63R
+ yNLYeLJroaQaUC/K5WHkpA2dENlJ57/DvOe9721c/z/2C6EUekbd+IDaqLeFl7GA6f/+a+y44zmw
+ iNvIODadcT0GH8z+93S+KVpZ6LKqu1Jku+wPAAAA//8DAJtELDZLAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65c0b6e8d2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '512'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_b8b783cc44eb25b11867f402508b9c89
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVbW/bNhD+7l9xIPZRLmzZiWV/a9oO3bKs6doOK+rAoKmTdCtFMnyxLQT57wPl
+ xHKUDI4+CBLv7rnnXnh3NwBglLMFMFFxL2ojh28/ixAuTLGe3Zo/cN38/HVnL7/76UdcywlLooVe
+ /4vCP1q9Ebo2Ej1ptRcLi9xjRB3PJqP5aD7NslZQ6xxlNCuNH071sCZFw3SUToej2XCcPVhXmgQ6
+ toAfAwCAu/Ydeaocd2wBo+TxpEbneIlscVACYFbLeMK4c+Q8V54lnVBo5VFF6ipIeSTwWsuV4FJ2
+ jvfP3dF3lywu5erdh78v3m3Lb5cbzN//fjv553tW293H7ZG/PXRjWkJFUOKQpCP54XzRcwbAFK9b
+ 26vmqs1d0lfgtgw1Kh9ps7slk3yNcskWP+6WzHlu/ZItRsmSocqXbDHJkgcVF3WW7M8P35bsJlky
+ j7uoumTXVudBePgLN4TbBdB1pRXCeArXVi/ZfXIEPJkfkMejPvT1py896K8VgsLtU0iwaCy6GAJw
+ cFQqKkhw5SGY0vIcQW/QgrG4IR0ctD3k3vSYjEdHVM7Gr6KyDiRzuA1ckm+AHOBOoImV4DKBLfkq
+ eq0p1FBzj5a4dBAc5uArq0NZ6eCf8ThLOx6z6clsX2IDBXIfLDogJWTIcdHHnJ0dMNPR7CTm+0bx
+ mgT85iRXOeTkjOQNkPJYWh7j6zlI29o9OJikJx1Ms6trqDkpELxGy/twk0mXg+z8JNzb8TlckFYk
+ QFRk+tFns45cerqyF9x7tA1IKjAWlerYXo42mIDkzpMqgUMRpIScN6ALqJBvmljYfjHTtCtmOpu/
+ qqn2GQHXOI81mPYyoQPng1LRtam017HUsNa+ihQklZWHWCmpt8P9n9Aqp1ipZ42eZke3eXr6zn3a
+ oOUy9nNFEgF3BlVMBnAPv8zn8wR8RQ5y3JBAyFHSBu3+KkiJysOGy4BQaAtGb9HGPFnX0m1DKS03
+ VQOofBUccedbxjf37Mmguh+89H1zNH8tFsFx+TCYH87vD5Ne6tJYvXa9wc0KUuSqlUXu2gHKnNdm
+ 7zv6aT2w8GRJMGN1bfzK65+oIuBkNN/jsW6RddL0/FHqteeyE5zNsuQFwFWOnlO7Rg6bS3BRYd6Z
+ dhuMh5z0kWBwFPZzOi9h70MnVb4GvhOIOOowXxmLOYmnIXdqFuOi/z+1Q5pbwmzf86uCVInWWGrX
+ LCvMar6eZevzsThL2eB+8B8AAAD//wMAkEvnxHQIAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65c102bba2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4944'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_84ad41bbc34e843aa1ae87d921894a07
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227bRhB911cMFn2kDOpqSW827DRF4kRxWhRFaAir5ZCcdrm73Yts2vC/F0s5
+ osw4UPlAUDszZ86ZHc08DQAY5WwFTFTci9rI4cUXER4f3/+5/HB7Nfv0BQt6vH7/bqEn6cPSsiRG
+ 6O3fKPz3qDOhayPRk1Z7s7DIPUbU0fkkXabL6XLSGmqdo4xhpfHDqR7WpGg4TsfTYXo+HC1eoitN
+ Ah1bwbcBAMBT+448VY4PbAVp8v2kRud4iWx1cAJgVst4wrhz5DxXniWdUWjlUUXqKkh5ZPBay43g
+ UnaJ98/T0XdXLC7l5vrruvzVzh+vPlaj68v0r6uLq4/vbkN5lG8P3ZiWUBGUOBTpyH44X/WSATDF
+ 6zb2prlpa5f0HbgtQ43KR9rsKWOSb1FmbPXtKWPOc+sztkqTjKHKM7aaJy8eLrpk7NP1Hxm7SzLm
+ 8SF6ZmxtdR6Eh1vcEd5n7Dk5Ajo/AI1OI9G60gphNIW11T2g0eKAtJj0kNafv/aQfq8QFN7DK0Sw
+ aCy6KB04OCoVFSS48hBMaXmOoHdowVjckQ4O2t5zZxDBtoFkDv8GLsk3QA7wQaCJd8BlAvfkqxhX
+ U6ih5h4tcekgOMzBV1aHstLBn/UkLWZdcdLpyep8wAYK5D5YdEBKyJDjql+ldN5hTk5X/KpRvCYB
+ vznJVQ45OSN5A6Q8lpZHef0Ek+4eRrPTpKeLmzXUnBQIXqPlfbjZEd/pabiL0RwuSSsSICoyfbRp
+ hzYej052ySX3Hm0DkgqMd0p17A9HO0xAcudJlcChCFJCzhvQBVTId028131X7DWBa5zHGkz7R0AH
+ zgelYrCptNfxsmCrfRVBJJWVh1hrqe+H+19Cq5xirV2/Q8bjSSdoMT0p6PMOLZexISuSCPhgUEU5
+ wD38slwuE/AVOchxRwIhR0k7tPtelhKVhx2XAaHQFoy+RxuVWtfSbaWUlpuqAVS+Co648y3ju2f2
+ asY8D976vjsanRaL4Lh8makv58+HIS11aazeut7MZQUpctXGInft7GPOa7PPHfO0GVh4Nd+Zsbo2
+ fuP1P6gi4CRd7vFYt4M663g2ebF67bnsDLP5OHkDcJOj59RugMPSEVxUmHeh3fLhISd9ZBgcyf6R
+ zlvYe+mkyv8D3xlEnFWYb4zFnMRryZ2bxbijf+Z2KHNLmO17flOQKtEaS+2GZIXZLLfni+18JGZj
+ Nnge/AcAAP//AwCNxNIgLwgAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65c3018c32ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:37 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3975'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_b9b38624e6faeb3b90cbd5ad125cf083
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVUW/bNhB+9684EHuUC8txEstv6ZBh2NY1bdYOWBUYNHWSbqVIljzJMQz/94Gy
+ azlOhsYPhsS7+77vPpKn7QhAUCEWIFQtWTVOj28+qG52+/e3f377/OvP6f26IY2hvMHp3OhbkcQK
+ u/oXFX+veqNs4zQyWbMPK4+SMaKm1xeTbJLNsnkfaGyBOpZVjsczO27I0Hg6mc7Gk+txOj9U15YU
+ BrGALyMAgG3/H3WaAh/FAibJ95UGQ5AVisUxCUB4q+OKkCFQYGlYJENQWcNoonTTan0SYGv1Ukmt
+ B+L9b3vyPJgltV5mv3xU5tPvxtzffCa/4Wqm/+Cv9dsTvj30xvWCytaoo0kn8eP64owMQBjZ9LXv
+ Nu9675LzBOmrtkHDUbbY5kLLFepcLL5scxFYes7FYpLkAk2Ri8XFPDmkhJiTiz9vP+XiIckF42NM
+ zcWdt0WrGD5iR7heAN3V1iCkM7jzNhe75AT4Ijsip5Nz6Lv392fQf9UIBtdPIcGj8xhiCyAhUGWo
+ JCUNQ+sqLwsE26EH57Ej2wboz1B4c6YknZxIuUxfJWXVki7gWys18QYoAD4qdHEnpE5gTVxH1oba
+ BhrJ6EnqAG3AArj2tq1q2/IzHZfTQUd2/UMdbyUz+g1oKjFKoCaaEajDBLQMTKYCCWWrNRRyA7aE
+ GmW3iTKeUWfzI/X0avYqC5Rs0EsIm8DYgOu3HgMEbo2J1K62bAOQgZXlOkrQVNUM0hSg7Xq8f1PW
+ FBR9e7Yt06vL4eyl2Q8P3/sOvdTR/Zo0Aj46NNEMkAw/ZVmWANcUoMCOFEKBmjr0+43TGg1DJ3WL
+ UFoPzq7RR5986OX2rVReunoDaLhuA8nAveKHnXhyrXajl54fTqaFx7INUh/GyGF9d5xL2lbO21U4
+ GzOiJEOhXnqUob/uIrB1e+7I0zOI9slIE87bxvGS7Vc0EfBiku3xxDB2h2g6vzxE2bLUQ2CWzZIX
+ AJcFsqR+6B3nrJKqxmIoHeatbAuyJ4HRSdvP5byEvW+dTPUa+CGg4sXEYuk8FqSetjykeYyfpf9L
+ O9rcCxb7M78syVTonaf+oyBKt8xW1/PVVaoup2K0G/0HAAD//wMAc0tCgiIHAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65c49fd162ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3222'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_db3fd948d9bdde59aa29931df84a02ee
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xW227bOBB991cMiH2UC8nXyG9NtgWCRVr3kt0FqsCgqZE0G4rkkpQTN8i/Lyin
+ lqJk4fjBkDgzZw7PDDl6GAEwytkKmKi4F7WR4/dfxG7ZfFkourhaX+uP/mv11+Wn2fnPxP68Z1GI
+ 0Nt/UPhfUe+Ero1ET1odzMIi9xhQk+U0TuN0HietodY5yhBWGj+e6XFNisaTeDIbx8txcvYUXWkS
+ 6NgKfowAAB7a/8BT5XjPVhBHv1ZqdI6XyFZHJwBmtQwrjDtHznPlWdQZhVYeVaCuGil7Bq+13Agu
+ ZZf48HvoPXdicSk3l/rP2wtzXn+4uL66Xf89XZiPxhL/1st3gN6bllDRKHEUqWc/rq8GyQCY4nUb
+ e7W/arWLhg7clk2Nygfa7CFjkm9RZmz14yFjznPrM7aKo4yhyjO2WkRPHi64ZOzTh+uM3UQZ83gf
+ PDO2tjpvhM/YY9RDWB4RkslJiK+4I7wbICTTDmJ+EoLWlVY4hFh0EOlJiGQ2CJ90Mkymb9FhGD87
+ xk+Xg/j152+D+O8VgsI7OOwEkhmsrQaLxqIL5QIOjkpFBQmuPDSmtDxH0Du0YCzuSDcO2vPi3g2I
+ TM+OROazNxHZNiRz+LfhkvweyAHeCzSh57iM4I58FXLW1NRQc4+WuHTQOMzBV1Y3ZaUbP2Qxn3dd
+ lZ5k8QfuoUDuG4sOSAnZ5LgaNllXoCSOT1bo973iNQm4dJKrHHJyRvI9kPJYWh42N+yfOOm18ekW
+ mJ1draHmpEDwGi0fwvUaIonPTsK9TxZwTlqRAFGReUEu7ZE7Leg59x7tHiQVGCpKdegsRzuMQHLn
+ SZXAoWikhJzvQRdQId/tQ1XfvTiaPeGX0zd11EERcHvnsQbTXhrowPlGqZDaVNrrUGnYal8FCpLK
+ ykOolNR348Ob0CqnUKkXPZ4se+Kmp+X4vEPLZWjmiiQC3htUQQzgHn5L0zQCX5GDHHckEHKUtEN7
+ OAdSovKw47JBKLQFo+/QBp2sa+m2WyktN9UeUPmqccSdbxnfPLJn9/Hj6LXnm96YsVg0jsun+fO0
+ /ngcaFKXxuqtG8wnVpAiV20sctfOCea8NofcIU+bgTXPZiEzVtfGb7y+RRUAp3F6wGPdvO5Zp7Mn
+ q9eey86wmE2jVwA3OXpO7bQ8DmjBRYV5F9oNat7kpHuGUW/bL+m8hn3YOqnyLfCdQYR7DvONsZiT
+ eL7lzs1i+J75P7ejzC1hduj5TUGqRGsstV8TrDCbdLs82y4SMZ+w0ePoPwAAAP//AwDSh7NbWwkA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65c5f7cd72ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6311'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_b1756d42e59da456ac3f13c36e0ee8d9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTY/bNhC9+1cMiB7lhb+19q1tgBYt0mw2RYMkWhg0NZImpUguOZJtLPzfC8qO
+ 5XW22OggSHwzb948kaOnAYCgXKxAqEqyqp0e/vxetW8Wf6Qfy8VXGYpP93/+/rmYFebjb593rUhi
+ ht18RcXfsm6UrZ1GJmuOsPIoGSPrOJ2OlqPlfJR2QG1z1DGtdDyc2WFNhoaT0WQ2HKXD8e0pu7Kk
+ MIgVfBkAADx196jT5LgTKxgl31ZqDEGWKFbnIADhrY4rQoZAgaVhkfSgsobRROmm0foCYGv1Wkmt
+ +8LH6+niuTdLar2ekuLb+5y3nx7b+/ePv9Z/vVnYD/+kF/WO1HvXCSoao84mXeDn9dVVMQBhZN3l
+ vt2/7bxLrgOkL5saDUfZ4ikTWm5QZ2L15SkTgaXnTKxGSSbQ5JlYTW+TU0iIMZm4e/chEw9JJhh3
+ MTQTd97mjWK4x5ZwuwK6q6xBGM/gzttMHJIL4lnPPJ6PX6X+u0IwuH1OCR6dxxBbAAmBSkMFKWkY
+ Gld6mSPYFj04jy3ZJkC3h8INRLJNQzqHx0Zq4j1QANwpdNFLqRPYElcxr6amhloyepI6QBMwB668
+ bcrKNnxz1dN4Pu2bSmevNvWLZEa/B00FRglUx3YCtZiAloHJlCChaLSGXO7BFlChbPdRxnel08W5
+ 9GQ6/yE/lazRSwj7wFiD6z4eBgjcGBNLu8qyDUAGNparKEFTWTFIk4O22+HxTVmTU/QtXGuaTNN+
+ 94xGr2p616KXOrpfkUbAnUMTzQDJ8NNyuUyAKwqQY0sKIUdNLfrjh9MaDUMrdYNQWA/ObtFHn3zo
+ 5HatlF66ag9ouGoCycCd4oeDeHYwDoOXnh8uzrvHoglSnwbBaf1wnizals7bTbgaFKIgQ6Fae5Sh
+ O7AisHXH2rFOV0E0z4aScN7Wjtds/0UTCaej5ZFP9IOzR8eL9ISyZal7YJYukhcI1zmypG5snSel
+ kqrCvE/tJ6ZscrIXwOCi7e/lvMR9bJ1M+SP0PaDiwcR87TzmpJ633Id5jD+W/ws729wJFsc9vy7I
+ lOidp26si8Ktl5v0drMYq/lEDA6D/wAAAP//AwDoy56I5AYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65c87e9102ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2984'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_9ac428c33a40155d2499c28783a8900a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vOQiG3ZsIbEvQXqy+wDSosilKAyaXEtMKS5Bruwagf+9EK1I
+ DpoCufAwszOY2eVzBiCMFksQqpKsam9H99/UfvVw7w/fj5++fjaP5ubLx4fb2x/F/HpSiLxV0PYJ
+ Fb+oxopqb5ENuTOtAkrG1nV6M5ssJotiOk1ETRptKys9j2bjYsRN2NJoMr3ujFVFRmEUS/iZAQA8
+ p7fN6DT+EUuY5C9IjTHKEsWyHwIQgWyLCBmjiSwdi3wgFTlGl2Kv0Fr6AOurGp6ayCBhbwI30kKv
+ zCESrEGTu2Ko5B5hh2iNK2MO24aTtsKAwAQVWg9HauBguALpjlwZVybEIeoxrOgASjpYd/6JYtLy
+ eHeZMOCuibLdkGus7fBTX9lS6QNtY8f3+M44E6tNQBnJtfUikxeJPWUAv9Jqm1fbEj5Q7XnD9Btd
+ azidn+3EcMyBnBUdycTSDvh8kb/httHI0th4cRqhpKpQD8rhjrLRhi6I7KLzv2He8j73Nq58j/1A
+ KIWeUW98QG3U68LDWMD2q/9vrN9xCiziMTLWm51xJQYfTPps6ZSn7C8AAAD//wMAjuDMl2sDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65c9bb8572ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '860'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_59b84c32ddb217242e8be158dc67852a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwW6jMBC98xXWnEkFJKQNtx42UlfbXVXbqIcSIccY4q6xLds0TaP8+8pAgaTZ
+ VTkga95782aGMQcPIWA5JAjIFltSKT65fSCvd8uf3/Onm9X2aRe/yvfH3zfL/UsR/FiB7xRy80KJ
+ /VBdEVkpTi2TooWJpthSlzW8ngaLYBGHUQNUMqfcyUplJ9OreGJrvZGTIIziTrmVjFADCXr2EELo
+ 0LxdjSKnb5CgwP+IVNQYXFJIehJCoCV3EcDGMGOxsOAPIJHCUuHKFjXnI8BKyTOCOR+M2+cwOg+D
+ wpxns9XDu6qW0bdlvL973Mx3eLcTt2/FyK9NvVdNQUUtSD+gEd7HkzMzhEDgqtHe7++bufnnBKzL
+ uqLCurLhkALHG8pTSJ4PKRiLtU0hCfwUqMhTSKKF31GM46TwSzlnFKawPvojSUNsNYvwsiY61zTE
+ VhPOgsui6bmoZXbVBdEXrVpmp4rn/2lqfYSTkR29S+f1aBM0LWqDebciXfzY7xyXpdJyY85WCAom
+ mNlmmmLTfEowVqrW2/k0DlCfrCsoLStlMyv/UOESTsN5mw+G6zSg1zcdaKXFfKRazPwL+bKcWsya
+ fe6vEMFkS/NBOlwlXOdMjgBv1PXnai7lbjtnovxK+gEghCpL80xpmjNy2vFA09T9bf5F66fcFAxm
+ byytsoKJkmqlWX/fvaP3FwAA//8DAL89qqXuBAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65ca2b83f2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1220'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_45415aa22a6abd6ca23a3623eb0e8b63
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU72+bMBD9zl9h3WdSQdK0hW/7oWpq1WVpu6lTiZBjLsSLsZFtqqVR/vfJQIFk
+ 2VQ+IOvee/fujjM7jxDgGcQE2JpaVpRi9GHOXm5s8HU+i+Yb9eN6Pnu4fdL3tz+/vH68Ad8p1PIX
+ MvumOmOqKAVarmQDM43UossaXk6CKIim4aQGCpWhcLK8tKPJ2XRkK71UoyAcT1vlWnGGBmLy7BFC
+ yK5+uxplhr8hJoH/FinQGJojxB2JENBKuAhQY7ixVFrwe5ApaVG6smUlxACwSomUUSF64+bZDc79
+ oKgQ6ev42/fsHoP8art9eXzarD4/WPPpuhr4Nam3ZV3QqpKsG9AA7+LxkRkhIGlRa++2d/Xc/GMC
+ 1XlVoLSubNglIOgSRQLx8y4BY6m2CcSBnwDKLIF4HPktxThOArPSOZMwgcXeH0hqYqOJwtOa8bGm
+ Jjaa8Dw4LZocixpmW10wfqdVw2xV04v/NLXYw8HI9t6p82KwCRpXlaGiXZE2vu92Tqi81GppjlYI
+ Vlxys041UlN/SjBWlY2386kdoDpYVyi1KkqbWrVB6RJOwosmH/TXqUcvr1rQKkvFQBWd+yfypRla
+ yut97q4Qo2yNWS/trxKtMq4GgDfo+u9qTuVuOucyf0/6HmAMS4tZWmrMODvsuKdpdH+bf9G6KdcF
+ g9kai0W64jJHXWre3Xdv7/0BAAD//wMARXza6e4EAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65cac4aef2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1152'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_7f4e4a994df632b0452d755352efd061
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW+bMBB+51dY90wqCCEdvOWlq7RGTStN2loi5BgHvBob2WZaF+W/TzYUSJZN
+ 4QFZ933f3efTnQ8eQsAKSBGQChtSN3y2eiI/H76ph7sv3+e7/W/Nn3eLt+dNuHzRn5/Atwq5+0GJ
+ +VDdEFk3nBomRQcTRbGhNmt4GwVJkMRh7IBaFpRbWdmYWXQTz0yrdnIWhPO4V1aSEaohRa8eQggd
+ 3N96FAX9BSkK/I9ITbXGJYV0ICEESnIbAaw10wYLA/4IEikMFda2aDmfAEZKnhPM+Vi4+w6T89go
+ zHl+/1Wv2sV9vNZVUH3a3D6u+B3fED2p16V+b5yhfSvI0KAJPsTTs2IIgcC1067f165v/jkBq7Kt
+ qTDWNhwy4HhHeQbp6yEDbbAyGaSBnwEVRQbpPPF7iracDB4bWxmFGWyP/kTiiJ0mCS9r5ucaR+w0
+ 4SK4LIrORR2zdxfMr7XnmL0qXl5psGN2qigK/lNre4STRh+9S+ftZH4U3bca836w+vhxmFQuy0bJ
+ nT4bPNgzwXSVK4q1GwDQRjZdbVvHVYD2ZMihUbJuTG7kGxU2YRQuu3wwLuGIJlEPGmkwH+OLIPEv
+ 5MsLajBzWzAsHsGkosUoHRcQtwWTE8Cb3PpvN5dydzdnorwm/QgQQhtDi7xRtGDk9MYjTVH7Rv2L
+ NnTZGQb9rg2t8z0TJVWNYsMr4R29PwAAAP//AwADMW5MJAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65cb48bf02ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1399'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_362d8dd6b62cb34e220f0e2c33363903
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwY6bMBC95yusOZMVhJAKbtuq7UpVlFarttIuEXKMAW+NTW3TbhTl3ysbAiRN
+ q3BA1rz3Zp5HMz7MEAKWQ4KAVNiQuuHz+y/k13r38C7Sv5/Ud/H1ZdVq87l6W5Hi5xI8q5C7F0rM
+ SXVHZN1wapgUHUwUxYbarMGb0I/9OApWDqhlTrmVlY2Zh3fR3LRqJ+d+sIh6ZSUZoRoS9DxDCKGD
+ +1uPIqevkCDfO0VqqjUuKSQDCSFQktsIYK2ZNlgY8EaQSGGosLZFy/kEMFLyjGDOx8Ldd5icx0Zh
+ zrP7TfB+//CJRMHr08dvj+vHYhN9kOG0Xpd63zhDRSvI0KAJPsSTi2IIgcC10673a9c375KAVdnW
+ VBhrGw4pcLyjPIXk+ZCCNliZFBLfS4GKPIVkEXs9RVtOCpvGVkZBCtujN5E4YqeJg+uaxaXGETtN
+ sPSvi8JLUcfs3fmLW+05Zq+KVjca7JidKgz9/9TaHuGs0cfZtfN2Mj+KFq3GvB+sPn4cJpXLslFy
+ py8GDwommK4yRbF2AwDayKarbeu4CtCeDTk0StaNyYz8QYVNGHab5ab7tIQjGoc9aKTBfIwv/di7
+ ki/LqcHMbcGweASTiuajdFxA3OZMToDZ5NZ/u7mWu7s5E+Ut6UeAENoYmmeNojkj5zceaYraN+pf
+ tKHLzjDovTa0zgomSqoaxYZXYnac/QEAAP//AwBsrjJ6JAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65cbf78082ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:11:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1823'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_7d24ae1035f3fa311d829a9602ad9e55
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwY6bMBC95yusOZMVhCRbuKWp2kTb1W6lvVRLhBwzId4aG9mmbRTl3ysDCyRN
+ q3BA1rz35s2Mxj6OCAGeQUyA7allRSnGi2/s59NH/LT4nq9eUN0vH57x12IWrgr5tgbPKdT2DZl9
+ V90xVZQCLVeygZlGatFlDe5DP/KjWfChBgqVoXCyvLTj8G42tpXeqrEfTGatcq84QwMxeR0RQsix
+ /rsaZYa/ISa+9x4p0BiaI8QdiRDQSrgIUGO4sVRa8HqQKWlRurJlJcQAsEqJlFEheuPmOw7O/aCo
+ EOnDRNP1S5btP6+f/cVq/uV+uZwevgYDvyb1oawL2lWSdQMa4F08vjAjBCQtau3j4bGem3dJoDqv
+ CpTWlQ3HBATdokggfj0mYCzVNoHY9xJAmSUQTyKvpRjHSeCpdM4kSGBz8gaSmthoouC6ZnKpqYmN
+ Jpj610XhpahhttX5kxutGmarms1vbapmNqow9P/jtTnB2aBPo2vnzWB/NO4qQ0W7WG381G2qUHmp
+ 1dZcLB7suORmn2qkpl4AMFaVjbfzqR2gOltyKLUqSpta9QOlSxgG8yYf9JewR6OwBa2yVPTxqR95
+ V/KlGVrK61vQXTxG2R6zXtpfQFplXA2A0aDrv6u5lrvpnMv8lvQ9wBiWFrO01Jhxdt5xT9Po3qh/
+ 0bop1wWDORiLRbrjMkddat69EqPT6A8AAAD//wMAHxhpdSQFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65ccc5e292ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1379'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_179d3a0f7d9c4eb1212a97f9c7453919
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWrcMBS8+ytedeklDvZms9vdS8mp2VBaUhoolGIU6a2tVtYT0nPbJey/F9nu
+ 2ktS6EWHmTfDzKCnDEAYLbYgVCNZtd7mN/fq5/1DKduHXfhU3n1Yre+++Bu/eP9u/fGzuEgKevyO
+ iv+qLhW13iIbcgOtAkrG5Fqur4pNsbleFD3RkkabZLXnfEn5olgs8+JNXqxGYUNGYRRb+JoBADz1
+ b4roNP4WW+hteqTFGGWNYns6AhCBbEKEjNFElo7FxUQqcoyuT32L1tIr2L1uocGAIJ2GgFIfgAka
+ tP4SbukXKOlgB4MZHKgDJi0Pb+emAfddlKmT66wd8eMppaXaB3qMI3/C98aZ2FQBZSSXEkUmL3r2
+ mAF869fozgoKH6j1XDH9QJcMy+VgJ6b5Z+RqJJlY2gm/Ghc8d6s0sjQ2ztYUSqoG9aScppedNjQj
+ slnn52Fe8h56G1f/j/1EKIWeUVc+oDbqvPB0FjB9zn+dnTbuA4t4iIxttTeuxuCDGf7H3lcbLK+V
+ 0iu5FNkx+wMAAP//AwB7QqCPKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65cd5e8192ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '378'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_9bda6e7f2b92a8d645913a5dac8c2468
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXU/rRhB9z68YrfqYQJzYQCIUidurlqpFF9reD+kaRct6Yg+sd7f74eCL+O/V
+ OhAnKZXIQ5TszJxzZnZ8/DQAYFSwOTBRcS9qI0cXN6K5OdUP99nD6bfmwie/fM1+fPlYV5//+vmK
+ DWOFvrtH4V+rjoSujURPWm3CwiL3GFGT0+l4Np5lk3EXqHWBMpaVxo9SPZqMJ+lofDYan7wUVpoE
+ OjaH7wMAgKfuO0pUBT6yOXQw3UmNzvES2XybBMCslvGEcefIea48G/ZBoZVHFVWrIOVOwGstl4JL
+ 2RNvPk87v/s5cSmX68fPN/7rHyeXX+Sl05fh/tdv7akK4x2+DXRrOkGroMR2Pjvx7fn8gAyAKV53
+ tVftVTe24WECt2WoUfkomz3lTPI7lDmbf3/KmfPc+pzNx8OcoSpyNp/Ohi8pLubk7JOJzJDk7HaY
+ M4+PMT9n51WyuLa6CMLDn9gQrudA15VWCEkK11afH1fJImfPwx2aNNvyJFn2NtHkkMgs/q4QFK73
+ 8cGisehiY8DBUaloRYIrD8GUlhcIukELxmJDOjjolsodQQS7CyQL+CdwSb4FcoCPAjt6LoewJl/F
+ uppCDTX3aIlLB8FhAb6yOpSVDv4IfscWVsh9sOiAlJChwPn5sTnsOjlJtm1P0tO3254eth3kIs/V
+ uaTFx1bxmgT85iRXBRTkjOQtkPJYWh6rz48lvWanZ1fXUHNSIHiNlu/GLpIT+EBakQBRkdmGjiPZ
+ vuhJNu13Ik3ffVcfuPdoW5C0wjhZquMtOWpwCJI7T6oEDqsgJRS8Bb2CCnnTxulu7majGlzrPNZg
+ uhVDB84HpWKxqbTXcd5wp30VQSSVlYc4GqnXo80/oVVBUaM7euNGplm/8OlZ9s6NN4tPDVou44pU
+ JBHw0aCKrQH38NNsNhuCr8hBgQ0JhAIlNWg32yUlKg8NlwFhpS0YvUYbu7auk961VVpuqhZQ+So4
+ 4s5v1d8+s73n+nnw1u/bHbuyuAqOyxcfezl/3hqj1KWx+s4d+BxbkSJXLS1y1/kNc16bDXfk6RhY
+ 2PNUZqyujV96/YAqAk6TdIPHesvvo5P0xZ6Z157LPpBlr2V7gMsCPafOdbdGL7iosOhLe8PnoSC9
+ ExjstP1fOW9hb1onVb4Hvg+I6CBYLI3FgsR+y32axfhK/L+07Zg7wWzzDCxXpEq0xlL3VmIrs0yy
+ WXE2TRMh2OB58C8AAAD//wMAlkvTKp4HAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65cd93b322ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6044'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_442cec00e5727dba8b9468ca80bdab06
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVbW/bNhD+nl9xIPZRTixbebFhGGjaAeuKNNmwBu2qwGDIs3QbRbJ8sSME+e8D
+ 5cRyPBeIPggS7+557rkjj49HAIwkmwITNQ+isWrw7g+x+nrux99yfquoqK7/vry8lu7Lx/b2c2RZ
+ ijD3/6AIL1HHwjRWYSCjN2bhkAdMqPn5eDgZTk5H552hMRJVCqtsGBRmMBqOisHwYjA8ew6sDQn0
+ bArfjwAAHrt3SlFLfGBTGGYvKw16zytk060TAHNGpRXGvScfuA4s643C6IA6Za2jUjuGYIxaCK5U
+ T7x5Hne++zpxpRbvf729fL+uvnxaofzw+4/x128XjXv4bb3Dt4FubZfQMmqxrc+Ofbs+3SMDYJo3
+ XexVe9WVLdt34K6KDeqQ0maPJVP8HlXJpt8fS+YDd6Fk02FWMtSyZNPxJHt28cmnZNc2MUNesrus
+ ZAEfkn/JZnU+v3FGRhHgT1wRrqdAN7XRCHkBN87MTup8XrKnbIemON3y5MXwMNFon8jO/6oRNK5f
+ 44ND69AnYcDBU6VpSYLrANFWjksEs0IH1uGKTPTQbSp/DAnsPpKS8CNyRaEF8oAPAjt6rjJYU6hT
+ XEOxgYYHdMSVh+hRQqidiVVtYjiGT9jCEnmIDj2QFipKnM5O7L7qvDjbyh6NfiJ7vC87qnlZ6pcu
+ zhTNP7SaNyTgo1dcS5DkreItkA5YOZ5QZieK9qOKi6sbaDhpELxBxw/5vMvP4JKMJgGiJrvrMjtJ
+ ibwWNBr1gsbjt/fxkoeArgVFS0xVpyZ10NMKM1DcB9IVcFhGpUDyFswSauSrNlV+07eNAvCtD9iA
+ 7bYfevAhap2CbW2CSb2AexPqBKKoqgOkcimzHmz+hNGSUo7++EC3xuNeXHF28cbTYOfXK3Rcpe1T
+ k0LAB4s6SQMe4JfJZJJBqMmDxBUJBImKVug2O08p1AFWXEWEpXFgzRpdUu18l3onq3Lc1i2gDnX0
+ xH3YZn/3xF6d+aejQ993O6PM4TJ6rp5n3PP603ZoKlNZZ+793gxkS9Lk64VD7rtZxHwwdsOdeDoG
+ Fl/NW2adaWxYBPMv6gQ4zosNHuuvg946Ks6frcEErnrD6VmeHQBcSAycuom8vQQEFzXKPrS/DHiU
+ ZHYMRzuy/5/OIeyNdNLVW+B7g0jTBeXCOpQkXkvu3Rym6/JnbtsydwmzzRlYLElX6Kyj7sZiS7vI
+ TyfyYlzkQrCjp6P/AAAA//8DAEPd/wa6BwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65d00ba702ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4240'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_0f0b108ffcb65472938e0bf3e4d74365
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVUW/bOAx+z68ghD06bRy7bRIUBVYMKHZDb93uij3MRaBItM2dLOkkOa2v6H8/
+ yOniNMuA+MGQRfL7+Ek0+TwCYCTZApioeRCNVeP3X8R69cfsW8hvVtdBKl3d47388yZr6T/Fkhhh
+ Vj9QhJ9RJ8I0VmEgozdm4ZAHjKjpRTaZT+ZnWdobGiNRxbDKhnFuxtPJNB9PZuPJ+WtgbUigZwv4
+ PgIAeO7fMUUt8YktYJL83GnQe14hW2ydAJgzKu4w7j35wHVgyWAURgfUMWvdKrVjCMaopeBKDcSb
+ 53lnPZwTV2pJep7ef/oiPn4jkdGPD+lf+uvNNZ/s8G2gO9snVLZabM9nx77dX+yRATDNmz72trvt
+ jy3Zd+CuahvUIabNngum+ApVwRbfnwvmA3ehYItJUjDUsmCLLC57Fx99CvbZRmZIC/aQFCzgU/Qv
+ 2GWdXt05I1sR4CuuCR8XQHe10QhpDnfOXJ7W6VXBXpIdmuxsy5PmvyGa7hPZq79rBI2Pb/HBoXXo
+ ozDg4KnSVJLgOkBrK8clglmjA+twTab10BeVP4EItmpJSfi35YpCB+QBnwT29Fwl8EihjnENtQ00
+ PKAjrjy0HiWE2pm2qk0bTva0pXk6iLuYHhaX7Yn7hB2UyEPr0ANpoVqJi33g2cUWeDqdHnk9iq4+
+ dJo3JOCjV1xLkOSt4h2QDlg5HsMuTxXt39F0mg10eXY8XT67vYOGkwbBG3T8IHieD+Dnk+PB36fn
+ cE1GkwBRkz2IfT5UV5blR1fXNQ8BXQeKSoy1QE2sK09rTEBxH0hXwKFslQLJOzAl1MjXXayHTTVt
+ 5ILvfMAGbP9ToAcfWq1jsK1NMPF6YWVCHUEUVXWAeCnKPI43X8JoSTFHv19ZWTbfCssvzo6rrEt7
+ 9XmNjqtY0DUpBHyyqKMs4AHezefzBEJNHiSuSSBIVLRGt/kXlEIdYM1Vi1AaB9Y8oouKne/T7iVV
+ jtu6A9Shbj1xH/zJ5amN1/Lwwt50oZfRofXDTnN1WLaeq9eu+7r/sm3jylTWmZXf68qsJE2+Xjrk
+ vu+OzAdjN9yRp2dg7ZsJwKwzjQ3LYP5BHQGzNN/gsWFADdbpLHu1BhO4Ggxn84vkAOBSYuDUz4jt
+ WBJc1CiH0GE88VaS2TGMdmT/ms4h7I100tUx8INBxH6HcmkdShJvJQ9uDuMA/53b9pj7hNmm/pcl
+ 6QqdddTPUFbaZXo2l7MsT4Vgo5fR/wAAAP//AwCiDK5PTAgAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65d1c48122ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '8192'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_5194090f680dafd1e250f7fdf775c3c5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW/bNhR996+4IPZoJ5alpLERGGjRl2wrmhYbhq0KDIa8ku5CkSxJyRaC/PeB
+ UmLZXgLEDwbF+3HOuaSOHicAjCRbARMVD6K2avbxm2gf/qHvxn2TlxK7tN093PzJL9Xnv1rFprHC
+ 3P+LIrxUnQlTW4WBjB7CwiEPGLsmH9L5cr68yOZ9oDYSVSwrbZhlZraYL7LZ/Go2v3wurAwJ9GwF
+ PyYAAI/9f6SoJe7YCvo2/U6N3vMS2WqfBMCcUXGHce/JB64Dm45BYXRAHVnrRqmDQDBGbQRXagQe
+ fo8H63FOXKlNrX5NbHr14G7s3z+3ss12v4eF7eQB3tC6sz2hotFiP5+D+H5/dQIGwDSv+9ov3Zd+
+ bNPTBO7KpkYdIm32mDPF71HlbPXjMWc+cBdytppPc4Za5myVxmWf4mNOzr7aiAxJzu6mOQu4i/k5
+ u66S9a0zshEBvmNLuF0B3VZGIyQZ3DpzfV4l65w9TQ9g0os9TpK9AbQ4BbLrPyoEjdvj/uDQOvRR
+ GHDwVGoqSHAdoLGl4xLBtOjAOmzJNB76S+XPIDa7b0hJ+NlwRaED8oA7gT08V1PYUqhiXU1NDTUP
+ 6IgrD41HCaFypikr04Qz+A07KJCHxqEH0kI1ElfX5/ZUdZKNsheLN2Snp7Ibtc5zfa1o/bnTvCYB
+ N15xLUGSt4p3QDpg6Xisvj5X9JKdXX25hZqTBsFrdPww9jG5hE9kNAkQFdl96DyCHZNeLEbSabJ8
+ 91l94iGg60BRgXGyVMdT8tTiFBT3gXQJHIpGKZC8A1NAhbzt4nSHsxlYg+98wBpsf8XQgw+N1rHY
+ ViaYOG+4N6GKTRSVVYA4GmW2s+FJGC0pcvRnr5xIusj24rI0feeNt+uvLTqu4hWpSCHgzqKO0oAH
+ +GW5XE4hVORBYksCQaKiFt1wu5RCHaDlqkEojANrtuiiaud76r2s0nFbdYA6VI0n7sOe/d0TO3qv
+ nyavre8O7Mph0Xiunn3sef9pb4zKlNaZe3/ic6wgTb7aOOS+9xvmg7EDdsTpEVhz5KnMOlPbsAnm
+ AXVsmCbZ0I+Nlj9GF9mzPbNgAldj4OLipeyo4UZi4NS77t7oBRcVyrF0NHzeSDIHgcmB7P/Tea33
+ IJ10+Z72Y0BEB0G5sQ4liWPJY5rD+El8K20/5p4wG96BTUG6RGcd9V8lVthNcrGUV2mWCMEmT5P/
+ AAAA//8DANtSB3yeBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65d506aea2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:23 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3609'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_a1f0b8f989d7415d13443f44562ef2e0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227jNhB991cMiD7aiWXLSWwEBna7KJAW2c1eULRYBQZNjqXZUiTLix01yL8X
+ lBLLdlMgfjAonpk5c4bU0eMAgJFkC2Ci4kHUVo3efRZbHde//3H1MW+woY+3k8mvv4jSTX/cfGbD
+ lGHWP1CEl6wzYWqrMJDRHSwc8oCpanY5Hc/H81k+bYHaSFQprbRhlJvRZDzJR+Or0fjiObEyJNCz
+ BXwfAAA8tv+pRS3xgS1gPHzZqdF7XiJb7IMAmDMq7TDuPfnAdWDDHhRGB9Spax2VOgCCMWoluFI9
+ cfd7PFj3c+JKrX4O//x5+0V9aOLd1xuzo2on613u8ICvK93YtqFN1GI/nwN8v784IQNgmtdt7m1z
+ 245teBrAXRlr1CG1zR4LpvgaVcEW3x8L5gN3oWCL8bBgqGXBFtO0bEN8iinYJ5uYISvY/bBgAR9S
+ fMGuq2x554yMIsAX3BLuFkB3ldEIWQ53zlyfV9myYE/DA5rpbM+TzWavE01OiezyW4WgcXdcHxxa
+ hz4JAw6eSk0bElwHiLZ0XCKYLTqwDrdkoof2UvkzSMXWkZSEvyNXFBogD/ggsKXnagg7ClXKqynW
+ UPOAjrjyED1KCJUzsaxMDGfwGzawQR6iQw+khYoSF9fn9lR1dtGPd5Jfvi57eio7qmVR6GtFyw+N
+ 5jUJuPGKawmSvFW8AdIBS8dT9vW5opfo/Or2DmpOGgSv0fFD7F12Ae/JaBIgKrJ76DyRHTc9mU36
+ O5Fnbz6r9zwEdA0o2mCaLNXplDxtcQiK+0C6BA6bqBRI3oDZQIV826TpdmfTdQ2+8QFrsO0VQw8+
+ RK1Tsq1MMGnesDahSkUUlVWANBpldqPuSRgtKfXoz145kWl+sReXX+ZvvPF2+WmLjqt0RSpSCPhg
+ USdpwAP8NJ/PhxAq8iBxSwJBoqItuu52KYU6wJariLAxDqzZoUuqnW9bb2WVjtuqAdShip64D/vu
+ 75/Y0Xv9NHhtfX9gVw430XP17GPP+097Y1SmtM6s/YnPsQ1p8tXKIfet3zAfjO24E0/LwOKRpzLr
+ TG3DKpi/UKeC0yzv6rHe8nt0kj/bMwsmcNUDs9lL2lHBlcTAqXXdvdELLiqUfWpv+DxKMgfA4ED2
+ f9t5rXYnnXT5lvI9IJKDoFxZh5LEseQ+zGH6JP5f2H7MbcOsewdWG9IlOuuo/SqxjV1ls7m8muaZ
+ EGzwNPgXAAD//wMAHPFosZ4HAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65d68ac622ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3245'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_34de20298a23a04746c3c5b17c5d84b0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevnDZVEmTsspeqkocWHFAXACBqsixXxKD42fsl4pVtf+Okt1u
+ UlGkXnyYeTOaGfkxARBGix0I1UtWg7fp3Wf1ECrz0cn+2/73l3xb5aP+5L6b5u7hvdhMCmp+ouIn
+ 1ZWiwVtkQ+5Eq4CScXLNt0VWZdVNuZ2JgTTaSdZ5TsuUx9BQep1dl2lWpll1VvdkFEaxgx8JAMDj
+ /E45ncY/YgfZ5gkZMEbZodhdjgBEIDshQsZoIkvHYrOQihyjm6N/QGvpDezfDtBjQGCCHq2HA41X
+ 8LWXDEo62IMmaClMMDBpebhd+wVsxyinTm609owfLwEtdT5QE8/8BW+NM7GvA8pIbgoTmbyY2WMC
+ cD8PMT7rJnygwXPN9AvdZJiXJzuxzL8it2eSiaVd8CLfvOBWa2RpbFwNKZRUPepFuawuR21oRSSr
+ zv+Gecn71Nu47jX2C6EUekZd+4DaqOeFl7OA0+f839ll4zmwiIfIONStcR0GH8zpa7S+vtFNkRXv
+ irYVyTH5CwAA//8DAJSqZ3woAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65d7e5dfc2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '648'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_063e2e1e37b5ccaeb61152dcaa88a784
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUXW+bMBSG7/MrrHNNJr4D3E3aV7p1a6Wu2lQq5BhDyIztYdM2i/LfJ0iKaZZO
+ cBEhv+c55/UJ5+xmCEGVQ4KArLEmtWTzt9fkQQU/NvXjVlyQG/vq+0f3qgyX6v3vCw5WR4jVhhL9
+ TL0hopaM6kocZdJQrGmX1Vl4dmzHgR/1Qi1yyjqslHruz3XbrMTctV1/bvtzOz7Sa1ERqiBBdzOE
+ ENr1v51PntMnSJBtPZ/UVClcUkiGIISgEaw7AaxUpTTmGiwjEsE15Z113jI2ErQQLCOYMVP48OxG
+ 76ZZmLGMfrqWNx9+PvhksVq+iz/ffv3yuNz8uR3VO6Teyt5Q0XIyNGmkD+fJSTGEgOO6Zy+3l33v
+ rNMA3JRtTbnubMMuBYZXlKWQ3O1SUBo3OoXEcawUKM9TSNzQOsaoLiiFb7IrjZwU7vfWiFkYJnqF
+ cU8Zx/UHyPHi85R3SrleYOwF9kR/bmwoz7EnOvT8yFChN9GhH4cDFfTNnOIwCEbUwpnoMLTjgQr7
+ fk5xGHkL83cF7kSHUWSo2HYnOox921BB8B+H93t48bnuZ+fe70dT2NCiVZgdx/N4vh/mnYlSNmKl
+ TsYXiopXap01FKt+jEBpIQ+1uzp9BWhfrAqQjailzrT4RXmX0HPCQz4w68yoTuQdVS00Zkbw49g6
+ kzDLqcZVv0yG/UUwWdPcoGaP4TavxEiYja79r51zuQ9Xr3g5Jb0RCKFS0zyTDc0r8vLKJqyh3bp/
+ LWxoc28Y1FZpWmdFxUvayKbqly0UMgvylWd7oVcUMNvP/gIAAP//AwANJh0iegYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65d835b192ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:35 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '7243'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_664b32d27affa95bf83d14eae3ec35a9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUXW+bMBSG7/MrrHNNJj5CQrir1E5a1o91vZimEiHHHBJWY1u2WddF+e8TJMU0
+ TadwgZDf85zz2pzj7YgQqApICbANtaxWfHxxz37//Xl9RZ9CcXeTfLlKNpefF98enuXtxRy8lpCr
+ X8jsK/WJyVpxtJUUe5lppBbbrMEs8uf+PI7jTqhlgbzF1sqOJ2Pb6JUch344GfuTsX9IzjayYmgg
+ JY8jQgjZdu/WpyjwD6TE915XajSGrhHSPogQ0JK3K0CNqYylwoLnRCaFRdFaFw3nA8FKyXNGOXeF
+ 98928O0Oi3Kef11cW3r1o0gW9v7pDr/z5+JycXF5O6i3T/2iOkNlI1h/SAO9X0+PihECgtYde/Ny
+ 052ddxxA9bqpUdjWNmwz4HSFPIP0cZuBsVTbDNIg8DJAUWSQhlPvEGPaoAzuVFuaBBksd96QiWc9
+ FMyS01T4jkp8R82n51LzxBnszJ5DhYmjouADh9ExFYXOYTSLzqVmcU9N4vg/1HIHb37RbnTqezno
+ PI1lYyg/tORhfdf3OJdrpeXKHLUslJWozCbXSE3XOmCsVPvabZ2uAjRvxgOUlrWyuZVPKNqEUTDd
+ 5wM3wk4N/OSgWmkpd8IknHgnEuYFWlp1A9TPLKNsg4VD3ezSpqjkQBgNtv3ezqnc+61XYn1Oeicw
+ hspikSuNRcXebtmFaWyvuI/C+mPuDIN5MRbrvKzEGrXSVXfBQKnyuFhFfjSNyhJGu9E/AAAA//8D
+ AMDkEiluBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65db20a0e2ca7-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3814'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_3a6cb739d05b115191e2f4ec6a717348
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU246bMBB9z1dY80wqwFwCb620K1Vt1ItWaqplhRxjCFtjW9hoN4ry7xUkxSSb
+ reABWT5zzpwZmDksEIK6gBQB3RFDG8WXH3/Ql7t78iV+3nwu1Xrb3flVtfHr5vnh5Tc4PUNunxk1
+ /1gfqGwUZ6aW4gTTlhHDelUvxm7iJmHsDkAjC8Z7WqXMMliart3Kpe/6wdINlm5yZu9kTZmGFD0u
+ EELoMLx7n6Jgr5CiQWu4aZjWpGKQjkEIQSt5fwNE61obIgw4FqRSGCZ666LjfAIYKXlOCec28ek5
+ TM62WYTz3NxHn3Twcy39DcP7oNz/2r9+fdh8n+Q7Se/VYKjsBB2bNMHH+/QqGUIgSDNw1/v10Dvn
+ OoC0VdcwYXrbcMiAky3jGaSPhwy0Ia3JIPU8JwMmigxSP3LOMboPyuCb6lMjL4OnozPhxJazeofj
+ X3M8PxhJHk5us/A1y8ehtRe6M/35iWVhz53pEAfYssLVTIdBaOsKomSmw9CzrNBPZjoMI9+y4nim
+ w2hl64qS1dxvPOlG/F433jiMk8mv4Ub/cfh0hIvf9bi4dX6aTGHLyk4Tfh7P8/1xnHcuK9XKrb4a
+ XyhrUetd3jKihzECbaQ65e7zDBmgu1gVoFrZKJMb+YeJXhB70UkP7DqzqLfCZ9RIQ7gFgiRxbgjm
+ BTOkHpbJuL8ooTtWWKrdY6QrajkBFpOy39q5pX0qvRbVHHkLUMqUYUWuWlbU9LJkG9ayft2/Fza2
+ eTAMeq8Na/KyFhVrVVsPyxZKlYfFFrs4wmUJi+PiLwAAAP//AwDz24BfegYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65e0e8dec2a96-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:12:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5280'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_5b9fcdb7a92a23ef9f027989fd5976a9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '2'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUTY/TMBCG7/0V1pxTlO80uQELe1gqWIFAsKki13HSgGOb2NltqfrfUdJunJYu
+ Sg5V5HeemXfczOxnCEGVQ4KAbLAmtWTz1/fkqbA/f39zsyXf3oa/35e7r1/uPtyS+3c3EqyOEOuf
+ lOhn6hURtWRUV4IfZdJQrGmX1Yk8O7bjII56oRY5ZR1WSj3357pt1mLu2q4/t/25HZ/ojagIVZCg
+ hxlCCO37384nz+kWEmRbzyc1VQqXFJIhCCFoBOtOACtVKY25BsuIRHBNeWedt4yNBC0EywhmzBQ+
+ PvvRu7kszFi2DZb66Q9hj9s7n7g/NptPRbt8XN+O6h1T72RvqGg5GS5ppA/nyUUxhIDjumeXu2V/
+ d9ZlAG7KtqZcd7ZhnwLDa8pSSB72KSiNG51C4jhWCpTnKSRuaJ1iVBeUwkfZlUZOCquDNWIiwyxe
+ YNxLxnH9AXK8+DrlXVKuFxh7gT3RnxsbynPsiQ493zNUsJjo0A9MX34YT3QYOIYK3HiiwyB0DRVF
+ Ex2GkekrXCym/seeoSJ/MdFhFIWGip3/OFwd4OxzPcyuva9GU9jQolWYncbzdH4Y5p2JUjZirS7G
+ F4qKV2qTNRSrfoxAaSGPtbs6fQVoz1YFyEbUUmda/KK8S+g54TEfmHVmVGfhnVQtNGZG8OPYupIw
+ y6nGVb9Mhv1FMNnQ3KBmj+E2r8RImI3a/tfOtdzH1iteTklvBEKo1DTPZEPzipy3bMIa2q37l8KG
+ a+4Ng9opTeusqHhJG9lU/bKFQmZBvvZsL/SKAmaH2V8AAAD//wMAi9ZkunoGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65eb82a4a630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5437'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_69b2725c8b510566bf5438e719c572ac
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwW6cMBC971dYc2YrwECy3BqpqnKI2mRV5VAiZIxhnRjbsk2baLX/XgEbTNK0
+ ggOy/ObNezPyzHGDEPAacgT0QBzttNh+vqW/RR/t6Z2mX6vmke/Z0+6uNT8s5w6CgaGqR0bdK+sT
+ VZ0WzHElJ5gaRhwbskYXONyFuyzEI9CpmomB1mq3TbauN5XaxmGcbMNkG+7O7IPilFnI0c8NQggd
+ x//gU9bsGXIUBq83HbOWtAzyOQghMEoMN0Cs5dYROXk+g1RJx+RgXfZCLACnlCgpEcILT99xcfbN
+ IkKU7Lu9tdfs8QvfX++v+K8qklf3z/dPC70p9YseDTW9pHOTFvh8n78TQwgk6UbuzcvN2LvgfQAx
+ bd8x6QbbcCxAkIqJAvKfxwKsI8YVkEdRUACTdQF5nAXnGDsEFfBND9IoKuDhFCw4F55zuZYTxclM
+ ivBuJSvGqbeXhitZOIxnFo4u1rLSBStby0pi34wEr+1GcunrSsO1daWp10qztVpZ5LUy/D+thxO8
+ eUKnzUfnh8VkGNb0lojzyJzvT/MMCtVqoyr7bqSg4ZLbQ2kYsePTBuuUnrQHnVEB+jfjC9qoTrvS
+ qScmh4Q4yqZ84FeMR6MUn1GnHBEeSLJd8EHCsmaO8HHA551CCT2w2lP9biF9zdUC2CzK/tvOR7mn
+ 0rls16T3AKVMO1aX2rCa07cl+zDDhhX8r7C5zaNhsC/Wsa5suGyZ0YaPCxAaXaZ1hUOc4aaBzWnz
+ BwAA//8DADNusnoOBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65edb1cf2630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6163'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_fecbebebd5165ef5061e0da99227f7a1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBC95ysGX7gkKNku3e5eKk5lBQi4wAGhyGtPElPHY+wJYan236tkt5tU
+ bSUuPrw37+m9Gd8lAMJosQGhGsmq9TZ791X14cv+4/Zm/fbmg7zcqe2//hP1n7+tfv8R6aCg3S9U
+ /KB6o6j1FtmQO9IqoGQcXIvVRb7O15f5eiRa0mgHWe05W1LWGmeyRb5YZvkqK65O6oaMwig28CMB
+ ALgb3yGn0/hXbCBPH5AWY5Q1is15CEAEsgMiZIwmsnQs0olU5BjdGH37ugVNxtXQo7UpcCPdbXwF
+ 76kHuaOOYU/dNXxvJIOSDrbQoPUDCL3hBpi03F/PzQNWXZRDQddZe8IP57SWah9oF0/8Ga+MM7Ep
+ A8pIbkgWmbwY2UMC8HPcSveoqPCBWs8l0y26wbBYHu3EdIsZeXUimVjaCb9YpM+4lRpZGhtnWxVK
+ qgb1pJxOIDttaEYks85PwzznfextXP0/9hOhFHpGXfqA2qjHhaexgMNPfWnsvOMxsIj7yNiWlXE1
+ Bh/M8Z9Uvsx3MtfFYlkVIjkk9wAAAP//AwBehb0SNQMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f02ba5d630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '414'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_8582bdb58db1a6c207960118af0a8ab0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV3W/bNhB/919xIPZoB5biOrbf0hQogi1t1q0FiiowaPIkXUeRHD/saEH+94FS
+ ailuCkQPgsy7+33w6OPDBICRZBtgouZBNFbNLv8UB7/cfxcf3l+S+Rr/+vzu6svSXTvf/hHZNFWY
+ 3XcU4UfVmTCNVRjI6D4sHPKACTW7OJ+v5+tlNu8CjZGoUlllw2xhZg1pmuXzfDGbX8yy1VN1bUig
+ Zxv4NgEAeOjeSaeWeM820GF1Kw16zytkm2MSAHNGpRXGvScfuA5sOgSF0QF1kq6jUqNAMEZtBVdq
+ IO6fh9H3sFlcqa2TVaiu6uvlfvf+WmD++cN/V4gkR3w9dGs7QWXU4rhJo/hxfXNCBsA0b7ram/am
+ 27vpaQJ3VWxQhySbPRRM8R2qgm2+PRTMB+5CwTbzacFQy4Jt8jfTpxSfcgr20SZmyAp2Ny1YwPuU
+ X7BbZ2QUAT7hnvCwAbqtjUbIFnDrTMEepyP0/OIIv8pfhs9P4P+uETQensOCQ+vQJy/AwVOlqSTB
+ dYBoK8clgtmjA+twTyZ66A6TP4MEtoukJPwbuaLQAnnAe4EdN1dTOFCoU11DsYGGB3TElYfoUUKo
+ nYlVbWI4g9+xhRJ5iA49kBYqStycuF0tjm6z/Bd2z0/svms1b0jAtVdcS5DkreItkA5YOZ5KTkiy
+ fMSyWL6OZbG6uYWGkwbBG3T8FHOxGim/eB3mZbaEt2Q0CRA12Z9krgfI1fJ1vX/LQ0DXgqISU6eo
+ SV33tMcpKO4D6Qo4lFEpkLwFU0KNfN+mbvW97t2Bb33ABmx3UtGDD1HrVGxrE0zqH+xMqBOIoqoO
+ kLZemcOs/yWMlpQE+rNTV6vV6P8yf52rj3t0XKWzVpNCwHuLOnkCHuC39Xo9hVCTB4l7EggSFe3R
+ 9cdUKdQB9lxFhNI4sOaALtl1vtPc+akct3ULqEMdPXEfOtl3j+zZPHicvPR9NxpzDsvouXqaf0/r
+ j8eBqkxlndn5k/nIStLk661D7rs5xXwwtudOPB0Di89mMbPONDZsg/kHdQI8zxY9HhvuiyGanz+N
+ dRZM4GoIvFn8KHsGuJUYOHXT+nhBCC5qlEPpcFHwKMmMApOR7Z/lvITdWyddvQZ+CIg0hlBurUNJ
+ 4rnlIc1huk9/lXbc5k4w6w/+tiRdobOOutuMlXY73/G5zPJFmbHJ4+R/AAAA//8DALjgSwnbBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f068eaf630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3539'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_477b64cd9aef196f31e97c9998d4afe5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW8jNwy9+1cQQo924PFXYt8S7GXbDTYt2i7ancCgJc4MdzWSVtKMMwjy3wuN
+ E4/jZoH4YMgi+R4fSVOPIwDBSmxAyAqjrJ2eXP8u9+0X9/d+ufpAN4WaZt9o+Yn/+ld+WV2LcYqw
+ u28k40vUhbS10xTZmoNZesJICTW7nE/X0/Uqm/eG2irSKax0cbKwk5oNT2bT2WIyvZxkV8/RlWVJ
+ QWzg6wgA4LH/TnkaRQ9iA9Pxy01NIWBJYnN0AhDe6nQjMAQOEU0U48EorYlkUuqm0frEEK3VW4la
+ D8SHz+PJeSgWar2t9a+Zm1999x/dPz/2ql08fIoz16kTvgN05/qEisbIY5FO7Mf7zRkZgDBY97G3
+ 3W1fu/G5A/qyqcnElLZ4zIXGHelcbL4+5iJE9DEXm+k4F2RULjbzdOxdQvLJxWeXmCHLxf04F5Ee
+ kn8u7rxVjYzwB7VM+w3wXWUNQbaAO29z8TQ+QZ9nR/hsuX4bf3aG/2dFYGj/Ghc8OU8hiQGEwKXh
+ giWaCI0rPSoC25IH56ll2wTopylcQALbNawV/GhQc+yAA9CDpJ4b9Rj2HKsUV3NTQ42RPKMO0ARS
+ ECtvm7KyTbyA36iDgjA2ngKwkbpRtDmTm62Gcs6mP9E7P9P7oTNYs4SPQaNRoDg4jR2wiVR6TCFn
+ LLPshGW+eh/L4ur2DmpkAxJr8niOOb8cMJfZ+zCvsxXcsDUsQVbsziGXs2G2snc2/wZjJN+B5oJS
+ q7hObQ/c0hg0hsimBISi0RoUdmALqAjbLrXr0OyDOghdiFSD62eVAoTYGJOCXWWjTQ2EnY1VAtFc
+ VhFS6bXdTw6/pDWKU4Lh4nyiZyf/mPXqfao+t+RRp2GrWBPQgyOTNAFG+GW9Xo8hVhxAUcuSQJHm
+ lvxhTrUmE6FF3RAU1oOze/JJrg99zr2e0qOrOiATqyYwhtinff8kXm2Ep9Fb5/uTReepaALq5w34
+ fP90XKnals7bXTjbkKJgw6HaesLQbyoRonUH7sTTM4jm1TYWztvaxW2038kkwHm2OOCJ4cUYrLP5
+ 82IX0UbUg2G5eAl7BbhVFJH7fX18IiTKitQQOjwV2Ci2J4bRiez/p/MW9kE6m/I98INBpj1Eaus8
+ KZavJQ9untKL+jO3Y5n7hMVh8LcFm5K889y/Z6Jw2+kOpyqbLYpMjJ5G/wEAAP//AwAD3dss3QcA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f1e3d0c630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4564'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c44010cfe15f250b1104efb45d589366
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTW8jNwy9+1cQQo924LEdJ/YtadEPtOk62W3QYicwaIkzw41GUiWNk0GQ/15o
+ nHgcNwvEB0MWyff4SJp6GgAIVmIJQlYYZe306OJaPo5/ubr++Y972c7/mn7B7W0Wb7PZ/bd/WjFM
+ EXbzjWR8jTqRtnaaIluzM0tPGCmhZmfT8WK8mGfnnaG2inQKK10czeyoZsOjyXgyG43PRtn5S3Rl
+ WVIQS/g6AAB46r5TnkbRo1jCePh6U1MIWJJY7p0AhLc63QgMgUNEE8WwN0prIpmUumm0PjBEa/Va
+ otY98e7zdHDui4Var4v55z9nxeWFuv41q2//vvHhZvU5/kgHfDvo1nUJFY2R+yId2Pf3yyMyAGGw
+ 7mKv2quudsNjB/RlU5OJKW3xlAuNG9K5WH59ykWI6GMuluNhLsioXCyn6di5hOSTi08uMUOWi7th
+ LiI9Jv9crLxVjYxwQ1umhyXwqrKGIJvByttcPA8P0KfZHj47XbyPPznC/1IRGHp4iwuenKeQxABC
+ 4NJwwRJNhMaVHhWB3ZIH52nLtgnQTVM4gQS2aVgr+LdBzbEFDkCPkjpu1EN44FiluJqbGmqM5Bl1
+ gCaQglh525SVbeIJ/E4tFISx8RSAjdSNouWR3Gzel3My/o7e6ZHen1qDNUv4LWg0ChQHp7EFNpFK
+ jynkiGWSHbBM5x9jmZ1fraBGNiCxJo/HmNOzHvM0+xjmRTaHS7aGJciK3THk6aSfreyDzb/EGMm3
+ oLmg1CquU9sDb2kIGkNkUwJC0WgNCluwBVSE2za1a9fsnToIbYhUg+tmlQKE2BiTgl1lo00NhI2N
+ VQLRXFYRUum1fRjtfklrFKcEw8nxRE8O/jGL+cdUfdqSR52GrWJNQI+OTNIEGOGHxWIxhFhxAEVb
+ lgSKNG/J7+ZUazIRtqgbgsJ6cPaBfJLrQ5dzp6f06KoWyMSqCYwhdmnfPYs3G+F58N757mDReSqa
+ gPplA77cP+9Xqral83YTjjakKNhwqNaeMHSbSoRo3Y478XQMonmzjYXztnZxHe09mQQ4zWY7PNG/
+ GL11Mn1Z7CLaiLo3nM5ew94ArhVF5G5f758IibIi1Yf2TwU2iu2BYXAg+//pvIe9k86m/Ah8b5Bp
+ D5FaO0+K5VvJvZun9KJ+z21f5i5hsRv8dcGmJO88d++ZKNx6vMGxyiazIhOD58F/AAAA//8DAGIp
+ GcLdBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f3c48ea630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2547'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_5a9c687c4b23dffc97a524b07815d9dd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227jOAx9z1cQwj4mRZykl+StRR/m1m06mN2di4uAkWmbU1nSSnJST9F/X8hu
+ 4zTbAZqHQBHJc3hIhnoYAAjOxAKELDHIyqrR+Y28n97Q+/Bz+/3iy98z/Ovj9M9/lmXx9frbLzGM
+ EWb9k2R4jjqSprKKAhvdmaUjDBRRk9PpeD6en0yS1lCZjFQMK2wYzcyoYs2jyXgyG41PR8nZU3Rp
+ WJIXC/gxAAB4aL9jnjqje7GA8fD5piLvsSCx2DkBCGdUvBHoPfuAOohhb5RGB9IxdV0rtWcIxqiV
+ RKV64u7zsHfui4VKrZZ3m/mHuw/vbj41ya/jy7NPF/by/Os7ucfXQTe2TSivtdwVac++u18ckAEI
+ jVUbe9VctbUbHjqgK+qKdIhpi4dUKFyTSsXix0MqfEAXUrEYD1NBOkvFYhqPrYuPPqm4tpEZklTc
+ DlMR6D76p2LpTFbLAJ9pw7RdAC9LowmSGSydScXjcA99muzgk+P56/iTA/wvJYGm7UtccGQd+SgG
+ EDwXmnOWqAPUtnCYEZgNObCONmxqD+00+SOIYOuaVQb/1qg4NMAe6F5Sy41qCFsOZYyruK6gwkCO
+ UXmoPWUQSmfqojR1OIKP1EBOGGpHHlhLVWe0OJCbnPTlnIx/o3d6oPey0VixhPdeoc4gY28VNsA6
+ UOEwhhywTJI9lunJ21hmZ1dLqJA1SKzI4SHm9LTHPE7ehnmenMAFG80SZMn2EPJ40s9W8sbmX2AI
+ 5BpQnFNsFVex7Z43NASFPrAuACGvlYIMGzA5lISbJrara3anDnzjA1Vg21klDz7UWsdgW5pgYgNh
+ bUIZQRQXZYBYemW2o+6XNDrjmKA/Opzoyd4/Zn7yNlXXG3Ko4rCVrAjo3pKOmgAD/DGfz4cQSvaQ
+ 0YYlQUaKN+S6OVWKdIANqpogNw6s2ZKLcp1vc271FA5t2QDpUNae0Yc27dtH8WIjPA5eO9/uLTpH
+ ee1RPW3Ap/vH3UpVprDOrP3BhhQ5a/blyhH6dlMJH4ztuCNPyyDqF9tYWGcqG1bB3JGOgNNk1uGJ
+ /sXorZPp02IXwQRUveF49hz2AnCVUUBu9/XuiZAoS8r60P6pwDpjs2cY7Mn+fzqvYXfSWRdvge8N
+ Mu4hylbWUcbypeTezVF8UX/ntitzm7DoBn+Vsy7IWcfteyZyuxqvcZwlk1meiMHj4D8AAAD//wMA
+ tMVtct0HAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f4e3cef630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3387'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1e0fd1661f66bbb6f75b39d1f00a0227
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/bNhB+919xIPYoB5JsJ7Hf2nRFiiFr0m5YgSowaOok3UaRHH/YVoP87wOl
+ xHK8bIgeBIl393338Q53DxMARiVbARMN96I1cvruTuwvvnxwzfm3EK5S/vvs66+7KxHkt0X3kSUx
+ Qm/+ROGfo86Ebo1ET1oNZmGRe4yo2cUsXabL83zRG1pdooxhtfHTuZ62pGiap/l8ml5Ms8un6EaT
+ QMdW8H0CAPDQv2OeqsQ9W0GaPJ+06Byvka0OTgDMahlPGHeOnOfKs2Q0Cq08qpi6ClIeGbzWci24
+ lCPx8DwcfY+XxaVc312rvb38Y5nndz+6n38s8OP1FV1Xn474BujO9AlVQYnDJR3ZD+erEzIApnjb
+ x950N/3dJacO3NahReVj2uyhYJJvUBZs9f2hYM5z6wu2SpOCoSoLtsoXyZOLiz4F+2wiM2QFu08K
+ 5nEf/Qt2a3UZhIcvuCXcrYBuG60QsjncWl2wx+QIPb84wGfp/HX8/AT/twZB4e4lLlg0Fl0UAxwc
+ 1YoqElx5CKa2vETQW7RgLG5JBwd9N7kziGCbQLKEvwOX5DsgB7gX2HNzmcCOfBPjWgottNyjJS4d
+ BIcl+MbqUDc6+DP4BTuokPtg0QEpIUOJqxO5WXo+6p3PXtc7O9H7oVO8JQGfnOSqhJKckbwDUh5r
+ y2PIKct8MbKcL9/GMr+8uYWWkwLBW7T8FPMiO8p88TbMd9k5vCetSIBoyPwPZN43whuK/557j7YD
+ SRXGUlEby+5oiwlI7jypGjhUQUooeQe6ggb5tovlGoo9qAPXOY8tmL5X0YHzQakYbBrtdSwgbLRv
+ IoikuvEQr17q3XT4E1qVFBN0Z6cdnS9HVcs3tvTnLVouY7M1JBFwb1BFTcA9/LRcLhPwDTkocUsC
+ oURJW7RDn0qJysOWy4BQaQtG79BGudb1Ofd6astN0wEq3wRH3Pk+7ftH9mIiPE5e+74/GnQWq+C4
+ fJqAT+ePh5EqdW2s3riTCckqUuSatUXu+knFnNdm4I48PQMLL6YxM1a3xq+9/gtVBJxl8wGPjRtj
+ tOazp8HOvPZcjobF/DnsBeC6RM+pn9eHFSG4aLAcQ8dVwUNJ+sgwOZL973Rewx6kk6rfAj8aRJxD
+ WK6NxZLES8mjm8W4Uf/L7XDNfcJsaPx1RapGayz1+4xVZp1ueFpm+bzK2ORx8g8AAAD//wMAsqKM
+ Kt0HAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f649e82630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4428'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_d237829b799a883473b84100034d460f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWobMRC971dMdcllbew4blhfShsK9qWltIRAKYssjXflajVCmk1sgv+9rLzZ
+ dWgKvejw3rzHezN6zgCE0WIFQtWSVePt5OM3dfgki+O9Ugd5v/589/Adm9uvd/WPL3sv8k5B2z0q
+ flFNFTXeIhtyZ1oFlIyd6/x2MStmxfvrIhENabSdrPI8WUyXE27Dliaz+fWyV9ZkFEaxgp8ZAMBz
+ eruMTuNBrGCWvyANxigrFKthCEAEsh0iZIwmsnQs8pFU5Bhdir1Ga+kdbK4a2LeRQcKjCdxKC4My
+ h0iwAU3uiqGWjwg7RGtcFXPYtpy0NQYEJqjRejhSC0+Ga5DuyLVxVUIcop7Cmp5ASQeb3j9RTFoe
+ P1wmDLhro+w25Fpre/w0VLZU+UDb2PMDvjPOxLoMKCO5rl5k8iKxpwzgV1pt+2pbwgdqPJdMv9F1
+ hvObs50YjzmSi2VPMrG0I35T5G+4lRpZGhsvTiOUVDXqUTneUbba0AWRXXT+O8xb3ufexlX/Yz8S
+ SqFn1KUPqI16XXgcC9h99X+NDTtOgUU8Rsam3BlXYfDBpM+WTnnK/gAAAP//AwBzs8U8awMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f8148fb630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '663'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_00d2959fb823a3a52eefcc6c55f0e0fb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW+bMBB+51dY90wqCEkmeMs6ZV2nqqqmVZtKhIxxiFNjW7bZGkX57xWGAcmy
+ KTwg677vu+/udPbBQwhYAQkCssWWVIpPlk/k7XZVfLq7je+Xz+T17svz7/DjLPi53H17BL9RyHxH
+ if2juiGyUpxaJkULE02xpU3W8EMUxEG8iAIHVLKgvJGVyk6im/nE1jqXkyCczjvlVjJCDSToxUMI
+ oYP7NzWKgr5BglweF6moMbikkPQkhEBL3kQAG8OMxcKCP4BECktFU7aoOR8BVkqeEcz5YNx+h9F5
+ GBTmPIuePq/u3xb7vPq6+7X6zvPAxuGPIh/5tan3yhW0qQXpBzTC+3hyZoYQCFw57cP+wc3NPydg
+ XdYVFbYpGw4pcJxTnkLyckjBWKxtCkngp0BFkUIyjf2OYhpOCo+qcUZhCuujP5I4YquJw8ua6bnG
+ EVtNOAsui6JzUcvsqgumV1q1zE41X1zblGO2qigK/uO1PsLJoI/epfN6tD+abmqDebdYXfzYbyqX
+ pdIyN2eLBxsmmNlmmmLjFgCMlar1bnycA9QnSw5Ky0rZzMpXKpqEUbho88FwCQc0jjrQSov5EJ8F
+ sX8hX1ZQi5m7Bf3FI5hsaTFIhwuI64LJEeCNuv67mku5286ZKK9JPwCEUGVpkSlNC0ZOOx5omjZv
+ 1L9o/ZRdwWD2xtIq2zBRUq00618J7+i9AwAA//8DADy3njkkBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f868f12630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1542'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_16b76415f4ac1b507a6f8505e4908a07
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW+bMBB+z6+w7plUQEpaeJu0SX1Jm0Wapq1EyDEX4tTYyDZbsyj/fTJQIGk2
+ lQdk3fd9990dZ44TQoDnkBBgO2pZWYnpp6/s9Uv0ebUKlvsX87jkDw/Rt9W9DDfl8hd4TqE2e2T2
+ TXXDVFkJtFzJFmYaqUWXNbib+bEfz2dhA5QqR+FkRWWns5toamu9UVM/CKNOuVOcoYGEPE8IIeTY
+ vF2NMsdXSIjvvUVKNIYWCElPIgS0Ei4C1BhuLJUWvAFkSlqUrmxZCzECrFIiY1SIwbh9jqPzMCgq
+ RLaMchuzcH94jH5/j8XPpx+hXMg/wcivTX2omoK2tWT9gEZ4H08uzAgBSctGuzgsmrl5lwSqi7pE
+ aV3ZcExB0A2KFJLnYwrGUm1TSHwvBZR5CkkYex3FOE4KT5VzJkEK65M3kjTEVhMH1zXhpaYhtprg
+ 1r8uml2KWmZXnR9+0Kpldqpo/p+m1ic4G9lpcu28Hm2Cxm1tqOhWpIuf+p0Tqqi02piLFYItl9zs
+ Mo3UNJ8SjFVV6+18Ggeoz9YVKq3KymZWvaB0CWfBvM0Hw3Ua0Lv7DrTKUjFSxbfelXxZjpbyZp/7
+ K8Qo22E+SIerROucqxEwGXX9vpprudvOuSw+kn4AGMPKYp5VGnPOzjseaBrd3+ZftH7KTcFgDsZi
+ mW25LFBXmvf3fXKa/AUAAP//AwDRwn0Q7gQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f916b77630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1520'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_e2c607801b545bad4a8fd1a009d47d01
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW+bMBB+51dY90wqCEkqeNs0bdO6aK2qSZ1KhBxzEDpjW7aRmkb575OBAsmy
+ KTwg677vu+/udPbBIwSqHBICbEctqxWffXhgr18KXN5R9hCVT2je1nfxL0Y/3xf8K/hOIbcvyOy7
+ 6obJWnG0lRQdzDRSiy5reBsFcRCvokUL1DJH7mSlsrPoZjmzjd7KWRDOl71yJyuGBhLy7BFCyKH9
+ uxpFjq+QkMB/j9RoDC0RkoFECGjJXQSoMZWxVFjwR5BJYVG4skXD+QSwUvKMUc5H4+47TM7joCjn
+ 2WK/enusv9+aT9tXHX+8//bz5XE/X8mJX5d6r9qCikawYUATfIgnZ2aEgKB1q13v1+3c/HMC1WVT
+ o7CubDikwOkWeQrJ8yEFY6m2KSSBnwKKPIVkHvs9xThOCj+UcyZhCpujP5G0xE4Th5c183NNS+w0
+ 4SK4LIrORR2zry6YX2nVMXvVcnVtUy2zU0VR8B+vzRFOBn30Lp03k/3RWDSG8n6x+vhx2FQuS6Xl
+ 1pwtHhSVqMwu00hNuwBgrFSdt/NpHaA5WXJQWtbKZlb+RuESRuGqywfjJRzROOpBKy3lY3wRxP6F
+ fFmOllbtLRguHqNsh/koHS8gbfJKTgBv0vXf1VzK3XVeifKa9CPAGCqLeaY05hU77XikaXRv1L9o
+ w5TbgsHsjcU6KypRola6Gl4J7+j9AQAA//8DAHu16Z4kBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65f9c4feb630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1542'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_fdd8ad8843ff4fd4267db723d9da1b33
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTY+bMBC98yusOZMVhCQt3HZzSLVSWrWq1FWXCBkzEO8aG9mm2jTKf6/4WCBp
+ WoUDsua9N/M8mvHRIQR4BhEBtqeWlZWY3X9lb58+PmXrp4etWgTb73az/ob+Ki8PRoDbKFT6gsy+
+ q+6YKiuBlivZwUwjtdhk9T8EXuiFq2DZAqXKUDSyorKz4G45s7VO1czz58teuVecoYGIPDuEEHJs
+ /41HmeEbRMRz3yMlGkMLhGggEQJaiSYC1BhuLJUW3BFkSlqUjW1ZCzEBrFIiYVSIsXD3HSfnsVFU
+ iORx+2v9WLx+fv0tN9nLhuY/0/LhPv0xqdelPlStobyWbGjQBB/i0UUxQkDSstVuD9u2b+4lgeqi
+ LlHaxjYcYxA0RRFD9HyMwViqbQyR58aAMoshmoduTzENJ4YvVVOZ+DHsTu5E0hI7Tehf18wvNS2x
+ 0/iL1XVRcCnqmL27+fxWey2zUwX+8kaDHbNTLTz/P7V2Jzhr9Mm5dt5N5kdjXhsq+sHq46dhUoUq
+ Kq1SczF4kHPJzT7RSE07AGCsqrraTZ22AtRnQw6VVmVlE6teUTYJA3/V5YNxCUc0DHrQKkvFGF94
+ oXslX5KhpbzdgmHxGGV7zEbpuIC0zriaAM7k1n+7uZa7uzmXxS3pR4AxrCxmSaUx4+z8xiNNY/NG
+ /Ys2dLk1DOZgLJZJzmWButJ8eCWck/MHAAD//wMAv8CKcCQFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65fa7cd7e630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1528'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_3ba57dcc91de6d1f382e91225e1c4c6f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1781'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW+bMBB+z6+w7plUIaTJ4K2bFHVbsyqbtEorEXLMQbwa27KN1DTKf58MKZAs
+ k8YDsu77vvvuzgeHESHAc0gIsB11rNJifLdmr192i3V8H8s3ExbT5bdSPyyjj2z1sIbAK9T2NzL3
+ rrphqtICHVeyhZlB6tBnDRfRJJ7E82jRAJXKUXhZqd04urkdu9ps1XgSTm9Pyp3iDC0k5HlECCGH
+ 5u1rlDm+QkImwXukQmtpiZB0JELAKOEjQK3l1lHpIOhBpqRD6cuWtRADwCklMkaF6I3b5zA494Oi
+ QmQ/y+Lr96eXu0+fH9mv+2VMC02f5m8/Bn5t6r1uCipqyboBDfAunlyYEQKSVo12tV81cwsuCdSU
+ dYXS+bLhkIKgWxQpJM+HFKyjxqWQTIIUUOYpJNM4OFGs56TwqL0zCVPYHIOBpCG2mji8rpleahpi
+ qwln8+uiyIs2Rzhr4zi6dt4MbsdgUVsqTtd2ih+7PRCq1EZt7cW1QsElt7vMILXNeME6pVtv79M4
+ QH22QqCNqrTLnHpB6RNG4bzNB/2K9+jswwl0ylExUM1nwZV8WY6O8mbHurVmlO0w76X9etM652oA
+ jAZd/13Ntdxt51yW/5O+BxhD7TDPtMGcs/OOe5pB/wf4F62bclMw2L11WGUFlyUabXj3DY6Ooz8A
+ AAD//wMAUHvW9oIEAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65fb259ff630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '931'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_ebd1bc12d9cf246654b324772c412757
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTWvcMBS8+1e86tLLOnjj7WZ3L6Uhh4RCob2UUorRSm9tpbKeKj2TuGH/e/FH
+ 1l6SQC86zLwZZgY9JQDCaLEDoSrJqvY2/fRVPX6+54cfZWsat6cm//P3unE339X22xex6BS0v0fF
+ z6oLRbW3yIbcQKuAkrFzXV7l2TbbrvNNT9Sk0Xay0nO6ovQyu1yl2SbN1qOwIqMwih38TAAAnvq3
+ i+g0PoodZItnpMYYZYlidzoCEIFshwgZo4ksHYvFRCpyjK5PfYvW0ju4e19DhQFBOg0BpW6BCSq0
+ /gJu6QGUdHAHgxm01ACTlu3HuWnAQxNl18k11o748ZTSUukD7ePIn/CDcSZWRUAZyXWJIpMXPXtM
+ AH71azRnBYUPVHsumH6j6wyXq8FOTPPPyPVIMrG0E56PC567FRpZGhtnawolVYV6Uk7Ty0YbmhHJ
+ rPPLMK95D72NK//HfiKUQs+oCx9QG3VeeDoL2H3Ot85OG/eBRWwjY10cjCsx+GCG/3HwxfLDVm/y
+ 1VIpkRyTfwAAAP//AwB7xxxtKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65fb91a67630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:13:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1204'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_972c3a4903b7cd00709cd4e7513b6021
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32vjOBB+z18xiHtM2jhxs00IgXb35VhKs2UP7liXoMhje1pZ0ulHGlP6vx+y
+ u3Gaa6F5CLJm5vvmm5FGzwMARjlbABMV96I2cnT1Q+xvbm/9X3XBq60u1uqfxx87fvWV7q6JDWOE
+ 3j6g8L+jzoSujURPWnVmYZF7jKjJl+l4Pp7P0nFrqHWOMoaVxo9SPZqMJ+lofDkaz14DK00CHVvA
+ rwEAwHP7H1NUOe7ZAlqYdqdG53iJbHFwAmBWy7jDuHPkPFeeDXuj0MqjilmrIOWRwWstN4JL2RN3
+ v+ejdV8nLuVmG77+Pb5e1+UdfZs/fp/I9cNDNbulI74OujFtQkVQ4lCfI/thf3FCBsAUr9vYm+am
+ Ldvw1IHbMtSofEybPWdM8i3KjC1+PWfMeW59xhbjYcZQ5RlbTOOydXHRJ2O3JjJDkrH7YcY87qN/
+ xpZVslpbnQfh4Q53hE8LoHWlFUKSwtrq5XmVrDL2MjyimV4ceJL0A6LJKZFZ/awQFD69xQeLxqKL
+ woCDo1JRQYIrD8GUlucIeocWjMUd6eCgPVTuDCLYNpDM4d/AJfkGyAHuBbb0XA7hiXwV42oKNdTc
+ oyUuHQSHOfjK6lBWOvgz+I4NFMh9sOiAlJAhx8Xy3JyqTtJe9mTygezpqewgV1mmfndxKWn1rVG8
+ JgF/OslVDjk5I3kDpDyWlkeU5bmk06j08mYNNScFgtdo+Xs+V8kMrkkrEiAqMscuy/OYyFtBk0kv
+ aDr9fB+vufdoG5BUYKw61bGDjnY4BMmdJ1UChyJICTlvQBdQId81sfJd3zoF4BrnsQbTHj904HxQ
+ KgabSnsdewFb7asIIqmsPMRySf006r6EVjnFHN3ZO92aHh3SdHb5ydtgVrc7tFzG41ORRMC9QRWl
+ Affwx3w+H4KvyEGOOxIIOUraoe1OnpSoPOy4DAiFtmD0E9qo2ro29VZWabmpGkDlq+CIO3/I/v6F
+ vbnzL4P31vdHo8xiERyXrzPudf/lMDSlLo3VW3cyA1lBily1schdO4uY89p03JGnZWDhzbxlxura
+ +I3Xj6gi4DRJOzzWPwe9dZJ+ebV67bnsDRezZPgO4CZHz6mdyIdHQHBRYd6H9o8BDznpI8PgSPb/
+ 03kPu5NOqvwMfG8QcbpgvjEWcxJvJfduFuNz+ZHbocxtwqy7A5uCVInWWGpfLFaYTXIxzy+naSIE
+ G7wM/gMAAP//AwBzYKEgugcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65fc17c52630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3526'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c274d73e1ce5f8e356bf4e2b69d3056a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV32/iOBB+568YWfcILYHAFlQhbXUv1Yprr1qpp91UyDiTZLaO7fUPCkL9309O
+ WgJcTyoPyPE3M998Y+fLvgfAKGdzYKLiXtRGDr7+Lbb3099/eXQ/eDUym3+Wa5Wqx6J4qB3rxwy9
+ /oXCv2ddCF0biZ60amFhkXuMVZMv4+FsOJum4waodY4yppXGD1I9GA1H6WB4NRhO3xIrTQIdm8PP
+ HgDAvvmPLaoct2wOw/77To3O8RLZ/BAEwKyWcYdx58h5rjzrd6DQyqOKXasg5RHgtZYrwaXsiNvf
+ /mjdzYlLuXrY3j7fmuXy+/MPe3fz8O3X45Cerx7xiK8tvTNNQ0VQ4jCfI/ywPz8jA2CK103ucrds
+ xtY/D+C2DDUqH9tm+4xJvkaZsfnPfcac59ZnbD7sZwxVnrH5OC6bEBdjMnZnIjMkGXvqZ8zjNsZn
+ 7LpKFvdW50F4eMAN4csc6L7SCiFJ4d7q68sqWWTstX9EM54ceJLJ5GOi0TmRWXyvEBS+nNYHi8ai
+ i8KAg6NSUUGCKw/BlJbnCHqDFozFDengoLlU7gJisXUgmcPvwCX5HZAD3Aps6Lnswwv5KubVFGqo
+ uUdLXDoIDnPwldWhrHTwF/ANd1Ag98GiA1JChhzn15fmXHUy7cY7Sr98LHt8LjvIRZapa0mLP3eK
+ 1yTg1kmucsjJGcl3QMpjaXnMvr6U9B6dXi3voeakQPAaLT/GviZTuCGtSICoyBygy0h22vRoMuru
+ RJp8+qxuuPdodyCpwDhZquMpOdpgHyR3nlQJHIogJeR8B7qACvlmF6fbnk3bNbid81iDaa4YOnA+
+ KBWTTaW9jvOGtfZVLCKprDzE0Uj9MmifhFY5xR7dxQcnMk6nB3Hp9LM33izuNmi5jFekIomAW4Mq
+ SgPu4Y/ZbNYHX5GDHDckEHKUtEHb3i4pUXnYcBkQCm3B6Be0UbV1TeuNrNJyU+0Ala+CI+78ofun
+ V3byXr/2Plo/HdmVxSI4Lt987G3/9WCMUpfG6rU78zlWkCJXrSxy1/gNc16bljvyNAwsnHgqM1bX
+ xq+8fkYVC46TtK3HOsvv0FH6Zs/Ma89lB0wm72knBVc5ek6N6x6MXnBRYd6ldobPQ076COgdyf5v
+ Ox/VbqWTKj9TvgNEdBDMV8ZiTuJUchdmMX4S/y/sMOamYda+A6uCVInWWGq+Sqwwq2Qyy6/GaSIE
+ 6732/gUAAP//AwA+fnFZngcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65fd91e48630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5448'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_c8307af5f6a6982dd9f2522a927838c8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV227jNhB991cMiD7aiWXLTmwEBjYIGmzb3aTdNotiFRg0OZZmlyJZXnxBkH8v
+ KCeW7aZA/GBQPDNz5gypo6cOACPJpsBExYOorep9+F1sHvgv1xfj3+4imh9cxs3Xh+u7m5vsi2Td
+ lGEW31GE16wzYWqrMJDRO1g45AFT1exi2J/0J+N80gC1kahSWmlDLze9QX+Q9/qXvf74JbEyJNCz
+ KXzrAAA8Nf+pRS1xw6bQ777u1Og9L5FN90EAzBmVdhj3nnzgOrBuCwqjA+rUtY5KHQDBGDUXXKmW
+ ePd7Oli3c+JKzRffxe3dbfn3z0oNP6uvHx/+MvmX9e3FAd+u9NY2DS2jFvv5HOD7/ekJGQDTvG5y
+ P20/NWPrngZwV8YadUhts6eCKb5AVbDpt6eC+cBdKNi03y0Yalmw6TAtmxCfYgp2ZxMzZAV77BYs
+ 4CbFF+yqymb3zsgoAvyBK8L1FOi+Mhohy+HemavzKpsV7Ll7QDMc7Xmy0ehtosEpkZ39WSFoXB/X
+ B4fWoU/CgIOnUtOSBNcBoi0dlwhmhQ6swxWZ6KG5VP4MUrFFJCXhn8gVhS2QB9wIbOi56sKaQpXy
+ aoo11DygI648RI8SQuVMLCsTwxn8iltYIg/RoQfSQkWJ06tze6o6G7fjHeQXb8sensqOalYU+krR
+ 7GareU0CPnrFtQRJ3iq+BdIBS8dT9tW5otfo/PLTPdScNAheo+OH2IdsDNdkNAkQFdk9dJ7Ijpse
+ jAbtncizd5/VNQ8B3RYULTFNlup0Sp5W2AXFfSBdAodlVAok34JZQoV8tU3T3Z3NrmvwWx+wBttc
+ MfTgQ9Q6JdvKBJPmDQsTqlREUVkFSKNRZt3bPQmjJaUe/dkbJzLMx3tx+fi9N97O7lbouEpXpCKF
+ gBuLOkkDHuCnyWTShVCRB4krEggSFa3Q7W6XUqgDrLiKCEvjwJo1uqTa+ab1RlbpuK22gDpU0RP3
+ Yd/94zM7eq+fO2+tHw/syuEyeq5efOxl/3lvjMqU1pmFP/E5tiRNvpo75L7xG+aDsTvuxNMwsHjk
+ qcw6U9swD+YH6lRwmOW7eqy1/BYd5C/2zIIJXLXAaPSadlRwLjFwalx3b/SCiwplm9oaPo+SzAHQ
+ OZD933beqr2TTrp8T/kWEMlBUM6tQ0niWHIb5jB9Ev8vbD/mpmG2ewfmS9IlOuuo+SqxpZ1no4m8
+ HOaZEKzz3PkXAAD//wMA+eEEMJ4HAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de65ffcfee1630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:13 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4231'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_36f5e976ad341afa918af5ee787cb135
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVbY/aOBD+zq8YWfcx7BICLKAV0vZuq/Z629Lq3tRmhbzOJJnWsV3bgY1W+99P
+ DpSwHJXgAwTPzPPMMxnPPPUAGGVsDkyU3IvKyP7NR/H42ejf/3pX5sPN+zfy/dVr8TbxH2/oD82i
+ EKEfvqLwP6IuhK6MRE9abc3CIvcYUOOrZDAbzCbjpDVUOkMZwgrj+yPdHw6Go/5g2h9MdoGlJoGO
+ zeFLDwDgqf0OKaoMH9kcBtGPkwqd4wWy+d4JgFktwwnjzpHzXHkWdUahlUcVsla1lAcGr7VcCS5l
+ R7z9PB08d3XiUq7+WX56c/v5dTUe3t5VX2fffs3+ptuR/veAbwvdmDahvFZiX58D+/58fkQGwBSv
+ 2ti75q4tW3TswG1RV6h8SJs9pUzyB5Qpm395Spnz3PqUzQdRylBlKZsn4bF1ccEnZR9MYIY4ZfdR
+ yjw+Bv+UXZfxYml1VgsPn3BNuJkDLUutEOIRLK2+vizjRcqeowOaZLzniUc/IRoeE5nFnyWCws1L
+ fLBoLLogDDg4KhTlJLjyUJvC8gxBr9GCsbgmXTtom8pdQAB7qElm8L3mknwD5AAfBbb0XEawIV+G
+ uIrqCiru0RKXDmqHGfjS6roode0vjrTFowNx09lpccmRuHfYQI7c1xYdkBKyznB+fWmOCxfPRnvw
+ 4XB6ZuUkLX5rFK9IwFsnucogI2ckb4CUx8LyEHZ9KemYbpgkHd14cp6WQDea3i2h4qRA8AotPwk+
+ iTvwq9mZ7SZpcRNP4BVpRQJESeYk9rSrUzKenVmny1ou0lSF27L7uTaLV9x7tA1IyjG0CFWh3Ryt
+ MQLJnSdVAIe8lhIy3oDOoUS+bkKbbJtsWwFwjfNYgWnvCjpwvlYqBJtSex3eOjxoXwYQSUXpIbwn
+ qTf97T+hVUYhbXfccMmk0zqaXp35kkJvHUv9sEbLZej8kiQCPhpUQShwD7/MZrMIfEkOMlyTQMhQ
+ 0hrt9tJIicrDmssaIdcWjN6gDTWwrhXSiiwsN2UDqHxZO+LOu4tdj98/sxfj6rl36vn+YApbzGvH
+ 5W48786f9/Ne6sJY/eCOxjfLSZErVxa5a8coc16bLXfgaRlY/WJVMGN1ZfzK62+oAmASj7Z4rNtk
+ B9ZBvLN67bnsDJN4HJ0AXGXoObXLZL+/BBclZl1ot8d4nZE+MPQOZP8/nVPYW+mkinPgO4MIgxGz
+ lbGYkXgpuXOzGDb9z9z2ZW4TZtsbscpJFWiNpXbZstys4vEsmyajWAjWe+79BwAA//8DACIFpF51
+ CAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de660188d80630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6921'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_33a7c935d55b2b1f4b0dd5827afa400a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1774'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV72/iOBD9zl8xsvYjtAQCLahC6u7dSXd7VWm1d7vSpkKuM0lm17Fd/6BEVf/3
+ lUNLgOtJ5QNy/GbmzRs7L089AEY5mwMTFfeiNnJweSM21d9Xv18O069+efmwTMYPf9hvn3/8vPk0
+ Y/2Yoe9/oPCvWSdC10aiJ622sLDIPcaqydl4OBvOptOkBWqdo4xppfGDVA9Gw1E6GJ4PhtOXxEqT
+ QMfm8L0HAPDU/scWVY4bNodh/3WnRud4iWy+CwJgVsu4w7hz5DxXnvU7UGjlUcWuVZByD/Bay5Xg
+ UnbE29/T3rqbE5dyZf+6/ffTzWx5O/1yvf5nc1b46/Nv/Ibv8W1LN6ZtqAhK7Oazh+/250dkAEzx
+ us29aq7asfWPA7gtQ43Kx7bZU8Ykv0eZsfn3p4w5z63P2HzYzxiqPGPzcVy2IS7GZOzaRGZIMnbX
+ z5jHTYzP2EWVLJZW50F4uMU14eMcaFlphZCksLT64rRKFhl77u/RjCc7nmQyeZtodExkFl8qBIWP
+ h/XBorHoojDg4KhUVJDgykMwpeU5gl6jBWNxTTo4aC+VO4FY7D6QzOEhcEm+AXKAG4EtPZd9eCRf
+ xbyaQg0192iJSwfBYQ6+sjqUlQ7+BD5jAwVyHyw6ICVkyHF+cWqOVSfTbryj9Oxt2eNj2UEuskxd
+ SFr81ihek4A/neQqh5yckbwBUh5Ly2P2xamk1+j0/GoJNScFgtdo+T52mUzhI2lFAkRFZgedRrLD
+ pkeTUXcn0vTdZ/WRe4+2AUkFxslSHU/J0Rr7ILnzpErgUAQpIecN6AIq5OsmTnd7NtuuwTXOYw2m
+ vWLowPmgVEw2lfY6zhvuta9iEUll5SGORurHwfZJaJVT7NGdvHEi43S2E5eev/fGm8X1Gi2X8YpU
+ JBFwY1BFacA9fJjNZn3wFTnIcU0CIUdJa7Tb2yUlKg9rLgNCoS0Y/Yg2qraubb2VVVpuqgZQ+So4
+ 4s7vur97Zgfv9XPvrfXdnl1ZLILj8sXHXvafd8YodWmsvndHPscKUuSqlUXuWr9hzmuz5Y48LQML
+ B57KjNW18Suvf6KKBcdJuq3HOsvv0FH6Ys/Ma89lB0wmr2kHBVc5ek6t6+6MXnBRYd6ldobPQ056
+ D+jtyf5vO2/V3konVb6nfAeI6CCYr4zFnMSh5C7MYvwk/l/Ybsxtw2z7DqwKUiVaY6n9KrHCrJLJ
+ LD8fp4kQrPfc+wUAAP//AwD0ykabngcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66044dbb5630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:26 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5091'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_a0395231b3d681dc4d32dbd583365355
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevnDZVEmz7Hb3gnpAtAeEAIlWQijy2i+JwfEz9ovUpdp/R85u
+ N6koEhcfZt6MZkZ+zACE0WILQnWSVe9tfv1JPfT3X35XV+uvv8r3a1V6+e7jh+vy893NlVgkBe1+
+ oOIn1YWi3ltkQ+5Iq4CSMbmW66rYFJvVajUSPWm0SdZ6zpc5D2FH+WVxucyLZV5sTuqOjMIotvAt
+ AwB4HN+U02l8EFsoFk9IjzHKFsX2fAQgAtmECBmjiSwdi8VEKnKMbox+g9bSK7h93UOHAYEJOrQe
+ 9jRcwF0nGZR0cAuaoKGQYGDScv927hewGaJMndxg7Qk/nANaan2gXTzxZ7wxzsSuDigjuRQmMnkx
+ socM4Ps4xPCsm/CBes810090ybBcHu3ENP+MXJ9IJpZ2wqty8YJbrZGlsXE2pFBSdagn5bS6HLSh
+ GZHNOv8d5iXvY2/j2v+xnwil0DPq2gfURj0vPJ0FTJ/zX2fnjcfAIu4jY183xrUYfDDHr9H4+o3e
+ VUW1qppGZIfsDwAAAP//AwDpl2V/KAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66065fc85630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '837'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_c1e8614ce90bc1c548bcde3ee14bc1bd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUUW+bMBDH3/MprHsmE2AgwNvWtdMmdVW1TltbKuQYQ2iN7WEjrYvy3SdIimmW
+ TvCALP/vd/e34W67QAjqAlIEdEMMbRRfvr+mv8XZ09X17eXdxePHJ/kj4Pji7ItRv27W4PSEXD8y
+ al6od1Q2ijNTS7GXacuIYX1Wb4XdxE2iaDUIjSwY77FKmWWwNF27lkvf9YOlGyzd5EBvZE2ZhhTd
+ LxBCaDu8e5+iYL8hRa7zstMwrUnFIB2DEIJW8n4HiNa1NkQYcKxIpTBM9NZFx/lEMFLynBLObeH9
+ s52s7WURzvO7z+ebQKsPG/qpKm9/6m9fb/6ct9+LSb196mc1GCo7QcdLmujjfnpUDCEQpBnYy+fL
+ 4e6c4wDSVl3DhOltwzYDTtaMZ5DebzPQhrQmg9TznAyYKDJI/cg5xOg+KIMr1ZdGXgYPO2fCrCwT
+ v8H4x4znByPk4eQ0hY8pH4fWXujO9OcnlsKeO9MhDmJLRXimwyBMRipYBTMdhp6lQhzMdBjGvqWS
+ 1UyHUYxHKkriud84sNQqjGc6jN3I/hq+9x+HDzt49bvuFqfWD5MubFnZacIP7XnY3439zmWlWrnW
+ R+0LZS1qvclbRvTQRqCNVPvafZ2hAnSvRgWoVjbK5EY+MdEnxF60zwd2nFnVi/FBNdIQboUgSZwT
+ CfOCGVIPw2ScX5TQDSssaucY6YpaToTF5Nj/2jmVe3/0WlRz0luBUqYMK3LVsqKmr49sw1rWj/u3
+ wsZrHgyDftaGNXlZi4q1qq2HYQulysNijV0c4bKExW7xFwAA//8DALC4/356BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6606c4b57630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6136'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_7d6e52566ca3d40de026b8fa5e7079e7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUXW+bMBSG7/MrrHNNJsB833XSNlVTV7Vb1UqlQo4xCZuxGTbdsij/fTJJMc3S
+ CS6Q5fc857w2nLNbIAR1CRkCuiGaNi1fXtzQ3/pBpxtfMP/28vnn5fXH+yRmn99fXG7BMYRcfWdU
+ v1DvqGxaznQtxUGmHSOamaxejN3UTaMYD0IjS8YNtm71MljqvlvJpe/6wdINlm56pDeypkxBhh4X
+ CCG0G97GpyjZb8iQ67zsNEwpsmaQjUEIQSe52QGiVK00ERocK1IpNBPGuug5nwhaSl5QwrktfHh2
+ k7W9LMJ58eHP9lt6+6u6v9vefXl+WPXi6hP5Gt1M6h1Sb9vBUNULOl7SRB/3s5NiCIEgzcBeba+G
+ u3NOA0i37hsmtLENuxw4WTGeQ/a4y0Fp0ukcMs9zcmCizCHzI+cYo0xQDtetKY28HJ72zoSJLZO8
+ wfinjOcHI+Th9DyFTykfh9Ze6M7056eWwp470yEOsKXCZKbDILTnCqJ0psPQs1TopzMdhpFvqTie
+ 6dA02AsVJcncb4wtFQfJTIdxHFkq9f7j8GkPr37X/eLc+mnShR2rekX4sT2P+/ux37lct51cqZP2
+ haoWtdoUHSNqaCNQWraH2qbOUAH6V6MC2k42rS60/MGESYi96JAP7Dizqpfgo6qlJtwKQZo6ZxIW
+ JdOkHobJOL8ooRtWWtTOMdKXtZwIi8mx/7VzLvfh6LVYz0lvBUpZq1lZtB0ra/r6yDasY2bcvxU2
+ XvNgGNRWadYUVS3WrGu7ehi2ULVFWK6wiyNcVbDYL/4CAAD//wMAiAxcY3oGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de660940998630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5201'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_3012737913bb856496e574ae202275f4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUXW+bMBSG7/MrrHNNJr5CEu629WaTsqqaumwqETLGEK/G9mwzNY3y3ydIimma
+ TuECIb/nOee1Ocf7CULASkgRkC22pFF8+vGOPD3/eSx/PCefomKmvv/9mnz7/EWvft4wCV5HyOI3
+ JfaF+kBkozi1TIqjTDTFlnZZg3nkL/1lMl/2QiNLyjusVnYaT22rCzkN/TCe+vHUX57orWSEGkjR
+ wwQhhPb9u/MpSvoEKfK9l5WGGoNrCukQhBBoybsVwMYwY7Gw4DmRSGGp6KyLlvORYKXkOcGcu8LH
+ Zz/6doeFOc9/3d8Xu9VMPcXVXXOzXq/Xt9F2sa5H9Y6pd6o3VLWCDIc00of19KwYQiBw07Or3ao/
+ O+88AOu6baiwnW3YZ8BxQXkG6cM+A2OxthmkQeBlQEWZQRom3inGdEEZ3KquNAoy2By8MTObD1Aw
+ X1ymwjfUwnfUMrmWWi6cwd7sNVQYRAMVBe84jM6pKHQO43l4JRXP44FKwv/V2hzg1S86TC59b0ad
+ p2nVGsxPLXlaPww9zmWttCzMWctCxQQz21xTbPrWAWOlOtbu6vQVoH01HqC0bJTNrXykoksYBckx
+ H7gRdmrgL06qlRZzJ8Rh7F1ImJfUYtYP0DCzBJMtLR3qZhe3JZMjYTLa9ls7l3Ift85EfU16JxBC
+ laVlrjQtGXm9ZRemaXfFvRc2HHNvGMzOWNrkFRM11Uqz/oKBSuWzsoj8KImqCiaHyT8AAAD//wMA
+ 0j1WRm4FAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de660b59912630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:42 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3523'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_887a6079bed540461fc95c36cdc2aba1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTY+bMBC951dYcyYV3wFurdRutcpqtYftHpYIOcYQd41tYaNuFOW/V5AsJmm2
+ ggOy5s2beX4wc1ggBKyEDAHZYUMaxZdfn8jef5S7O0Xq5z/f2N2PaP9ChfhZPu8ewekZcvubEvPB
+ +kJkozg1TIoTTFqKDe2reqvATd00TvwBaGRJeU+rlVmGS9O1W7n0XT9cuuHSTc/snWSEasjQ6wIh
+ hA7Du9cpSvoOGXKdj0hDtcY1hWxMQghayfsIYK2ZNlgYcCxIpDBU9NJFx/kEMFLygmDObePTc5ic
+ rVmY82L9vn9K1vfvbvy9+sX8NXl6a+6bl2TS71R6rwZBVSfIaNIEH+PZVTOEQOBm4D7sHwbvnOsE
+ 3NZdQ4XpZcMhB463lOeQvR5y0Aa3JofM85wcqChzyPzYOefoPimHR9W3Rl4Om6Mz4awsJ/mE419z
+ PD8cSV6Q3mYF1yw/iKy8yJ2pz08tK/DcmQqDMLCsKJmpMEzjkRUNZs5RGIXWwiia62GUWg9jd66H
+ q8i6sVrN9TBxXfuRvWimwiQKJr/G/zzcHOHidz0ubp03kylsadVpzM/jeY4fx3nnslat3Oqr8YWK
+ CaZ3RUuxHsYItJHq1LvvM3SA7mJVgGplo0xh5BsVfcHAi0/1wK4zi3pJcEaNNJhbIExT50bBoqQG
+ s2GZjPuLYLKjpaXaPYa7kskJsJhc+185t2qfrs5EPae8BQihytCyUC0tGbm8sk1rab/uP0sbbR4E
+ g95rQ5uiYqKmrWrZsGyhUkVUbgM3iIOqgsVx8RcAAP//AwDk1zlzegYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de660cd9dad630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:48 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5644'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_b8ce54f06d3d4696459cb3cc8d45a68a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUW2+bMBTH3/MprPNMJm4hCW+tqlVTW21T91Yi5BhDnBrbs422KMp3n4AUk0un
+ 8IDQ+Z/fuZhzvJ8gBKyAFAHZYEtqxad3P8lusVsz8Rp8ravnh4A9sUjbZ/W4TR7Bawm53lJiP6gv
+ RNaKU8uk6GWiKba0jRrMI3/pL5PFohNqWVDeYpWy03hqG72W09AP46kfT/3lkd5IRqiBFL1NEEJo
+ 373bOkVB/0KKfO/DUlNjcEUhHZwQAi15awFsDDMWCwueE4kUloq2dNFwPhKslDwnmHOXuH/2o293
+ WJjz/KVO/vwSS/p0//vHVr7fNfPq9eHbfTPK14feqa6gshFkOKSRPtjTs2QIgcB1x77sXrqz884d
+ sK6amgrblg37DDheU55B+rbPwFisbQZpEHgZUFFkkIaJd/QxrVMG31WbGgUZrA7emJnNByiYL65T
+ 4QW18F0qP7qRCv2Zo4LlrVQ4amv2CRVdUImjoii8kYqieKDi5ew/1OoAJ7/oMLn2vRpNnqZlYzA/
+ juTRfhhmnMtKabk2ZyMLJRPMbHJNselGB4yVqs/d5ukyQHOyHqC0rJXNrXynog0YBUkfD9wKOzXw
+ F0fVSou5E+Iw9q4EzAtqMesWaNhZgsmGFg51u4ubgsmRMBm1fVnOtdh960xUt4R3AiFUWVrkStOC
+ kdOWnZum7RX3mdtwzF3BYHbG0jovmaioVpp1FwyUKp8V68iPkqgsYXKY/AMAAP//AwCDIgbwbgUA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de660f1dd91630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4288'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_5369485d8ba38373aa89eec06e6cdbf8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBC95ysGX7gkKEm7bNvLCoHELgfQisOCEIpce5KYdTzGnqiUVf8dJe02
+ WbFIXHx4b97TezN+SACE0WIDQrWSVedt9uZW7d+9/Xxx++njh6+r31/W9fpC6pZ/Xr8v70Q6KGj7
+ AxU/ql4p6rxFNuSOtAooGQfX4nKRr/P16/ViJDrSaAdZ4zlbUtYZZ7IyL5dZfpkVq5O6JaMwig18
+ SwAAHsZ3yOk0/hIbyNNHpMMYZYNicx4CEIHsgAgZo4ksHYt0IhU5RjdGv3nZgSbjGtihtSlwK919
+ fAHXtAO5pZ5hT/0V3LWSQUkHN9Ci9QMIO8MtMGm5v5qbB6z7KIeCrrf2hB/OaS01PtA2nvgzXhtn
+ YlsFlJHckCwyeTGyhwTg+7iV/klR4QN1niume3SDYbE82onpFjNydSKZWNoJX5TpM26VRpbGxtlW
+ hZKqRT0ppxPIXhuaEcms899hnvM+9jau+R/7iVAKPaOufEBt1NPC01jA4af+a+y84zGwiPvI2FW1
+ cQ0GH8zxn9S+yrcy10W5rAuRHJI/AAAA//8DAM4xKxY1AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6610dccfc630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '508'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_90ad5474ea8b7a78c7b00bd63ebc57c4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVX2/bNhB/96c4EHuUA1t2EttvTbMN25DFDbJhQBUYNHmSrqVIlqTsqEa++0Ap
+ sRQ3BaIHQebd/f7w6ONhBMBIshUwUfIgKqvGHz6J5treLP+5Ol/Pbv+l/8zfX/bbXz/dp/e/EUti
+ hdl+QRFeqs6EqazCQEZ3YeGQB4yo08vZZDlZXixnbaAyElUsK2wYz824Ik3jdJLOx5PL8XTxXF0a
+ EujZCj6PAAAO7Tvq1BIf2QomyctKhd7zAtnqmATAnFFxhXHvyQeuA0v6oDA6oI7Sda3UIBCMURvB
+ leqJu+cw+O43iyu1+RjC8vvy69399Z/+3Dd33z6u5UX1ux7wddCNbQXltRbHTRrEj+urEzIApnnV
+ 1t40N+3eJacJ3BV1hTpE2eyQMcW3qDK2+nzImA/chYytJknGUMuMrdLz5DnFx5yM3drIDNOMPSQZ
+ C/gY8zO2dkbWIsAd7gj3K6B1aTTCdA5rZzL2lAzQ08sj/CJ9Gz49gb8vETTuX8OCQ+vQRy/AwVOh
+ KSfBdYDaFo5LBLNDB9bhjkztoT1M/gwi2LYmJeFbzRWFBsgDPgpsublKYE+hjHUV1RVUPKAjrjzU
+ HiWE0pm6KE0dzuAvbCBHHmqHHkgLVUtcnbhdzI9up+lP7M5O7F43mlck4A+vuJYgyVvFGyAdsHA8
+ lpyQTNMBy/zifSzzxc0aKk4aBK/Q8VPM+WKg/PJ9mB+mF3BFRpMAUZL9Qeayh1xcvK/3VzwEdA0o
+ yjF2iqrYdU87TEBxH0gXwCGvlQLJGzA5lMh3TexW1+vOHfjGB6zAticVPfhQax2LbWmCif2DrQll
+ BFFUlAHi1iuzH3e/hNGSokB/dupqsRj8Xybvc3W7Q8dVPGslKQR8tKijJ+ABflkulwmEkjxI3JFA
+ kKhoh647pkqhDrDjqkbIjQNr9uiiXedbza2fwnFbNoA6lLUn7kMr++GJvZoHT6O3vh8GY85hXnuu
+ nuff8/rTcaAqU1hntv5kPrKcNPly45D7dk4xH4ztuCNPy8DqV7OYWWcqGzbBfEUdAWfTeYfH+vui
+ j6az57HOgglc9YHz+UvZK8CNxMCpndbHC0JwUaLsS/uLgteSzCAwGtj+Uc5b2J110sV74PuAiGMI
+ 5cY6lCReW+7THMb79Gdpx21uBbPu4G9y0gU666i9zVhuN5Mtn8hpOs+nbPQ0+h8AAP//AwAcVeZ3
+ 2wcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de661121a22630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:14:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3646'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_23446cd775e50021d799251b1c57fb22
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA5RWTW/jNhC9+1cMiB7thWTLieVbFgvExTZIsth2C6wCg6ZG0mwpkuWHHTXIfy8o
+ Zy3HSQHXB4PmzLz3OBzO+GkEwKhkS2Ci4V60Rk6u7kW3WtGX5L5e/fPtOlP59afbz6nRxC+v2DhG
+ 6M0PFP5n1AehWyPRk1Z7s7DIPUbU9HKW5El+kV/2hlaXKGNYbfwk05OWFE2myTSbJJeTdPES3WgS
+ 6NgSvo8AAJ7676hTlfjIlpCMf+606ByvkS0PTgDMahl3GHeOnOfKs/FgFFp5VFG6ClIeGbzWci24
+ lAPx/vN0tB6SxaVc7x5/v/fffrtY/SFXTq/Cj+s/u0sVkiO+PXRnekFVUOKQpCP7YX95QgbAFG/7
+ 2Jvups/d+NSB2zq0qHyUzZ4KJvkGZcGW358K5jy3vmDLZFwwVGXBlrO47F1c9CnYrYnMkBbsYVww
+ j4/Rv2B3VpdBePiCW8LdEuiu0QohzeDO6oI9j4/Q0+n0gJ/O8/cJpicEXxsEhbvXwGDRWHTxNMDB
+ Ua2oIsGVh2Bqy0sEvUULxuKWdHDQl5P7cKrnIhv05Mn5ejaBZAl/By7Jd0AO8FFg787lGHbkm0jd
+ Umih5R4tcekgOCzBN1aHutHBvxGT5wcx0z5R74iZnYj5jB1UyH2w6ICUkKHE5QnwdHoxAM8X5wF/
+ 6hRvScCvTnJVQknOSN4BKY+15THklGV+JH8xO48lW9zcQctJgeAtWn6KuciO6jE5D/MqvYCPpBUJ
+ EA2ZE8hZMpTgbH7mlX/k3qPtQFKF8bapjcXnaItjkNx5UjVwqIKUUPIOdAUN8m0Xb/z0lmfz9MCf
+ Jf+j5PYJAtc5jy2Y/tWhA+eDUpHfNNrrWAOw0b6JOiTVjYd4e1LvJvtfQquSIsebt5AdJSbLpucJ
+ u92i5TKWfEMSAR8NqpgW4B5+yfN8DL4hByVuSSCUKGmLdv9apETlYctlQKi0BaN3aGPGrOs19+ep
+ LTdNB6h8Exxx53vZD8/sVW97Hr23fjhq2Rar4Lh86eUv+8+H4SB1bazeuJNezypS5Jq1Re76nsuc
+ 12bPHXl6BhZezRVmrG6NX3v9F6oIOEuzPR4bZt9gjRU+epkqnsvBMM8X43cA1yV6Tv3kOQw7wUWD
+ 5RA6DD0eStJHhtHRsd/KeQ97f3RS9Tnwg0HEbojl2lgsSbw+8uBmMf43+C+3Q5p7wWxf+OuKVI3W
+ WOonM6vMOtnwpEynWZWy0fPoXwAAAP//AwDx+TFwpwgAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6612a9eb4630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:03 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5823'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1f1d07a41150d6c075c7b1e5ad3d96bd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xWUW/bNhB+9684EHuUC0lWbNlvDVZszZI1GYa1QBUYNHWSbqVIhqQcC0H++0A5
+ sRw3A6wHQebdfd/HuyPPTxMARiVbARMN96I1cvrxTvR//h5//u0q+/bwcJmkFW6uOuJ3+cWnOYtC
+ hN78i8K/Rn0QujUSPWm1NwuL3GNATRazeBkvF/FsMLS6RBnCauOnmZ62pGiaxmk2jRfTJH+JbjQJ
+ dGwF3ycAAE/DO+hUJe7YCuLodaVF53iNbHVwAmBWy7DCuHPkPFeeRaNRaOVRBemqk/LI4LWWa8Gl
+ HIn3z9PR95gsLuX6etff5ddXu3j+qfqH0mtx96O9ar/mR3x76N4MgqpOiUOSjuyH9dUJGQBTvB1i
+ b/qbIXfRqQO3ddei8kE2eyqY5BuUBVt9fyqY89z6gq3iqGCoyoKt0ovoxcUFn4J9MYEZkoLdRwXz
+ uAv+Bbu1uuyEh79wS/i4ArpttEJIMri1umDP0RF6ujjA5+n78OkJ/N8NgsLHt7Bg0Vh0YS/AwVGt
+ qCLBlYfO1JaXCHqLFozFLenOwdBM7sOJmjw7qEmy+Hw5m45kCQ8dl+R7IAe4Ezi4cxnBI/kmMLfU
+ tdByj5a4dNA5LME3Vnd1ozt/qiXJ0lFMPj9PzB/YQ4XcdxYdkBKyK3F1CpznY0mT2Xk1/bVXvCUB
+ n53kqoSSnJG8B1Iea8tDyGlhk4uRZbY4jyXLb26h5aRA8BYtP8WcLY+Un9mNH5M5XJJWJEA0ZE4h
+ 52MDzpLsvCxfcu/R9iCpwlBtakPvOdpiBJI7T6oGDlUnJZS8B11Bg3zbh4qfVnmWzEf+xeL8ltsn
+ CFzvPLZghiOHDpzvlAr8ptFehx6AjfZN0CGpbjyE6kn9ON3/ElqVFDh+OgqzxZjrLDvzaH7ZouUy
+ tHxDEgF3BlVIC3APvyyXywh8Qw5K3JJAKFHSFu3+tEiJysOWyw6h0haMfkQbMmbdoHnYT225aXpA
+ 5ZvOEXd+kH3/zN5cbM+T977vj+5ri1XnuHy5yF/Wnw+TQeraWL1xJxc9q0iRa9YWuRsuXOa8Nnvu
+ wDMwsO7NUGHG6tb4tdc/UAXA0GSTl2nyOvhGa5q/Wr32XI6Gi2UevQO4LtFzGsbOYdIJLhosx9Bx
+ 4vGuJH1kmBxt+2c572Hvt06qPgd+NIhwG2K5NhZLEm+3PLpZDH8M/s/tkOZBMNs3/roiVaM1loax
+ zCqzjjc8LpM0qxI2eZ78BwAA//8DACwm4H2kCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66150fc97630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4939'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c72295db4e94e25ebbe6157caeba6c0d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xWTW/jNhC9+1cMiB7lheSPWPJtgwLFdpFddxsE6K4DgyZH0rQUySUpO0KQ/15Q
+ TizHSQvrIMicmfceh8MZP44AGEm2BCZqHkRj1fjjH6K7/fzlO3U/P+3urr5Il87zu/0qW2V/epbE
+ CLP9G0V4ifogTGMVBjL6YBYOecCImi2maZEWi7ToDY2RqGJYZcN4ZsYNaRpP0slsnC7GWf4cXRsS
+ 6NkSfowAAB77d9SpJT6wJaTJy0qD3vMK2fLoBMCcUXGFce/JB64DSwajMDqgjtJ1q9SJIRijNoIr
+ NRAfnseT7yFZXKnN9er7X4tCUvH77DYrV/43/81Kyu5O+A7Qne0Fla0WxySd2I/ryzMyAKZ508fe
+ dDd97pJzB+6qtkEdomz2uGaKb1Gt2fLH45r5wF1Ys2WarBlquWbLyTx5dvHRZ82+2sgM2ZrdJ2sW
+ 8CH6r9nKGdmKAN9wR7hfAq1qoxGyGaycWbOn5AR9sjjC55P34Sdn8Lc1gsb9a1hwaB36uBfg4KnS
+ VJLgOkBrK8clgtmhA+twR6b10BeT/3CmJp8d1WSz9HI525aUhJ8tVxQ6IA/4ILB35yqBPYU6MjfU
+ NtDwgI648tB6lBBqZ9qqNm0415LNJoOY/OoyMZ+xgxJ5aB16IC1UK3F5Dpznw5Fm0/eBp2fAv3aa
+ NyTgk1dcS5DkreIdkA5YOR5Dzg82mw8s08VlLLP8ZgUNJw2CN+j4Oea0OFE+vwzzY3YF12Q0CRA1
+ 2f+DXMwvy/I1DwFdB4pKjKdNTaw9TztMQHEfSFfAoWyVAsk7MCXUyHddPPEPb+p/uADTbHF5yR0S
+ BL7zARuw/ZVDDz60Wkd+W5tgYg3A1oQ66lBU1QHi6SmzHx9+CaMlRY43V2GaDYmZFvllwr7u0HEV
+ S74mhYAPFnVMC/AAvxRFkUCoyYPEHQkEiYp26A63RSnUAXZctQilcWDNHl3MmPO95n4/leO27gB1
+ qFtP3Ide9v0Te9XYnkbvfd+f9GuHZeu5em7kz+tPx8mgTGWd2fqzRs9K0uTrjUPu+4bLfDD2wB15
+ egbWvhoqzDrT2LAJ5h/UEXCazQ54bBh8g3WSv1iDCVwNhnmRJ+8AbiQGTv3YOU46wUWNcggdJh5v
+ JZkTw+hk22/lvId92Drp6hL4wSBiN0S5sQ4liddbHtwcxj8G/+V2THMvmB0Kf1OSrtBZR/1YZqXd
+ pFueymwyKzM2ehr9CwAA//8DADcW9qOkCAAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de661717b5e630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:13 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4543'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_921d6729f3003e51b22c9a202937c9b1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["Option 1", "Option
+ 2", "Option 3"], "type": "string"}, "title": "Labels", "type": "array"}, "text":
+ {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "title":
+ "Text"}}, "required": ["start", "end", "labels"], "title": "LabelItem", "type":
+ "object"}}, "properties": {"label": {"description": "Labels and span indices
+ for text", "items": {"$ref": "#/$defs/LabelItem"}, "title": "Label", "type":
+ "array"}}, "required": ["label"], "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1779'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVUW/bNhB+9684EHu0A8t24thvybqtWxvUW/syVIFxpk7StRTJkJQdNfB/Hygl
+ lu2lQPxg0Ly77+47nr97GgAIzsQShCwxyMqq0c3fsvl3+47kb+HzH+bh5rbSC+M+fpx/+H79WQxj
+ hNl8Ixleoi6kqayiwEZ3ZukIA0XUZD4dL8aLeTJrDZXJSMWwwobRzIwq1jyajCez0Xg+Sq6fo0vD
+ krxYwtcBAMBT+x3r1Bk9iiWMhy83FXmPBYnlwQlAOKPijUDv2QfUQQx7ozQ6kI6l61qpI0MwRq0l
+ KtUn7j5PR+e+WajU+vHGTH99n8uH+fsfK/tX+W01k1+au9+P8nXQjW0LymstD006sh/ul2fJAITG
+ qo29a+7a3g3PHdAVdUU6xLLFUyoUbkilYvn1KRU+oAupWI6HqSCdpWI5jcfWxUefVHyyMTMkqbgf
+ piLQY/RPxcqZrJYB/qEt024JvCqNJkhmsHImFfvhEfo0OcAnl4vX8Sdn+F9KAk27U1xwZB35SAYQ
+ PBeac5aoA9S2cJgRmC05sI62bGoP7TT5C4hgm5pVBg81Kg4NsAd6lNTmRjWEHYcyxlVcV1BhIMeo
+ PNSeMgilM3VRmjpcwAdqICcMtSMPrKWqM1qe0U2u+nZOxj/hOz3j+67RWLGEP71CnUHG3ipsgHWg
+ wmEMOcsySY6yTK/elmV2fbeCClmDxIocnmNO5z3mZfI2zJvkCm7ZaJYgS7bnkJeTfraSNz7+LYZA
+ rgHFOcWn4io+u+ctDUGhD6wLQMhrpSDDBkwOJeG2ic/VPXbHDnzjA1Vg21klDz7UWsdgW5pg4gPC
+ xoQygiguygCx9crsRt0vaXTGsUB/cT7Rk6N/zOLqbaw+bcmhisNWsiKgR0s6cgIM8MtisRhCKNlD
+ RluWBBkp3pLr5lQp0gG2qGqC3DiwZkcu0nW+rbnlUzi0ZQOkQ1l7Rh/asu/34kQR9oPXzvdHQuco
+ rz2qZwV8vt8fJFWZwjqz8WcKKXLW7Mu1I/StUgkfjO1yxzxtBlGfqLGwzlQ2rIP5TjoCTrs10Mrw
+ y8borZPps7CLYAKq3nA5ewk7AVxnFJBbvT6sCImypKwP7VcF1hmbI8PgiPb/y3kNu6POungLfG+Q
+ UYcoW1tHGctTyr2bo7hRf+Z2aHNbsOgGf52zLshZx+0+E7ldjzc4zpLJLE/EYD/4DwAA//8DAOSq
+ CvDdBwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de661900f58630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3576'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_054c6c4dd7d3143f0efee96d417c593d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW4aMRC98xVTX3JZEJQgBJeqp8IRNeqlqpCxh7VTr8e1x0lXEf9erdnsEjWV
+ evHhvXlP7834ZQIgrBZbEMpIVk1w088H1Z7qXw8m1zoo+eVrPoRvO7N0h4e0FlWnoNMjKn5VzRQ1
+ wSFb8ldaRZSMnetivZxv5pv1Yl2IhjS6TlYHni5nqynneKLpfPFx1SsNWYVJbOH7BADgpbxdRq/x
+ t9jCvHpFGkxJ1ii2wxCAiOQ6RMiUbGLpWVQjqcgz+hJ7h87RB9jfNfCYE4OEJxs5SweDsoJEsAdN
+ /o7ByCeEM6Kzvk4VnDIXrcGIwAQGXYCWMjxbNiB9y8b6uiAeUc9gR8+gpId9718oJi3bT7cJI55z
+ kt2GfHauxy9DZUd1iHRKPT/gZ+ttMseIMpHv6iWmIAp7mQD8KKvNb7YlQqQm8JHpJ/rOcHF/tRPj
+ MUdyuepJJpZuxO831TtuR40srUs3pxFKKoN6VI53lFlbuiEmN53/DvOe97W39fX/2I+EUhgY9TFE
+ 1Fa9LTyORey++r/Ghh2XwCK1ibE5nq2vMYZoy2crp7xM/gAAAP//AwCycIxsawMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de661a7eb64630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:18 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '636'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_24b1a9c221cf843bb704c2014e82f860
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW+bMBR9z6+w7jOpwE4g4W0fnSZ13Ue77kOlQo5xEjpjM9tMZVH++wRJMc1a
+ yTwg5HPOvfdcwWE3QQjKAlIEbEstq2oxffWFtezvA716/ad9c9F8f1dfb7fri8Wat9UHCDqFWt1z
+ Zh9VZ0xVteC2VPIAM82p5V3VKCHhMlwm0aIHKlVw0ck2tZ2Ss/nUNnqlpmGE50flVpWMG0jR7QQh
+ hHb9vZtRFvwBUhQGjycVN4ZuOKQDCSHQSnQnQI0pjaXSQuBApqTlshtbNkKMAKuUyBkVwjU+XLvR
+ s1sUFSL/dn1+L2b3Lfn5/stV8vttfPH1oaQ3P0b9DqXbuh9o3Ug2LGiED+fpSTOEQNKq1162l/3e
+ glMC1Zum4tJ2Y8MuA0FXXGSQ3u4yMJZqm0EaBhlwWWSQkig4UkzHyeDj+U0Gd/tgxCZ4oEdkecL/
+ /On6lB/NXP1olvgIFk4QEw9BPHOCReQhWIw8LGMPwTIZBBh7dMDYdcDEwzQmzjROPEbCiRuJhB4C
+ Eo4EkcdaSeTWSvDCQ4CXTjDHHoI5GQk83iUSj97V2Md07EzPXjJ9t4cnn81+8tzz3SgNNF83hopj
+ TBzP90PuCLWptVqZkxiBdSlLs801p6b/nMFYVR96d336DtA8iSyotapqm1v1i8uuIImiQz1wkepQ
+ HOEjapWlwgFzTIJnCuYFt7TsQ23IUUbZlhdO6vKUNkWpRsBkZPv/cZ6rfbBeyo1PeQcwxmvLi7zW
+ vCjZU8uOpnn3y3mJNqy5HxhMayyv8nUpN1zXuhxCf7Kf/AMAAP//AwA0sxjd8wYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de661ad99c4630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3111'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_7f77d0734c944e12474b3cf2422586ba
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXWvbMBR9z68Q99kptpRPvw22boxl61oKG3UxiqzYamXJSPJYCPnvw05quVkL
+ 8oMxOufce8/FPj5MEAJRQIqAVdSxupHTDz/ZvnwW3z7fbjer/RfCi5Lcrmb3tvojNhB1Cr194sy9
+ qK6YrhvJndDqBDPDqeNd1WRJ4nW8XmLcA7UuuOxkZeOm5Go+da3Z6mmc4PlZWWnBuIUUPUwQQujQ
+ 37sZVcH/Qori6OWk5tbSkkM6kBACo2V3AtRaYR1VDiIPMq0cV93YqpVyBDitZc6olL7x6TqMnv2i
+ qJT53yq+obvbr+rpGv/6eE0qYq+36vfdqN+p9L7pB9q1ig0LGuHDeXrRDCFQtO61m/2m31t0SaCm
+ bGuuXDc2HDKQdMtlBunDIQPrqHEZpHGUAVdFBilJojPFdpwMvn+6z+DxGI3YBA/0hKwv+Dc/7i75
+ yczXT2bLEMHKCxYkQLCYecEqCRCsRh7WiwDBejkIMA7ogLHvgEmAaUy8abwMGAkv/UgkDhCQeCRI
+ AtZKEr9WglcBArz2gjkOEMzJSBDwLpHF6F1dhJheeNOz90w/HuHVZ3OcvPX8OEoDw3etpfIcE+fz
+ 45A7UpeN0Vt7ESOwE0rYKjec2v5zBut0c+rd9ek7QPsqsqAxum5c7vQzV11BkiSneuAj1aM4wWfU
+ aUelB+aYRG8UzAvuqOhDbchRRlnFCy/1eUrbQugRMBnZ/n+ct2qfrAtVhpT3AGO8cbzIG8MLwV5b
+ 9jTDu1/Oe7Rhzf3AYPfW8TrfCVVy0xgxhP7kOPkHAAD//wMAoG3LWPMGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de661c21fe4630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2868'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_656e94096be0e1f95fea27ef1dbc4014
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXWvjMBB8z68w++wUW/5K/Na7Fu6gaa/0ypWrg1FkJXErS64kcw0h//2wk1hu
+ moLyEIxmZndmkdfbkeNAWUDqAFljTaqajS/vyeblN3lib9ez7/H9P43u/rwur2h5uShewG0VYvFC
+ iT6qLoioakZ1KfgeJpJiTduqfhJ4U2+aoKgDKlFQ1spWtR4HF9FYN3Ihxp6PooNyLUpCFaTO88hx
+ HGfb/bceeUHfIXU893hSUaXwikLakxwHpGDtCWClSqUx1+AakAiuKW9t84axAaCFYDnBjJnG+992
+ 8GwGhRnLf96qq1l9o8Jv+G/kv/14v3mqH6uHy0G/felN3RlaNpz0Axrg/Xl60sxxgOOq0842s25u
+ 7ikBy1VTUa5b27DNgOEFZRmkz9sMlMZSZ5B6bgaUFxmkge8eKKrlZHB7/ZjBfOcO2AHq6X4wPeH/
+ uns45fuhqe+HiY1gYgRxYCGIQyOY+BaCySDDNLYQTJNegJBFB4RMBxRZZECRyYASC0soMZYCz0IQ
+ eAOBb2Ep8I2lAE0sBGhqBBGyEHSTOQos7lIQD+5qbBM6NqHDT6HP3O5wEDr8KsN8Bx/es93o3PN8
+ sD4kXTYKs8NeOZzv+kXFxKqWYqFO9g4sS16qdS4pVt37D0qLet+77dN1gObDjoNaiqrWuRavlLcF
+ A9/f1wOzgw2KUHxAtdCYGSAKEvdMwbygGpfdFuwXL8FkTQsjNQsYN0UpBsBoEPuznXO199FLvrIp
+ bwBCaK1pkdeSFiX5GNnQJG2/UV/R+jF3hkFtlKZVviz5ispalv1XYrQb/QcAAP//AwD6gzyjJAcA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de661d53e5f630c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2950'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_8d8c697b372168b9b8436f8aa993e38c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV0W6bMBR9z1eg+0wqsEMIvG1auz2sXat2k9pSIcc4hNXYHjZT0ij/PkFSTLNW
+ Mg8I+Zxz7z1XcNhNPA+qAlIP6JoYWis+/XRDtxtycxWfP//9dv1yn0S3D4tEfYna72QDfqeQy9+M
+ mlfVGZW14sxUUhxg2jBiWFc1jHGQBEmMkx6oZcF4JyuVmeKzaGraZimnQYiio3ItK8o0pN7jxPM8
+ b9ffuxlFwTaQeoH/elIzrUnJIB1IngeN5N0JEK0rbYgw4FuQSmGY6MYWLecjwEjJc0o4t40P1270
+ bBdFOM/Vi/xqni8uwvLX5k/y+Z6u7/hDwcmo36H0VvUDrVpBhwWN8OE8PWnmeSBI3Wsvt5f93vxT
+ AmnKtmbCdGPDLgNOloxnkD7uMtCGNCaDNPAzYKLIIMWhf6TojpPB1fnPDJ72/oiN0UAPcXLCv/5x
+ e8oPZ7Z+OItdBAsrmGMHwXxmBYvQQbAYeUjmDoIkHgQIOXRAyHZA2ME0wtY0ih1GQrEdCQcOAhyM
+ BKHDWnFo14rRwkGAEiuIkIMgwiOBw7uE56N3de5iem5Nzz4y/bSHN5/NfvLe89MoDRq2ajXhx5g4
+ nu+H3OGyVI1c6pMYgVUlKr3OG0Z0/zmDNlIdend9+g7QvoksUI2slcmNfGaiK4jD8FAPbKRaFIXo
+ iBppCLdAhLD/TsG8YIZUfagNOUoJXbPCSm2ekrao5AiYjGz/P857tQ/WK1G6lLcApUwZVuSqYUVF
+ 31q2tIZ1v5yPaMOa+4FBb7Vhdb6qRMka1VRD6E/2k38AAAD//wMAkUD+sfMGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6622bdf5ce81c-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:41 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2892'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_fbb69ec55b5f08dd567cbe4811f4ccd2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1766'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-retry-count:
+ - '1'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVXW+bMBR9z69A95lUYCch4a3burXS+qWtD12JkGMMoTU2s83ULMp/nyApplkq
+ mQeEfM65954rOGxHngdlBrEHdE0MrWo+Pr+nf89pHubz3z9x/vXz3ZUiv9bNtz/s+VMEfquQq2dG
+ zZvqjMqq5syUUuxhqhgxrK0aRjhYBItoijqgkhnjrayozRifTcemUSs5DkI0PSjXsqRMQ+w9jTzP
+ 87bdvZ1RZOwVYi/w304qpjUpGMQ9yfNASd6eANG61IYIA74FqRSGiXZs0XA+AIyUPKWEc9t4f20H
+ z3ZRhPP0tTA3j9/Xl/eXt48Xlw/RQ/NSfbm6iAb99qU3dTdQ3gjaL2iA9+fxUTPPA0GqTnu9ue72
+ 5h8TiCqaignTjg3bBDhZMZ5A/LRNQBuiTAJx4CfARJZAjEP/QNEtJ4Gbi4cEljt/wMaop4d4ccS/
+ u/1xzA8ntn44iVwEcyuYYQfBbGIF89BBMB94WMwcBIuoFyDk0AEh2wFhB9MIW9MochgJRXYkHDgI
+ cDAQhA5rxaFdK0ZzBwFaWMEUOQimeCBweJfwbPCuzlxMz6zpyUemlzt499nsRqeel4M0UCxvNOGH
+ mDic7/rc4bKolVzpoxiBvBSlXqeKEd19zqCNrPe92z5dB2jeRRbUSla1SY18YaItiMNwXw9spFoU
+ heiAGmkIt8AUYf9EwTRjhpRdqPU5Sglds8xKbZ6SJivlABgNbP8/zqnae+ulKFzKW4BSVhuWpbVi
+ WUnfW7Y0xdpfzke0fs3dwKA32rAqzUtRMFWrsg/90W70DwAA//8DAM4RN4TzBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662814fe061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2959'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_fa761a550ef268b477078ecf5eb91b97
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSPW/bMBTc9SteuXSxAtmRk9pLkTZDMnbqUBQCTT5KbCk+gnxCagf+74U+Yslo
+ C3ThcPfucHfgawYgrBZ7EKqRrNrg8ocv6vRovrI5uZfHzpiDPa3Xn+Ln08Nuo8SqV9DhByp+U90o
+ aoNDtuRHWkWUjL3r+v622BW7++12IFrS6HpZHTgvKd8UmzIvPuTF3SRsyCpMYg/fMgCA1+HtI3qN
+ v8QeitUb0mJKskaxvxwBiEiuR4RMySaWnsVqJhV5Rj+kfkLn6B08v2+hwYggvYaIUh+BCRp04Qae
+ 6AWU9PAMoxkcqQMmLY8fl6YRTZdk38l3zk34+ZLSUR0iHdLEX3BjvU1NFVEm8n2ixBTEwJ4zgO/D
+ Gt1VQREitYErpp/oe8N1OdqJef4FeTeRTCzdjN9OC167VRpZWpcWawolVYN6Vs7Ty05bWhDZovOf
+ Yf7mPfa2vv4f+5lQCgOjrkJEbdV14fksYv85/3V22XgILNIxMbaVsb7GGKId/4cJVblVZltqlCiy
+ c/YbAAD//wMA7OiQaSgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6629639ab61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '310'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_5ff3e5761df14712b5f625946c896a17
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUXW+bMBSG7/MrLF+TKRDyAXet1E7r1HXR1t2UCjn2Cbg1tmubrmmU/z6ZpECS
+ Ti0XCPye85wPOGczQAhzhlOEaUkcrbQYni3o68VrtUj+wNVtRMv19wcyvU10tDhPHnDgPdTyAah7
+ 8/pCVaUFOK7kTqYGiANPDWfjUTJKZpNpI1SKgfBuhXbDWA2jURQPR/PhaLp3LBWnYHGK7gYIIbRp
+ 7j5FyeAFp2gUvJ1UYC0pAKetEULYKOFPMLGWW0ekw0EnUiUdSJ+1rIXoCU4pkVMiRBd4d216z12f
+ iBB5dPPt6fHykV4yZhdXS6Jm5+Hvs8VFL94OvdZNQqta0rY/Pb09T4+CIYQlqRrf6/V107bg2ICY
+ oq5AOp823mRYkCWIDKd3mwxbR4zLcDqeBRkGyTKcTubB3sZ6owz/vPmV4fsgww5evG2GLS8kX3FK
+ pEO1LgxhkOFt0ONN45Y3H3/IgxcK2tdHBFrWXDD0VBPB3fqIOk9aajL9kKoNVLyuUEUcGE684QEt
+ nHZFh/OPeefEOTBrJPgKELeIV9qAtfz5uPgoHLfgKI4/bqerpeSyQLpUTlnEJVoqVyJG1oIXpUNE
+ MiTU3+HujSrJuO/WcUHRpOt6NAs/1XYhQDr0TER9UsVs3tFOPuKPi68nNA1y3437LT74C7eD957v
+ e8NlYFVbIvZTtz/ftmMsVKGNWtqjqcQrLrktcwPENtOBrVN6F9vHaSLg+mADYG1UpV3u1CNIDxyP
+ kh0PdwuqU8M43qtOOSI6IZ6Mg3eAOQNHeLMj2rVECS2Bda7deiI146onDHpln6bzHntXOpfFZ/Cd
+ QP3EAcu1AcbpYcmdmQG/wP9n1ra5SRjbtXVQ5SsuCzDa8GaH4pXOw0nC5uM4pBQPtoN/AAAA//8D
+ AGoEd19MBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662993ef261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:15:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1762'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_0a6d837a8dd0dc435848885f8728b816
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU72vbMBD9nr9C3GdnxHZ++ls7xkahdGWUwepiFOnsqJUlVZK7ZiH/+5CT2knW
+ kfqDsfXevbt36G4zIAQEh4wAW1HPaiOHF7fsz9df1eXT4u5qUl08/ZR3j8+3vq6+pLOfEIUIvXxE
+ 5t+iPjFdG4leaLWDmUXqMajGs3S0GC1mk3kL1JqjDGGV8cOxHiajZDwczYej6T5wpQVDBxm5HxBC
+ yKZ9hxIVx1fIyCh6O6nROVohZB2JELBahhOgzgnnqfIQ9SDTyqMKVatGygPAay0LRqXsE++ezcF3
+ 3ycqZUHT0l7Navby+SJx3+qbS3nLZ5Pb9CDfTnpt2oLKRrGuPwd4d56dJCMEFK3b2Ov1ddu26JRA
+ bdXUqHwoGzY5SLpEmUN2v8nBeWp9Dlk6i3JAxXPIJvNoz3GBlMP3mx85PEQ5eHwN3BycqJQoBaPK
+ k8ZUlnLMYRsd6E3Hnd48PauHrwxN8EclWTZCcvLcUCn8+kR1vuhUF9OzqsZiLZqa1NSjFTQQj9Ti
+ aW86np/Xu6Teo10TKUokwhFRG4vOiZdT80mcdsLJeHy+nb5RSqiKmJX22hGhyFL7FeF0LUW18oQq
+ TqT+Pdz9Ma24CN06NZRM+q4ns/hDbZcSlScvVDbBxcMWjm7PdvDe98PBUFgsG0flflr259tu/KSu
+ jNVLdzJNUAol3KqwSF17q8F5bXa5Q542AzRHkwvG6tr4wusnVEEwHS12etAvlh6Nk+ke9dpT2QPj
+ dBK9I1hw9FS0s92tE0bZCnkf2q8V2nChD4DBge1/y3lPe2ddqOoj8j3AwqQgL4xFLtix5Z5mMSze
+ /9G6NrcFg1s7j3VRClWhNVa0uw9KU8STBZ+n45gxGGwHfwEAAP//AwDpFS3NBAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662a55b5e61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1707'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_d13f597980bd64fecd56243cf60f85b9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yU32+bMBDH3/NXWH4mEwHyi7dN3aZOrdKpD9NaKuTYF+LV2NQ+uqRR/vfJJAOS
+ dWp5QODv3ed+yHe7ASFUCpoSytcMeVmp4cfv/OUSf4QvP6++CfZ1cXXzRT1tQpAX7ELRwHuY5S/g
+ +NfrAzdlpQCl0QeZW2AInjqaxuE8nE8nYSOURoDybkWFw8QMozBKhuFsGE6OjmsjOTiakvsBIYTs
+ mrdPUQvY0JQ0mOakBOdYATRtjQih1ih/Qplz0iHTSINO5EYjaJ+1rpXqCWiMyjlTqgt8eHa9765P
+ TKmclZdLd7fA28co+XwbbxZ3v28wcfNevAN6WzUJrWrN2/709PY8PQtGCNWsbHyvt9dN24JzA2aL
+ ugSNPm26y6hiS1AZTe93GXXILGY0jadBRkGLjKbjWXC0cd4oozeL24w+BBlF2HjbjDpZaLmSnGkk
+ dVVYJiCj+6DHmyQtbxa/yYMNh8rXxxRZ1lIJ8lQzJXF7Rp3NW+p88ia1slDKuiQlQ7CSecMT2mjS
+ FT16B+8TQwS7JUqugEhHZFlZcE4+nxcfjeIWHCXJ2+3EWmupC1KtDRpHpCZLg2si2FbJYo2EaUGU
+ +T08/HGjhfTdOi8oGnddj6ajd7VdKdBInpmqfRUPe3pye/aD174fekNhYVU7po7Tcjzft+OnTFFZ
+ s3Rn00RXUku3zi0w19xq6tBUh9g+ThOB1ieTSytrygpzNI+gPTAO5wce7RZLp46iyVFFg0x1QhKP
+ g1eAuQBkspntdp1wxtcgOtdurbBaSNMTBr2y/03nNfahdKmL9+A7gftJAZFXFoTkpyV3Zhb84v2f
+ WdvmJmHqtg6hzFdSF2ArK5vdR1dVPhrPxSxORpzTwX7wBwAA//8DAL7qhicEBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662b0ff7e61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1767'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_af6b28f33c5ce1ca038fc7e76f251416
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yVXW+bMBSG7/MrLF+TCcgXyV26btO0JW21bmtVqsgxB+LV2J5t2qRR/vtkkgKh
+ nVIuEPJ7znPOseFl20EIswRPEKYrYmmueHd6RZ+/PWRLTZ9v5lOqnlZre7Gxs/Xnn0/X2HMZcvkH
+ qH3J+kBlrjhYJsVephqIBUcNRj1/7I9Hw7AUcpkAd2mZst2+7IZ+2O/6UdcfHhJXklEweILuOggh
+ tC3vrkWRwBpPkO+9rORgDMkAT6oghLCW3K1gYgwzlgiLvVqkUlgQrmtRcN4QrJR8QQnndeH9tW08
+ 1/tEOF+srvTZep7eJOfp+Pbj/Hs+vf51+1tljXp79EaVDaWFoNX+NPRqfdIqhhAWJC9zZ5tZuW1e
+ O4DorMhBWNc23saYkyXwGE/utjE2lmgb40lv5MUYRBLjySDyDjHGBcX48uJHjO+9GFtYu9gYG5YJ
+ ljJKhEWFyjRJIMY7r8Eb9ite1DvJgzUF5eYjHC0LxhP0tyCc2U2LGo0rauCPTmKVhpwVOcqJBc2I
+ CzzCBY2pg5F/kne+ESRnFH01nIgEJcwoTjaICQuZJq7/doFRo+FxeLJAP5pdopwwgSjJQZMWLvSD
+ ChcGg5O4aTBEZ0wKRhFdMdWmhQ1a7zSN5UqDMewR0JJYC3qDOEvbBx+O6j0N3zGysYUQTGRIraSV
+ 7RPqNU6o1++3aPNPX169SAqEa7HNicKaE0XveiE5B2HRI+GFo93v8NF3teu89XzfsAsNaWEIP/jI
+ YX1XGROXmdJyaVo+g1MmmFktNBBTfu/YWKn2tV2dsgIujjwNKy1zZRdWPoBwwJ4/3vNwbbm1Goyj
+ g2qlJbwWBv7IewO4SMASVrpeZbSU0BUkdWptuKRImGwIncbYr9t5i70fnYnsPfhaoM5DIFkoDQmj
+ xyPXYRrcL+l/YdU2lw1jszEW8kXKRAZaaVb+FXCqFsFgnES9fkAp7uw6/wAAAP//AwAekyxRHgcA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662bd5cef61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:05 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3387'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_08502af72a97f39ec627ebdf8b5790ce
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1759'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yV247aMBCG73kKy+olVDkAS7hr1e1Re2qrvWlWaHCG4NaxXXuyWop498qBJpC2
+ YnMRRf5nvplxnD/bAWNcFnzOuFgDicqq0as78eu60NPP6T1Vm6f3978+zi7fuo9Il/aKD0OGWX5H
+ QX+yXgpTWYUkjd7LwiEQBmp8kUZZlF1MJ41QmQJVSCstjcZmlETJeBTNRtH0kLg2UqDnc/ZtwBhj
+ 2+YeWtQFPvE5i4Z/Vir0Hkrk8zaIMe6MCiscvJeeQBMfdqIwmlCHrnWt1JFAxqiFAKW6wvtre/Tc
+ 7RMotfh6f/eB3r+91DfXNxDdPl5nNlrKu09H9fbojW0aWtVatPtzpLfr814xxriGqsm92lw12zbs
+ B4Ar6wo1hbb5NucKlqhyPv+2zbkncJTzeXoxzDnqIufzyWx4iPEhKOe3N19y/jDMOeFTiM25l6WW
+ KylAE6tt6aDAnO+GR7zpuOXN0rM8fBJow3yg2LKWqmA/a1CSNj3qbNJS42h8FmsdVrKuWAWETkII
+ PMHF027qOJue5b3ZaKikYB+8Al2wQnqrYMOkJiwdhP57BZI4bQskyfl9Hc+ublkFUjMBFTro49Ju
+ /mQSncW9iqfstTRaCibW0vZpk2765OI8TVbWoffyEdkSiNBtmJKr/otPo6SlpvEzjhLVWktdMrs2
+ ZPpvKG36OtBmfdr15bu/DpJF3bQIxF5kWdbnZd3M43j6rIOpFGpij6DqMOvDjp98X7vBv54fjmzD
+ 4ar2oA5+cljftQalTGmdWfqe3/CV1NKvFw7BN98992Tsvnao01Tg9Ym3cetMZWlB5gfqAEyjbM/j
+ nfV2ahLFB5UMgeqESXzwz1PgokAC2bhfa7gCxBqLLrUzXqgLaY6EwdHYf7fzL/Z+dKnL5+A7QQQv
+ wWJhHRZSnI7chTkMv6b/hbXb3DTM/cYTVouV1CU662Tzd+Aru4gnWTFLx7EQfLAb/AYAAP//AwCd
+ 0tqvJgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662d41b9461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2873'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_0b090f96f34349390c2dc9edf2bff967
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwY7TMBS85ysevnBpVummbGgvCIEQC6flAAeEIsd+SUwdP6/9IlFW/XfktNtk
+ xSJx8WHmzWhm5IcMQBgtdiBUL1kN3uZv79TvL5/i2OF7+a65/0D7qrrbx6/j5/v9a7FKCmp+ouJH
+ 1ZWiwVtkQ+5Eq4CSMbmuq7LYFtvqZjsRA2m0SdZ5zjc5j6Gh/Lq43uTFJi+2Z3VPRmEUO/ieAQA8
+ TG/K6TT+EjsoVo/IgDHKDsXucgQgAtmECBmjiSwdi9VMKnKMbor+Ea2lF3D7coAeAwIT9Gg9HGi8
+ gm+9ZFDSwS1ogpZCgoFJy8ObpV/AdowydXKjtWf8eAloqfOBmnjmL3hrnIl9HVBGcilMZPJiYo8Z
+ wI9piPFJN+EDDZ5rpj26ZLjenOzEPP+CrM4kE0s74+V69YxbrZGlsXExpFBS9ahn5by6HLWhBZEt
+ Ov8d5jnvU2/juv+xnwml0DPq2gfURj0tPJ8FTJ/zX2eXjafAIh4i41C3xnUYfDCnr9H6+pVuyqK8
+ KdtWZMfsDwAAAP//AwAmScaAKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662e7ec5b61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '737'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_b5998bec9b0d656097e6b462222cffd4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUX2/aMBB/51NY9wxTIAFK3nioqCoxunVd2RoUGecCHo5t2c46ivjuUxKWBMbU
+ 5SGK7vfnzue7HDqEAE8gJMC21LFMi970E3t7fMymwYNesPny+XV2v7tP9rOft8+v36FbKNT6BzL3
+ R/WBqUwLdFzJCmYGqcPCtT/2vYk3GY+9EshUgqKQbbTrBT2Xm7XqDbxB0POCnjc5qbeKM7QQkpcO
+ IYQcyndRp0zwF4Sk9CojGVpLNwhhTSIEjBJFBKi13DoqHXQbkCnpUBaly1yIFuCUEjGjQjSJq+fQ
+ +m6aRYWIPy+f7u6+qNme76bfhnscLt+2I/N10cpXWe91WVCaS1Y3qYXX8fAiGSEgaVZq5/t52bvu
+ JYGaTZ6hdEXZcIhA0DWKCMKXQwTWUeMiCL1uBCiTCMLBpHui2IITwcfbpwhWx26L7Tf0ftC/4D8s
+ Hi/5/cBv/P3gfcHAH9UCf+y9L/DHg1owHN1cF6yOcNabY+fa96p15QbT3FJxmoVT/FgPl1AbbdTa
+ XswKpFxyu40NUlveGVindJW7yFNmgPxsLkEblWkXO7VDWRj6/X7lB83uNOhocgKdclS0VDen0T/3
+ ixN0lJeDW+8Ko2yLSSNtdobmCVctoNM69d/VXPOuTs7l5n/sG4Ax1A6TWBtMODs/cUMzWPxa/kWr
+ u1wWDHZvHWZxyuUGjTa8XGxIdTxM1r7nj/w0hc6x8xsAAP//AwDIthf55gQAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662edaea661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:12 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2545'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_adddaff2e586ce2149b0d8b317ee41c0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4yUUW+bMBDH3/MprHsmE4FAgLc9bNqqtusadZNSKuQYk7g1tmebqWmU715BUkyy
+ TikPCPn//92dzZ23I4SAlZAhIGtsSa34+PNP8nIXiadkQRbP9e8quA0vo1/zi/nly5KA1xJy+UiJ
+ faM+EVkrTi2TYi8TTbGlbdTJLPRTP53Ngk6oZUl5i62UHU/HttFLOQ78YDr2p2M/PdBryQg1kKH7
+ EUIIbbt3W6co6TNkyPfeVmpqDF5RyHoTQqAlb1cAG8OMxcKC50QihaWiLV00nA8EKyUvCObcJd4/
+ 28G3OyzMecHo4wW/iRWZfo3x7ff1dfLnm736uxjk24feqK6gqhGkP6SB3q9nJ8kQAoHrjr3aXHVn
+ 550asF41NRW2LRu2OXC8pDyH7H6bg7FY2xwy38uBijKHLEi9g8W0nhyuv9zl8LDzBu5wYA+nJ/6b
+ H/NTfxBGPRAm6XkgTF2GKI7PA1E864E4iM5vIQ5iByQfARIHzJLgfEmzJOyBJPbfBx52cPS7dqP3
+ vh8GXahp1RjMD+15WN/1/c7lSmm5NCftCxUTzKwLTbHp2giMlWqfu83TZYDmaFRAaVkrW1j5REUb
+ MJxM9vHAjbNTJ5PD1IGVFnMnTIM37ChgUVKLWTdM/fwSTNa0dKibY9yUTA6E0WDb/5bzXuz91plY
+ fSS8EwihytKyUJqWjBxv2dk0ba+7/9n6Y+4KBrMxltZFxcSKaqVZd9lApYqoXIZ+GIdVBaPd6BUA
+ AP//AwCO4Yd3egUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de662fe8b0d61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4695'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_898b62457274281d83c4b9afaa6cf415
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUW2/aMBR+51dY5zlMwSbk8tZNmyahrt2qXdoGRcZxIMWxI9uRyhD/fUqgcWCt
+ aB4s63zfd245x7sRQlDmkCBga2pZVYvx1Xf298Fu7nARs68k//g8D8SXzXL+dGXm9+C1CrV84sy+
+ qD4wVdWC21LJA8w0p5a3Xich8WM/DsOwAyqVc9HKVrUdT8e20Us1xj6ejv3p2I+P6rUqGTeQoMcR
+ QgjturPNU+b8GRLkey+WihtDVxySnoQQaCVaC1BjSmOptOA5kClpuWxTl40QA8AqJTJGhXCBD99u
+ cHfNokJkD/gPKX5/2txsbylmvyJMfoQNFveDeAfX27pLqGgk65s0wHt7chYMIZC06rTX2+uud945
+ gepVU3Fp27Rhl4KgSy5SSB53KRhLtU0h8b0UuMxTSHDsHSmm5aTw7fPPFBZ7b8AmAzqZnvFvb+7O
+ +ZgEvYBE8WUBiV2EIPAvC4Jg0gtmOLhcwgzPnCB6jyBygjDCl1MKI9ILotkbNSz2cPK79qPX7ovB
+ FGpeNIaK43ge7ft+3oVa1Votzdn4QlHK0qwzzanpxgiMVfUhdhuniwDNyapArVVV28yqDZetQzKZ
+ HPyBW2eHTibHrQOrLBUOmOIX2YnDLOeWlt0y9fvLKFvz3EndHtMmL9UAGA3K/j+d13wfSi/l6j3u
+ HcAYry3Ps1rzvGSnJTua5u1z9xatb3OXMJitsbzKilKuuK512T02UNRZkC+JT2akKGC0H/0DAAD/
+ /wMAy77F2XoFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6631d2f9f61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3255'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_5c19dc7fc62330e774eeb19d5a137fe9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=zB0eLRj_yjNDDljL2IZlC4bCweuyc6fm_f_K4ZCvMHM-1730908884-1.0.1.1-7lVfGRJZBGs9N8viojkICNxfiTGVzGljLF0UUNL7CS2OQrSZBhPGPOFgH_oR9BVQWcjj4W.r8OkSi3MU5JObQw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUW2+bMBR+z6+wzjNMXEICvHVTK01r125Vu2klQsY2l87YyDZSsyj/fQJSIFmm
+ lgeEznc5F469WyAEFYUYASmxIXXD7Ytv5A99KIrL5+Lx8Wp99fNjWVz/ohfZ9xfigtUpZPbMiHlV
+ fSCybjgzlRQDTBTDhnWu7tp3Iidah24P1JIy3smKxthL27Qqk7bneEvbWdpOdFCXsiJMQ4yeFggh
+ tOvfXZ2CsheIkWO9RmqmNS4YxCMJIVCSdxHAWlfaYGHAmkAihWGiK120nM8AIyVPCeZ8Sjw8u9n3
+ NCzMeYp/eFEQfqkND4T3+c6/v6bbT7dhOcs3WG+bvqC8FWQc0gwf4/FJMoRA4LrX3mxv+tlZpwSs
+ irZmwnRlwy4BjjPGE4ifdglog5VJIHasBJigCcS+ax0ouuMk8PXyIYHN3pqxfW+ke/7yhH93e3/K
+ 9/xg8g+jtwV+NBUUvEcQzAQrL3i7hZW3GgXrcHU+w2YPR8PcL859b2Y7oljeaswPy3OI78dt5LJo
+ lMz0yXJBXolKl6liWPc/GbSRzZC7y9NngPZokaFRsm5MauRvJjpD33UHP5gO24SG/gE00mA+U0VL
+ 64xfSpnBVb/p4+EimJSMTtLpkOGWVnIGLGZd/1vNOe+h80oU77GfAEJYYxhNG8VoRY47nmiKdXfR
+ /2jjlPuCQW+1YXWaV6JgqlFVfxNA3qQBzXzHX/l5Dov94i8AAAD//wMA4StdnRcFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66332db6761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:24 GMT
+ Server:
+ - cloudflare
+ Set-Cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ path=/; expires=Wed, 06-Nov-24 16:46:24 GMT; domain=.api.openai.com; HttpOnly;
+ Secure; SameSite=None
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3363'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_10abeddc0620b9a79b812c8bf6d2b627
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUW2+bMBR+z6+wzjOZCAQCvHVdN01askvXrVWJkGPMpTM2so2WNMp/nyAJJlmr
+ lAfLOt/3nRvneDtCCMoUIgSkwJpUNRtffSfP+fP7Hw9Xxce1J/5ep2JDFs2n+7X/eQFWqxCrJ0r0
+ UfWOiKpmVJeC72EiKda09TqZuXZoh7Ng2gGVSClrZXmtx9OxbuRKjB3bmY7t6dgOD+pClIQqiNDj
+ CCGEtt3Z5slTuoYI2dbRUlGlcE4h6kkIgRSstQBWqlQacw2WAYngmvI2dd4wNgC0ECwhmDETeP9t
+ B3fTLMxYMvtCwts7u5g/Fdern7/83x8ebhbr+/Ug3t71pu4SyhpO+iYN8N4enQVDCDiuOu18M+96
+ Z50TsMybinLdpg3bGBheURZD9LiNQWksdQyRbcVAeRpD5ITWgaJaTgyLm7sYljtrwHYHdHd6xv/2
+ 9fac77heL3CD8LLADU0Ez7MvCzxv0gt8x7tcgu/4RhC8RRAYwSxwLqc0C9xeEPiv1LDcwcnv2o1e
+ ui8HUyhp1ijMDuN5sO/6eWcir6VYqbPxhazkpSoSSbHqxgiUFvU+dhuniwDNyapALUVV60SLP5S3
+ Dt3JZO8PzDobdDI5bB1ooTEzwNQ5yk4cJinVuOyWqd9fgklBUyM1e4ybtBQDYDQo+/90XvK9L73k
+ +VvcG4AQWmuaJrWkaUlOSzY0Sdvn7jVa3+YuYVAbpWmVZCXPqaxl2T02kNWJl65c2/XdLIPRbvQP
+ AAD//wMAucJbjXoFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66349f99161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4101'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_6ab9c16551b10ff204cdfb4d46c1a50c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vPQiFZJtxI9L0FOdHgq0KNBDUQg0uZKYUFxWXMFRA/97Qdmx
+ FCQFeuFhZmcws8unBEAYLXYgVCNZtd5mH7+qP5b05/23/mY5hC+fwvq7GX7vH4f6/kakUUGHe1T8
+ rPqgqPUW2ZA706pDyRhdi/Uy3+bb9WY7Ei1ptFFWe85WlLXGmWyRL1ZZvs6KzUXdkFEYxA5+JgAA
+ T+MbczqNj2IHefqMtBiCrFHsrkMAoiMbESFDMIGlY5FOpCLH6Mbod+9b0GRcDUe0NgVupHsI72BP
+ R5AH6hkG6m/hRyMZlHRwBw1aH0E4Gm6AScvhdm7eYdUHGQu63toLfrqmtVT7jg7hwl/xyjgTmrJD
+ GcjFZIHJi5E9JQC/xq30L4oK31HruWR6QBcNi9XZTky3mJGbC8nE0k74cpG+4VZqZGlsmG1VKKka
+ 1JNyOoHstaEZkcw6vw7zlve5t3H1/9hPhFLoGXXpO9RGvSw8jXUYf+q/xq47HgOLMATGtqyMq7Hz
+ nTn/k8qX+UHmulisqkIkp+QvAAAA//8DAGZme281AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663649e4961c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '486'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_b702c02d0b3b6eece2c4bf3b603687e4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVUW/bOAx+z68ghHt0CqdNmzhvHe5QDLfe2nXbPcxFoMi0zass6STZqa/Ifz/I
+ 7mLX69D5wbBF8iM/fgT1NANglLENMFFyLyoj55e34j+5Xy2vLu4+XH7dtbd/71ZXZK/i6/d3kkUh
+ Qu/+QeG/R50IXRmJnrTqzcIi9xhQF6uzOImT1TrpDJXOUIawwvj5Us8rUjQ/jU+X83g1X6yfo0tN
+ Ah3bwLcZAMBT9w51qgwf2Qbi6PtJhc7xAtnm6ATArJbhhHHnyHmuPIsGo9DKowqlq1rKkcFrLbeC
+ Szkk7p+n0ffQLC7l1t9+eGgerrj9UuXNtZK7h0p9/hq3o3w9dGu6gvJaiWOTRvbj+WaSDIApXnWx
+ 1+1117to6sBtUVeofCibPaVM8h3KlG2+PaXMeW59yjZxlDJUWco2F9GzhwsuKfvrjy8pu49S5vEx
+ eKbsxuqsFh4+YUO4T9khGgGtjkCL5ZtIdFNqhbBYwo3VE6DF+RFpfTZBuvl4N0H6XCIo3MMLRLBo
+ LLpAHTg4KhTlJLjyUJvC8gxBN2jBWGxI1w662XMnEMB2NckM/q25JN8COcBHgSZowGUEe/JliKuo
+ rqDiHi1x6aB2mIEvra6LUtf+BP7EFnLkvrbogJSQdYabCdH18kg0id9s2e+t4hUJeO8kVxlk5Izk
+ LZDyWFge6pvAJ4tBkV+QZLm+voGKkwLBK7R8qspIlkW8eBPucnEB70grEiBKMlO0+HQ0LvGbKr/j
+ 3qNtQVKOQROqgr6OGoxAcudJFcAhr6WEjLegcyiRN23QpVe15wSudR4rMN0gowPna6VCsCm110Ep
+ 2GlfBhBJRekhtFrq/bz/E1plFFrtTqaElqNuJ8s3CX1s0HIZBqokiYCPBlWgA9zDb0mSROBLcpBh
+ QwIhQ0kN2n4WpUTloeGyRsi1BaP3aANT67pyOyqF5aZsAZUva0fc+a7i+wN7sSMOs9e+70erz2Je
+ Oy6fd+Lz+eG4ZKUujNU7N9mZLCdFrtxa5K7bXcx5bfrcIU+XgdUv9jMzVlfGb71+QBUAz+Kkx2PD
+ HTJYT88unq1eey4Hw/nyPHoFcJuh59Rt8OOlIbgoMRtCh8uD1xnpkWE2ov1jOa9h99RJFb8CPxhE
+ 2DWYbY3FjMRLyoObxXDH/szt2OauYNbP/DYnVaA1lrobjuVmm+xW693FQpyfstlh9j8AAAD//wMA
+ C7itkO8HAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663688cb461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:32 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3337'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_afde3771f2d390d7ab547ddc1aae8e0c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV247bNhB991cMiD7Kga9ry2+9pOktjdtuUjTRwqCpkTQbimTIkb2u4X8vKDuW
+ 15si6wdD4pk558yQHO17AIJysQChKsmqdrr/7R/qXzcu79X3Ff8y+m20vC1+uCUXpvc/vnolkphh
+ 1/eo+HPWC2Vrp5HJmiOsPErGyDqcjQfpIJ2l4xaobY46ppWO+xPbr8lQfzQYTfqDWX84P2VXlhQG
+ sYAPPQCAffsffZocH8QCBsnnlRpDkCWKxTkIQHir44qQIVBgaVgkHaisYTTRumm0vgDYWr1SUutO
+ +PjbXzx3zZJar9J/ZP32V5VWH1/69/bdz+/f/f1TXih3oXek3rnWUNEYdW7SBX5eX1yJAQgj6zb3
+ 9e5127vkOkD6sqnRcLQt9pnQco06E4sP+0wElp4zsRgkmUCTZ2IxnienkBBjMvH7y7eZuEsywfgQ
+ QzOx9DZvFMOfuCHcLoCWlTUIwwksvc3EIbkgHqdn5uHgmnr55q8r6tsKweD2MSV4dB5DLAEkBCoN
+ FaSkYWhc6WWOYDfowXnckG0CtGcovLhyMhxcWJkOn2Vl3ZDO4VMjNfEOKAA+KHRxJ6ROYEtcRdWa
+ mhpqyehJ6gBNwBy48rYpK9vwEx/TUecjnX3Vx3eSGf0ONBUYLVAdmxFogwloGZhMCRKKRmvI5Q5s
+ ARXKzS7aeCKdzs/So5vJs1qgZI1eQtgFxhpcu/UYIHBjTJR2lWUbgAysLVfRgqayYpAmB223/eOb
+ sian2Lcn2zK6mXZnb5h+1dObDXqpY/cr0gj44NDEZoBk+CZN0wS4ogA5bkgh5Khpg/64cVqjYdhI
+ 3SAU1oOzW/SxTz60dttSSi9dtQM0XDWBZODW8d1BPLpWh96Xnu8upoXHoglSn8bIaf1wnkvals7b
+ dbgaM6IgQ6FaeZShve4isHVH7ajTKojm0UgTztva8YrtRzSRcDxIj3yiG7sdOpxPTihblroDJscR
+ fE24ypEltUPvPGeVVBXmXWo3b2WTk70AehdlP7XzJe5j6WTK59B3gIoXE/OV85iTelxyF+Yxfpb+
+ L+zc5tawOJ75VUGmRO88tR8FUbhVup7N1zdDNR2J3qH3HwAAAP//AwAnmyFRIgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6637e98e661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3114'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_bdb103feddccce4613ad098f7db962b7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTY/bNhC9+1cMiB7lwLK9tuVb0gZoge5mkyZNg2hh0ORIZEqRLD9ku4b/e0HZ
+ sbzeLbI+GBLfzHtvhuRoPwAgkpMlECZoYI1Vw9fv2b+eClXQvHh7+2vkKn627br99E3OfiNZyjDr
+ b8jC96xXzDRWYZBGH2HmkAZMrPl8MipGxbyYdUBjOKqUVtswnJphI7Ucjkfj6XA0H+aLU7YwkqEn
+ S/g6AADYd//Jp+a4JUsYZd9XGvSe1kiW5yAA4oxKK4R6L32gOpCsB5nRAXWyrqNSF0AwRq0YVaoX
+ Pv72F899s6hSK/HevdneVX/xX6riy893vzevP/755bOtL/SO1DvbGaqiZucmXeDn9eWVGADRtOly
+ b3e3Xe+y6wDq6tigDsk22ZdE0TWqkiy/7kviA3WhJMtRVhLUvCTLySI7hfgUU5K7t59K8pCVJOA2
+ hZbk3hkeWYAP2ErcLEHeC6MR8incO1OSQ3ZBPCnOzPnomvr+3R9X1B8FgsbNY0pwaB36VAJQ8LLW
+ spKM6gDR1o5yBNOiA+uwlSZ66M6Qf3XlJB9dWLnJX2RlHaXi8E+kSoYdSA+4ZWjTTlCVwUYGkVQb
+ GRtoaEAnqfIQPXIIwplYCxPDEx83495HMf+hjzc0BHQ7ULLCZEE2qRletpiBoj5IXQOFKioFnO7A
+ VCCQtrtk44l0sThLj2fTF7WA0QYdBb/zARuw3dajBx+i1knaChOMB6lhbYJIFpSsRQCqOSizGR7f
+ mNFcpr492Zbx7KY/e3nxQ0/vWnRUpe4LqRBwa1GnZgAN8FNRFBkEIT1wbCVD4Khki+64cUqhDtBS
+ FREq48CaDbrUJ+c7u10ptaNW7AB1ENFL6kPn+OFAHl2rw+C554eLaeGwip6q0xg5rR/Oc0mZ2jqz
+ 9ldjhlRSSy9WDqnvrjvxwdijdtLpFEh8NNKIdaaxYRXM36gT4WRUHPlIP3Z7NF9MT2gwgaoemBaT
+ 7BnCFcdAZTf0znOWUSaQ96n9vKWRS3MBDC7KfmrnOe5j6VLXL6HvAZYuJvKVdcgle1xyH+YwfZb+
+ L+zc5s4wOZ75VSV1jc462X0USGVXxXq+WM9ydjMmg8PgPwAAAP//AwDGIy5zIgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663938f4761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:39 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2958'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_b0c77be6763f6c01d31b697da5a21864
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xV247bNhB991cMiD7KgXyLLb8lQBok6WY3aYoWjRYGTY2kSSmS4UW2a/jfC8qO
+ 5fVukdWDIHFmzjlzKI72AwBGBVsCEzX3ojFy+OqT+LcNC9r++dvf1fqvYjHL3n5/c3O7DVS+ZUms
+ 0OtvKPyPqhdCN0aiJ62OYWGRe4yoo/kkzdJsnmVdoNEFylhWGT+c6mFDiobjdDwdpvPhaHGqrjUJ
+ dGwJXwcAAPvuHnWqArdsCWnyY6VB53iFbHlOAmBWy7jCuHPkPFeeJX1QaOVRRekqSHkR8FrLleBS
+ 9sTHa3/x3JvFpVwtvtzsvgn3/tWvn99/Gk8/VK9nYT56t77gO0LvTCeoDEqcTbqIn9eXV2QATPGm
+ q73Z3XTeJdcJ3FahQeWjbLbPmeRrlDlbft3nzHlufc6WaZIzVEXOlpNFckpxMSdnH9/8kbP7JGce
+ tzE1Z3dWF0F4+Iwt4WYJdFdrhTCawp3VOTskF8CT7Iw8Sq+h725/v4L+UiMo3DyEBIvGoostAAdH
+ laKSBFcegqksLxB0ixaMxZZ0cNB9Q+7FlZJReiFlNnqWlHUgWcD3wCX5HZAD3Ao0cSe4TGBDvo6s
+ DYUGGu7REpcOgsMCfG11qGod/CMds3GvYz79qY7X3Hu0O5BUYpRATTTDUYsJSO48qQo4lEFKKPgO
+ dAk18nYXZTyins/O1OPx9FkWCN6g5eB2zmMDptt6dOB8UCpSm1p77YAUrLWvowRJVe2BqwKk3gyP
+ b0KrgqJvj7ZlPO41TdL0p5puW7RcRvdrkgi4NaiiGcA9/JJlWQK+JgcFtiQQCpTUoj1unJSoPLRc
+ BoRSWzB6gzb6ZF0nt2ulstzUO0Dl6+CIO98pvj+wB8fqMHjq+f5iWlgsg+PyNEZO64fzXJK6Mlav
+ 3dWYYSUpcvXKInfdcWfOa3PkjjwdAwsPRhozVjfGr7z+B1UEnKTZEY/1Y7ePjhbTU9Rrz2UfmGaT
+ 5AnAVYGeUzf0znNWcFFj0Zf285aHgvRFYHDR9mM5T2EfWydVPQe+D4h4MLFYGYsFiYct92kW42/p
+ /9LONneC2fGbX5WkKrTGUvdTYKVZZev5Yv1yJGZjNjgM/gMAAP//AwCnHCEpIgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663a72a6561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:42 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2783'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_df56b9de4177fb59456409f5da6294d8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"$defs": {"LabelItem": {"properties": {"start":
+ {"minimum": 0, "title": "Start", "type": "integer"}, "end": {"minimum": 0, "title":
+ "End", "type": "integer"}, "labels": {"items": {"enum": ["POS", "NEG", "NEU"],
+ "type": "string"}, "title": "Labels", "type": "array"}, "text": {"anyOf": [{"type":
+ "string"}, {"type": "null"}], "default": null, "title": "Text"}}, "required":
+ ["start", "end", "labels"], "title": "LabelItem", "type": "object"}}, "properties":
+ {"label": {"description": "Labels and span indices for text", "items": {"$ref":
+ "#/$defs/LabelItem"}, "title": "Label", "type": "array"}}, "required": ["label"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1764'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xVTXPbNhC961fsYHqkMtSHq49bW/vQTl2radJDQ48GApYkEhBAgIVkVqP/3gGl
+ iLLsTswDh8Tuvvf2gVjuBwBMSbYEJmpOonF6+NOf4t92/jf9Tr/d/hLj583qdnpvytt7/cBzlqUK
+ u/mMgr5VvRO2cRpJWXMMC4+cMKGOZpN8kS/m+bgLNFaiTmWVo+HUDhtl1HCcj6fDfDYczU/VtVUC
+ A1vCpwEAwL67J51G4hNbQp59W2kwBF4hW56TAJi3Oq0wHoIKxA2xrA8KawhNkm6i1hcBslavBde6
+ Jz5e+4vn3iyu9fqf5ktb3f3axtU0fJB+oqv5x7vR1/aC7wjduk5QGY04m3QRP68vr8gAmOFNV3vf
+ 3nfeZdcJ3FexQUNJNtsXTPMN6oItP+0LFoh7KtgyzwqGRhZsOZlnp5SQcgr2x93Hgj1mBSN8SqkF
+ W3kroyB4j1uFuyWoVW0NwmgKK28LdsgugCeLM/Iov4ZePfx1Bf2hRjC4ew4JHp3HkFoADkFVRpVK
+ cEMQXeW5RLBb9OA8bpWNAbpvKLy7UjLKL6TcjN4kZROVlvA1cq2oBRUAnwS6tBNcZ7BTVCfWRsUG
+ Gk7oFdcBYkAJVHsbq9pGeqHjZtzrmE2/q+NnToS+Ba1KTBJUk8wIaosZaB5ImQo4lFFrkLwFW0KN
+ fNsmGS+oZzdn6vF4+iYLBG/QcwhtIGzAdVuPAQJFYxK1qy3ZAMrAxlKdJGhV1QTcSNB2Nzy+CWuk
+ Sr692JbxuNc0yfPvanrYouc6uV8rjYBPDk0yAzjBD4vFIgOqVQCJWyUQJGq1RX/cOK3REGy5jgil
+ 9eDsDn3yyYdObtdK5bmrW0BDdQyKB+oUPx7Ys2N1GLz2/HgxLTyWMXB9GiOn9cN5LmlbOW834WrM
+ sFIZFeq1Rx66484CWXfkTjwdA4vPRhpz3jaO1mS/oEmAk3xxxGP92O2jo/n0FCVLXPeB6WKSvQK4
+ lkhcdUPvPGcFFzXKvrSftzxKZS8Cg4u2X8p5DfvYujLVW+D7gEgHE+XaeZRKPG+5T/OYfkv/l3a2
+ uRPMjt/8ulSmQu+86n4KrHTrxWY23/w4EjdjNjgM/gMAAP//AwChF3VnIgcAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663b9b84761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:44 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2259'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4b453cd5f86947915daa503a4b51c079
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBC9+yumuuzFCU69IZtcSimUDTm10FMpRpHGtnZljZDGuw1L/r1Y8dpZ
+ uoVedHhv3uO9Gb1kAMJosQOhWsmq83bx+ZsuVrUvyh/h0G++2LtNWX7/WjaP7lAeRD4o6PiAil9V
+ S0Wdt8iG3IVWASXj4LralMW22N4V60R0pNEOssbzolyuF9yHIy2K1cf1qGzJKIxiBz8zAICX9A4Z
+ ncbfYgdF/op0GKNsUOymIQARyA6IkDGayNKxyGdSkWN0KfY9WksfYH/TwUMfGSQ8mcC9tDApc4gE
+ e9Dkbhha+YRQI1rjmpjDseekbTEgMEGL1sOJeng23IJ0J26NaxLiEPUS7ukZlHSwH/0TxaTl6dN1
+ woB1H+WwIddbO+LnqbKlxgc6xpGf8No4E9sqoIzkhnqRyYvEnjOAX2m1/ZttCR+o81wxPaIbDFe3
+ FzsxH3Mmy/VIMrG0M367zd9xqzSyNDZenUYoqVrUs3K+o+y1oSsiu+r8d5j3vC+9jWv+x34mlELP
+ qCsfUBv1tvA8FnD46v8am3acAot4ioxdVRvXYPDBpM+WTnnO/gAAAP//AwAa05ndawMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663c8f93061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '650'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_b4b13dba08f4028f935ffe46f4b14bc8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgvxqe8lbD33obejaDQOG3WUIZIm2eZMlTaKc+or+74Ps
+ Xpx2HTA/GDI/8uNHWuTTBECQFjsQqpasGm9m17/oxeqPuC7uL83D7X3lN7fFcfu1S5vfaSWmOcIV
+ X1Hx96i5co03yOTsAKuAkjGzLq/Wi+1i+2Fx2QON02hyWOV5tp5fzDiFws0Wy9XFS2TtSGEUO/gy
+ AQB46t9Zo9X4KHawmH63NBijrFDsTk4AIjiTLULGSJGlZTEdQeUso82ybTLmDGDnzEFJY8bEw/N0
+ dh4bJY05XN+sfiyWV+umiHWx+NTi/c833z7H27N8A3Xne0FlsurUoDP8ZN+9SQYgrGz62Lvuru/b
+ 9K2DDFVq0HKWLZ72gqxPvBe7vXgITifF8Cu2hMcd0EPtLMJyAw/B7fd2v7e/1QgWj68hCOgDxswJ
+ EiJVlkpS0jIkXwWpEVyLAXzAllyK0P/QOIdMViQyGv5O0hB3QBHwUaHPxUkzhSNxneMaSg00kjGQ
+ NBFSRA1cB5eq2iWew0/YQYmSU8AIZJVJGneD4hncdFY2pOBTNNJq0BS9kR2QZayCzKl6t82Huwdo
+ JFlQssEge+P18hI+krOkQNXkB8qPkhlDB4ZKzJKpyeVHanEKRkYmW4GEMhkDWnbgSqhRtl2WPRQ9
+ JIDYRcYGfN92jBA5WZuDfe3Y5UKgcFxnEkNVzZDlG3ecDV/KWU1ZfpwPuu5bDNLkttVkEPDRo82q
+ QDL8sN1up8A1RdDYkkLQaKjFMHTcGLQMrTQJoXQBvDtiyIJD7LP2iqogfd0BWq5TJBk5zvfiWby6
+ YM+T985/ns1NwDJFaV4G6sX+fJpQ4yofXBHfDJwoyVKsDwFl7C++iOz8kDvn6TOI9Gq4hQ+u8Xxg
+ 9xfaTLjarAY+MS6fEV0uL15QdizNCKwvrqbvEB40sqR+/E8bR0lVox5Dx80jkyZ3BkzOyv63nPe4
+ h9LJVv+HfgRUnifUBx9Qk3pd8ugWMC/n/3I7tbkXLIaLeyjJVhh8oNN6nDxP/gEAAP//AwC+0Zqi
+ HQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663ceea8461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4035'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_fdd7e4f32c375e0a0fad87a0a7ba989e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mQdI2vUve2g3bbkNw7XC7e7gMASMxNm+ypElUUqPofx9k
+ d3HadcD8YMj8yI8faZGPIwDFRq1A6RpFN8FObu7N7DrmfFzff1pcX/pF++OHn/KXm2gPktW4RPjd
+ N9LyT9RU+yZYEvauh3UkFCqs83eXs+Vs+X4+64DGG7IlrAoyuZwuJpLjzk9m84vFc2TtWVNSK/g6
+ AgB47N5FozP0oFbQ8XSWhlLCitTq5ASgorfFojAlToJO1HgAtXdCrsh22dozQLy3W43WDon75/Hs
+ PDQKrd1++5nm64t8//l7m+3n2cdg1r9H/cvtWb6eug2doH12+tSgM/xkX71KBqAcNl3sul13fRu/
+ dsBY5YacFNnqcaPYhSwbtdqou+hN1gK/0YHpuAK+q70jmF/BXfSbjdts3KeawNHxJQSRQqRUOAEh
+ ceV4zxqdQA5VREPgDxQhRDqwzwm6H5qmUMh2ma2BvzJalhY4AT1oCqU4tGM4stQlruHcQINCkdEm
+ yIkMSB19rmqfZQq/Ugt7QsmRErDTNhta9Yon8EPrsGENH5JFZ8BwChZbYCdURSypOrer9+s7aJAd
+ aGwoYme8mV/DLXvHGnTNoae8RRGKLVjeU5HMTSk/8YHGYDEJuwoQ9tlaMNiC30NNeGiL7L7oPgGk
+ Ngk1ELq2U4Ik2bkSHGovvhQCOy91IbFc1QJFvvXHSf+lvTNc5Kdpr+vjgSLa0raaLQE9BHJFFaDA
+ d8vlcgxScwJDB9YEhiwfKPYdt5acwAFtJtj7CMEfKRbBMXVZO0VVxFC3QE7qnBiTpOlGPakXF+xp
+ 9Nb5j7O5ibTPCe3zQD3bn04Tan0Vot+lVwOn9uw41dtImLqLr5L40OcueboMKr8YbhWib4Jsxf9J
+ rhBeXF30fGpYPgM6ny+eUfGCdgAuF+/GbxBuDQlyN/6njaNR12SG0GHzYDbsz4DRWdn/lvMWd186
+ u+r/0A+ALvNEZhsiGdYvSx7cIpXl/F9upzZ3glV/cbd7dhXFEPm0HkdPo78BAAD//wMAAbjXIh0G
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663e91ab461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2773'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_440863579279437c7fe330d83d050b64
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghD3ahh0nTe23FH3pumDZ0GFY68GgJd4dN52kStQ51yD/fdBd
+ ajtZBuweDjp+5MePPJEPEwDFRm1A6QZFt8HObn4xi/Wy/lE++G/h9+A/addk+uYO3fqG1LRE+P1f
+ pOV71Fz7NlgS9m6EdSQUKqzL69VivVi/Xa4GoPWGbAmrg8xW86uZ5Lj3s8Xy4uopsvGsKakNfJkA
+ ADwM76LRGbpXG1hMv1taSglrUpujE4CK3haLwpQ4CTpR0xOovRNyRbbL1p4B4r3dabT2lHh8Hs7O
+ p0ahtTv3uXkf9/S1+qle7a/X+uNvhz/68Ob+LN9I3YdBUJWdPjboDD/aNy+SASiH7RB7298OfZu+
+ dMBY55acFNnqYavYhSxbtdmqu+hN1gK/Usd02ADfNd4RLC/hLvrt1m237lND4OjwHIJIIVIqnICQ
+ uHZcsUYnkEMd0RD4jiKESB37nGD4oWkOhWyf2Rr4mtGy9MAJ6F5TKMWhncKBpSlxLecWWhSKjDZB
+ TmRAmuhz3fgsc/hIPVSEkiMlYKdtNrQZFc/gfe+wZQ0fkkVnwHAKFntgJ1RHLKkGt8u3t3fQIjvQ
+ 2FLEwXizfAPv2DvWoBsOI+U7FKHYg+WKimRuS/mJO5qCxSTsakCosrVgsAdfQUPY9UX2WPSYAFKf
+ hFoIQ9spQZLsXAkOjRdfCoG9l6aQWK4bgSLf+sNs/NLeGS7y03zU9XNHEW1pW8OWgO4DuaIKUOCH
+ 9Xo9BWk4gaGONYEhyx3FsePWkhPo0GaCykcI/kCxCI5pyDooqiOGpgdy0uTEmCTNt+pRPbtgj5PX
+ zn+ezU2kKie0TwP1ZH88Tqj1dYh+n14MnKrYcWp2kTANF18l8WHMXfIMGVR+NtwqRN8G2Yn/m1wh
+ vLi8GPnUafmc0OXy6gkVL2hPwOrqevoK4c6QIA/jf9w4GnVD5hR62jyYDfszYHJW9r/lvMY9ls6u
+ /j/0J0CXeSKzC5EM6+cln9wileX8X27HNg+C1XhxdxW7mmKIfFyPk8fJPwAAAP//AwAvs4PLHQYA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de663fbbd3161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1654'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_4a1db9dd1491cebc81da76a00fc84d13
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU328bNwx+919BCHu0DTuJ28RvDYphw5DVawvslweDlnh3XHWSIlG2r0H+90F3
+ qe1kGbB7OOj4kR8/8kQ+jAAUG7UEpRsU3QY7efeLmd2uwt3tH79+zxd4//5jzh++/J63lzPzmxqX
+ CL/9m7R8i5pq3wZLwt4NsI6EQoV1/vZydjO7uZ4veqD1hmwJq4NMLqeLieS49ZPZ/GLxFNl41pTU
+ Ev4cAQA89O+i0Rk6qCXMxt8sLaWENanl0QlARW+LRWFKnASdqPEJ1N4JuSLbZWvPAPHebjRae0o8
+ PA9n51Oj0NoN3163P7SHryHcU736utj/fPhULT69Ocs3UHehF1Rlp48NOsOP9uWLZADKYdvH3nV3
+ fd/GLx0w1rklJ0W2elgrdiHLWi3XahW9yVrgI+2Y9kvgVeMdwfwKVtGv1269dp8bAkf75xBECpFS
+ 4QSExLXjijU6gRzqiIbA7yhCiLRjnxP0PzRNoZBtM1sD9xktSwecgA6aQikO7Rj2LE2Jazm30KJQ
+ ZLQJciID0kSf68ZnmcJP1EFFKDlSAnbaZkPLQfEE3ncOW9bwY7LoDBhOwWIH7ITqiCVV73Z1fbeC
+ FtmBxpYi9sZ38zdwy96xBt1wGChvUYRiB5YrKpK5LeUn3tEYLCZhVwNCla0Fgx34ChrCXVdkD0UP
+ CSB1SaiF0LedEiTJzpXg0HjxpRDYemkKieW6ESjyrd9Phi/tneEiP00HXR92FNGWtjVsCegQyBVV
+ gALf3dzcjEEaTmBox5rAkOUdxaHj1pIT2KHNBJWPEPyeYhEcU5+1V1RHDE0H5KTJiTFJmq7Vo3p2
+ wR5Hr53/OpubSFVOaJ8G6sn+eJxQ6+sQ/Ta9GDhVsePUbCJh6i++SuLDkLvk6TOo/Gy4VYi+DbIR
+ /4VcIby4uhj41Gn5nND5sG/60Ra0J+By8Xb8CuHGkCD343/cOBp1Q+YUeto8mA37M2B0Vva/5bzG
+ PZTOrv4/9CdAl3kiswmRDOvnJZ/cIpXl/F9uxzb3gtVwcTcVu5piiHxcj6PH0T8AAAD//wMAhu9v
+ 6x0GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de664073e7361c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:16:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3754'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_48e060088fe36bdd1b4088d2968bf71d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1265'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mQdKmS5O3K27dhlvX3LBDH5YhYGTa5k2WNIlKahT974Ps
+ Xpx2HTA/GDI/8uNHWuTTCEBxodagdI2iG28mHz4Xs1udql+b/cPD/f3Xtl1e3xx/+fLD1Y+LUo1z
+ hNt/JS3foqbaNd6QsLM9rAOhUGadLy9nq9nqer7qgMYVZHJY5WVyOb2aSAp7N5nNL65eImvHmqJa
+ wx8jAICn7p012oIe1Rpm42+WhmLEitT65ASggjPZojBGjoJW1HgAtbNCNsu2yZgzQJwzO43GDIn7
+ 5+nsPDQKjdkF3CxvN8fLxdLdp/DlE30sl7cP1U9n+Xrq1neCymT1qUFn+Mm+fpMMQFlsuti79q7r
+ 2/itA4YqNWQly1ZPW8XWJ9mq9VZtgiuSFviNDkzHNfCmdpZgvoBNcNut3W7t7zWBpeNrCAL5QDFz
+ AkLkynLJGq1A8lXAgsAdKIAPdGCXInQ/NE4hk+0TmwL+TmhYWuAI9KjJ5+LQjOHIUue4hlMDDQoF
+ RhMhRSpA6uBSVbskU/hELZSEkgJFYKtNKmjdK57Ax9Ziwxp+jgZtAQVHb7AFtkJVwJyqc1tc322g
+ QbagsaGAnfHD/Hu4YWdZg67Z95Q3KEKhBcMlZcnc5PIjH2gMBqOwrQChTMZAgS24EmrCQ5tl90X3
+ CSC2UagB37WdIkRJ1uZgXztxuRDYO6kzieGqFsjyjTtO+i/tbMFZfpz2uu4PFNDkttVsCOjRk82q
+ AAW+W61WY5CaIxR0YE1QkOEDhb7jxpAVOKBJBKUL4N2RQhYcYpe1U1QF9HULZKVOkTFKnG7Vs3p1
+ wZ5H753/PJubQGWKaF4G6sX+fJpQ4yof3D6+GThVsuVY7wJh7C6+iuJ8nzvn6TKo9Gq4lQ+u8bIT
+ 9xfZTHixuOj51LB8BnQ+v3pBxQmaAbi8Wo7fIdwVJMjd+J82jkZdUzGEDpsHU8HuDBidlf1vOe9x
+ 96Wzrf4P/QDoPE9U7HyggvXrkge3QHk5/5fbqc2dYNVf3F3JtqLgA5/W4+h59A8AAAD//wMAPNyN
+ hR0GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66421482761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1487'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995904'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_49f02a7dabc9c81a450359c7501fe3a5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTYvbMBS8+1e86tLLenGyznaTS1kKbRYKpbCXUopRpGdbraynSs807pL/XvzR
+ 2KFd2IsOM2+GmUFPCYAwWuxAqFqyarxN7z/r7MO798f7j912dcDHL6r7vf+5qfePn9qjuOoVdPiO
+ iv+qrhU13iIbciOtAkrG3nX15ibbZtu7dTYQDWm0vazynOaUrrN1nmZ3aXY7CWsyCqPYwdcEAOBp
+ ePuITuNR7GCwGZAGY5QVit35CEAEsj0iZIwmsnQsrmZSkWN0Q+o9Wkuv4OF1AzUGBOk0BJS6Ayao
+ 0fpr2NMvUNLBA4xm0FELTFp2b5emAcs2yr6Ta62d8NM5paXKBzrEiT/jpXEm1kVAGcn1iSKTFwN7
+ SgC+DWu0FwWFD9R4Lph+oOsNV/loJ+b5F+TtRDKxtDN+My146VZoZGlsXKwplFQ16lk5Ty9bbWhB
+ JIvO/4b5n/fY27jqJfYzoRR6Rl34gNqoy8LzWcD+cz53dt54CCxiFxmbojSuwuCDGf9H6Yt8o8pN
+ rlGiSE7JHwAAAP//AwAaF4iSKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6642c49ec61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '572'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_b0395af5e8dfa31f3f4c381adac5670c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiH20E9txtrFhGEi6KNIWbryL7hZoXRhjciTNliJZXpwIQf69
+ oOT4km6B6kGgeDjnnBlq5rkHIFiJGQhZYZS104Pbj2p4X/8yisOr3YcHvr29+uH3MZd3v20/3a9E
+ P0fY7VeS8TXqQtraaYpsTQdLTxgps46+uxpOh9Ob8agFaqtI57DSxcHEDsbD8WQwvBkM3+8DK8uS
+ gpjBHz0AgOf2nS0aRU9iBsP+605NIWBJYnY4BCC81XlHYAgcIpoo+kdQWhPJZNcmaX0CRGv1RqLW
+ R+HueT5ZH+uEWm++3tNoOU4fv3yvk/4yfHBq+dnLn+5O9DrqxrWGimTkoT4n+GF/9kYMQBis29hl
+ s2zL1n97AH2ZajIx2xbPa8HGpbgWs7WYV6PFyluVZIRPtGN6nAGvKmsIRhNYeTu/rEaL9dqs12bu
+ Fr9WBIYez4+AJ+cpZH5ACFwaLliiiZBc6VER2B15cJ52bFOA9m7DBWSybWKt4O+EmmMDHICeJLmc
+ KOo+PHKsclzNqYYaI3lGHSAFUhArb1NZ2RQv4GdqoCCMyVMANlInRbP5pXs1nnRe5VLMNS8+NAZr
+ lvBj0GgUKA5OYwNsIpUes/b8UvNpxORmuYIa2YDEmjy+xW9H7+GOrWEJsmL3Cs8vO+GudncYI/kG
+ NBeUM+U6Vy3wjvqgMUQ2JSAUSWtQ2IAtoCLcNTnbrladNoQmRKrBtbdGAUJMxuRgV9loc/6wtbHK
+ JJrLKkJOUtvHQfclrVGckwwXJxVyi4cdedS56BVrAnpyZLI5wAjvptNpH2LFARTtWBIo0rwj392X
+ 1mQi7FAngsJ6cPaRfPbtQyveGis9uqoBMrFKgTHEvb54EWe/60vvW+s/T7rQU5EC6n177vdfDv2u
+ bem83YY37SsKNhyqjScMbRuJEK3rtLNOqyDS2agQztvaxU20f5HJhOPJqOMTx0l2REfX0z0abUR9
+ BCbD/Tg6J9woisjtMDnML4myInUMPc4xTIrtCdA7Sfvfdr7F3aXOpvw/9EdA5o4ktXGeFMvzlI/H
+ POVJ/1/HDmVuDYvuH94UbEryznM7bEXhNpNrWVxPFCGJ3kvvHwAAAP//AwBcZ2rXdQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66430f95861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:04 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2452'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_d7cf44a624b0c4f99ba58a1967c03dba
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227bOBB991cMiD7aie06aWwYBlIUaLtFtmmRAruoF8aYHEnTUCTLix0hyL8X
+ lBxfsl1g9SBQPJxzzgw189gDEKzEDISsMMra6cH1FzX8tL77HD5evtv+/Dr88G2K7y/D3+MvzcVf
+ op8j7PoHyfgcdSZt7TRFtqaDpSeMlFlHb14Pp8Pp1XjSArVVpHNY6eJgYgfj4XgyGF4Nhpe7wMqy
+ pCBm8L0HAPDYvrNFo+hBzGDYf96pKQQsScz2hwCEtzrvCAyBQ0QTRf8ASmsimezaJK2PgGitXknU
+ +iDcPY9H60OdUOvVXeEm12/oWt3ffPjD/Zi61/fftu//tEd6HXXjWkNFMnJfnyN8vz97IQYgDNZt
+ 7E1z05at//IA+jLVZGK2LR6Xgo1LcSlmSzGvRotbb1WSEb7Shmk7A76trCEYTeDW2/l5NVosl2a5
+ NHO3uKsIDG1Pj4An5ylkfkAIXBouWKKJkFzpURHYDXlwnjZsU4D2bsMZZLJ1Yq3gZ0LNsQEOQA+S
+ XE4UdR+2HKscV3OqocZInlEHSIEUxMrbVFY2xTP4RA0UhDF5CsBG6qRoNj93z8aTzqtcirnmxbvG
+ YM0SPgaNRoHi4DQ2wCZS6TFrz881H0dMrm5uoUY2ILEmjy/x69ElvGVrWIKs2D3D8/NOuKvdW4yR
+ fAOaC8qZcp2rFnhDfdAYIpsSEIqkNShswBZQEW6anG1Xq04bQhMi1eDaW6MAISZjcrCrbLQ5f1jb
+ WGUSzWUVISep7XbQfUlrFOckw9lRhdzi84Y86lz0ijUBPTgy2RxghFfT6bQPseIAijYsCRRp3pDv
+ 7ktrMhE2qBNBYT04uyWfffvQirfGSo+uaoBMrFJgDHGnL57Eye/61Pvd+p+jLvRUpIB61567/ad9
+ v2tbOm/X4UX7ioINh2rlCUPbRiJE6zrtrNMqiHQyKoTztnZxFe09mUw4now6PnGYZAd0dDHdodFG
+ 1AdgMtyNo1PClaKI3A6T/fySKCtSh9DDHMOk2B4BvaO0/23nd9xd6mzK/0N/AGTuSFIr50mxPE35
+ cMxTnvT/dWxf5taw6P7hVcGmJO88t8NWFG41uZDFxUQRkug99X4BAAD//wMARRzwUnUGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de664419c1861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2616'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_82e6deb0ed7708cde6d2bc5480ff3f45
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW8bNxB8169YEH2UbMmRHUsQDNhoUwetGzdIgwRVIazJveMmPJLlh+Sr4f9e
+ 8E6WZCcFeg8HHoc7M7u83YcBgGAl5iCkxiQbb0aXv6vxb21z9+bmy+VPSd2+eTU7U2/l9dXnydWv
+ Ylgi3N0Xkukp6ki6xhtK7GwPy0CYqLBOXr8az8az85PXHdA4RaaE1T6Npm50Mj6Zjsbno/HZNlA7
+ lhTFHP4cAAA8dO9i0Sq6F3MYD592GooRaxLz3SEAEZwpOwJj5JjQJjHcg9LZRLa4ttmYAyA5Z1YS
+ jdkL98/DwXpfJzRm9f7TH9fXH9zPLX+9/Hza0umnf/RZ+PjuQK+nbn1nqMpW7upzgO/25y/EAITF
+ pou9aW+6sg1fHsBQ54ZsKrbFw1Kw9TktxXwpFnpycRucyjLBe1ozbebAt9pZgskUboNbHOvJxXJp
+ l0u78BcfNIGlzfMjEMgHioUfECLXliuWaBNkXwdUBG5NAXygNbscobvbeASF7C6zUfB3RsOpBY5A
+ 95J8SRTNEDacdIlrODfQYKLAaCLkSAqSDi7X2uV0BL9QCxVhyoEisJUmK5ovjv2T8WzKqpRiYfji
+ x9ZiwxLeRoNWgeLoDbbANlEdsGgvjg0fRkzPb26hQbYgsaGAL/HLyRlcsbMsQWr2T/DiuBfua3eF
+ KVFowXBFJVNuStUir2kIBmNiWwNClY0BhS24CjThui3Z9rXqtSG2MVEDvrs1ihBTtrYEe+2SK/nD
+ nUu6kBiudYKSpHGbUf8lnVVckoxHBxXyF+/WFNCUoms2BHTvyRZzgAl+mM1mQ0iaIyhasyRQZHhN
+ ob8vY8gmWKPJBJUL4N2GQvEdYifeGasDet0C2aRzZIxpqy8exbPf9XHwvfVfB10YqMoRzbY9t/uP
+ u343rvbB3cUX7Ssqthz1KhDGro1ETM732kWnUxD52agQPrjGp1VyX8kWwpPppOcT+0m2Ryensy2a
+ XEKzB6bj7Th6TrhSlJC7YbKbXxKlJrUP3c8xzIrdATA4SPtbO9/j7lNnW/8f+j0gS0eSWvlAiuXz
+ lPfHApVJ/1/HdmXuDIv+H15VbGsKPnA3bEXlV9NTWZ1OFSGJwePgXwAAAP//AwCWgkKodQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66453ae7f61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4367'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_163bc9da4b698a0b48bbbc5a9c288200
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUYW/bNhD97l9xIPbRTuzEaWPDMJCiwFYUWd1uwNDNg0GTJ/E2iuTIo2MhyH8v
+ KDm2k3XA9EGg+HjvvTvq7nEAIEiLOQhlJKsm2NHdZz3+cv35Kv1U3fPt7O4XG/ju9+3EfXx/PRHD
+ EuG3f6Hi56gL5Ztgkcm7HlYRJWNhnby9Hs/Gs9vrSQc0XqMtYXXg0dSPrsZX09H4djR+cwg0nhQm
+ MYc/BgAAj927WHQa92IO4+HzToMpyRrF/HgIQERvy46QKVFi6VgMT6DyjtEV1y5bewaw93ajpLUn
+ 4f55PFuf6iSt3dx+UqvZbx9M/ePXn/dv9/v0tYqz6/H+TK+nbkNnqMpOHetzhh/356/EAISTTRd7
+ 3953ZRu+PiBjnRt0XGyLx7UgFzKvxXwtFmayXEWvs2L4gjvChznQyniHMJnCKvrFpZks12u3XrtF
+ WP5qEBw+vDwCEUPEVPhBQqLaUUVKOoYc6ig1gt9hhBBxRz4n6O42XUAh22ayGv7J0hK3QAlwrzCU
+ RKUdwgOxKXEN5QYayRhJ2gQ5oQY20efa+MwX8BFbqFByjpiAnLJZ43xxGZ6NZ1tWpRQLS8v3rZMN
+ KfiQrHQaNKVgZQvkGOsoi/bi0tJ5xPT2fgWNJAdKNhjla/xu8gbekXekQBkKz/Dishfua/dOMmNs
+ wVKFJVNqStUS7XAIViYmV4OEKlsLWrbgKzAod23Jtq9Vrw2pTYwNhO7WMEHi7FwJDsazL/nD1rMp
+ JJZqw1CStP5h1H8p7zSVJNPFWYXC8tMOo7Sl6IYsAu4DumIOJMMPs9lsCGwogcYdKQSNlnYY+/uy
+ Fh3DTtqMUPkIwT9gLL5j6sQ7Y3WUwbSAjk1OJBMf9MWTePG7Pg2+t/7zrAsjVjlJe2jPw/7Tsd+t
+ r0P02/SqfUVFjpLZRJSpayOR2Ideu+h0CiK/GBUiRN8E3rD/G10hvJpOej5xmmQndHIzO6DsWdoT
+ MB0fxtFLwo1GltQNk+P8UlIZ1KfQ0xyTWZM/AwZnaf/bzve4+9TJ1f+H/gSo0pGoNyGiJvUy5dOx
+ iGXS/9exY5k7w6L/hzcVuRpjiNQNW1GFzfRGVTdTjRLF4GnwDQAA//8DACjl6HV1BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66470185061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '6024'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_547328b3ab3c971faced76354f813664
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1258'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224bNxB911cMiD5KtuTIriQIBhykadxCiRq0BZqqEEbk7O40XJLmRfLC8L8X
+ 3JV1cVOg+7Dg8nDOOTPcmacegGAlZiBkhVHWTg/uflHDPz4q/WGzfK/M8uPma7UpH24m97/d/16L
+ fo6wm79JxpeoC2lrpymyNR0sPWGkzDr6/s1wOpxO3kxaoLaKdA4rXRyM7eBqeDUeDCeD4c0+sLIs
+ KYgZ/NkDAHhq39miUfQoZjDsv+zUFAKWJGaHQwDCW513BIbAIaKJon8EpTWRTHZtktYnQLRWryVq
+ fRTunqeT9bFOqPV6+6N82P2EX8bFh+niy93nxeTm/btP6ocTvY66ca2hIhl5qM8JftifvRIDEAbr
+ NnbRLNqy9V8fQF+mmkzMtsXTSrBxKa7EbCXm1eh26a1KMsJn2jLtZsDLyhqC0RiW3s4vq9HtamVW
+ KzN3t79WBIZ250fAk/MUMj8gBC4NFyzRREiu9KgI7JY8OE9btilAe7fhAjLZJrFW8JBQc2yAA9Cj
+ JJcTRd2HHccqx9WcaqgxkmfUAVIgBbHyNpWVTfECfqYGCsKYPAVgI3VSNJtfuhfjSedVLsVc8+27
+ xmDNEu6DRqNAcXAaG2ATqfSYteeXmk8jxpPFEmpkAxJr8vgavxvdwFu2hiXIit0LPL/shLvavcUY
+ yTeguaCcKde5aoG31AeNIbIpAaFIWoPCBmwBFeG2ydl2teq0ITQhUg2uvTUKEGIyJge7ykab84eN
+ jVUm0VxWEXKS2u4G3Ze0RnFOMlycVMjdftqSR52LXrEmoEdHJpsDjPDddDrtQ6w4gKItSwJFmrfk
+ u/vSmkyELepEUFgPzu7IZ98+tOKtsdKjqxogE6sUGEPc64tncfa7Pve+tf7rpAs9FSmg3rfnfv/5
+ 0O/als7bTXjVvqJgw6Fae8LQtpEI0bpOO+u0CiKdjQrhvK1dXEf7lUwmvBqPOj5xnGRHdHQ93aPR
+ RtRHYDzcj6NzwrWiiNwOk8P8kigrUsfQ4xzDpNieAL2TtP9t51vcXepsyv9DfwRk7khSa+dJsTxP
+ +XjMU570/3XsUObWsOj+4XXBpiTvPLfDVhRuPb6WxfVYEZLoPff+AQAA//8DAEN1n/B1BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66497283761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2488'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_a567489821715a749683cd9fa1b4ab56
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWrcMBS8+ytedellHezYbbp7Kbl1KT0USnMoxcjSs61G1hPSM8SE/fci73bt
+ 0BR60WHmzTAz6DkDEEaLAwg1SFajt/n9V13IWc9fymNXHkt+GNriO6J8vP/89E3skoLaX6j4j+pG
+ 0egtsiF3plVAyZhcy7uq2Bf7D3WxECNptEnWe87rnKfQUn5b3NZ5UefF/qIeyCiM4gA/MgCA5+VN
+ OZ3GJ3GAxWtBRoxR9igO1yMAEcgmRMgYTWTpWOxWUpFjdEv0T2gtvYHj2xEGDAhMMKD1MNN0Aw+D
+ ZFDSwRE0QUchwcCk5fxx6xewm6JMndxk7QU/XQNa6n2gNl74K94ZZ+LQBJSRXAoTmbxY2FMG8HMZ
+ YnrRTfhAo+eG6RFdMizrs51Y59+QdxeSiaVd8arcveLWaGRpbNwMKZRUA+pVua4uJ21oQ2Sbzn+H
+ ec373Nu4/n/sV0Ip9Iy68QG1US8Lr2cB0+f819l14yWwiHNkHJvOuB6DD+b8NTrfvNNtVVTvq64T
+ 2Sn7DQAA//8DAC3wQngoAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de664a9494361c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '774'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_32b71a90ecf3e774f26e46b8aa2259fe
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMivy6XpO3drth61pce7jd4TAPgSLRNldZ0iQqiVH0fx9k
+ 9+K064D5wZD5kR8/0iIfRwCCtFiDULVk1XgzubzX0+38YYHn1w8/X/94OX9/9csXpm8fP3xufhfj
+ HOG2f6Hi71FnyjXeIJOzPawCSsbMOnu/mK6mq4vlrAMap9HksMrzZDnhFLZuMp/Ol5PpcjJdPUfX
+ jhRGsYY/RgAAj90767QaD2IN0/F3S4MxygrF+ugEIIIz2SJkjBRZWhbjAVTOMtos3SZjTgB2zmyU
+ NGZI3D+PJ+ehWdKYzc2hvb+4uT5Mzz+UX2h+o+4fmuvm68VJvp669Z2gMll1bNIJfrSvXyUDEFY2
+ Xexte9v1bvzaQYYqNWg5yxaPhSDrExdiXYi74HRSDJ9wR7hfA93VziLMlnAXXFHYorCfawSL+5cQ
+ BPQBY+YECZEqSyUpaRmSr4LUCG6HAXzAHbkUofup8Qwy2TaR0fB3koa4BYqAB4U+FyfNGPbEdY5r
+ KDXQSMZA0kRIETVwHVyqapf4DH7DFkqUnAJGIKtM0rjuFf/UWtmQgl+jkVaDpuiNbIEsYxVkTlQU
+ dnlxeweNJAtKNhhkUdjL2TlckbOkQNXke7IryYyhBUMlZrHU5MIj7XAMRkYmW4GEMhkDWrbgSqhR
+ 7tosuC+3p4fYRsYGfNdwjBA5WZuDfe3Y5RJg67jOJIaqmiFLN24/6b+Us5qy9HjW6/q4wyBNblhN
+ BgEPHm1WBZLhh9VqNQauKYLGHSkEjYZ2GPpeG4OWYSdNQihdAO/2GLLgELusnaIqSF+3gJbrFElG
+ jmeFeBIvrtbT6K3znycTE7BMUZrnUXq2Px1n07jKB7eNr0ZNlGQp1puAMnZXXkR2vs+d83QZRHox
+ 1sIH13jesHtAmwnny3nPJ4bVM6Cz2ewZZcfSDMDi3WL8BuFGI0vqBv+4a5RUNeohdNg5MmlyJ8Do
+ pOx/y3mLuy+dbPV/6AdA5UlCvfEBNamXJQ9uAfNq/i+3Y5s7waK/uJuSbIXBB+oWoyj95p3eLqaL
+ 80VZitHT6B8AAAD//wMAdd99tiYGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de664afb9a661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5198'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_943f96bdf4e002fab7737693311339a3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqRJfyRvLTbgtl3verfusGEeAlmibe5kSZOopEbR/32Q
+ 3YvTrgPmB0PmR378SIt8nAAI0mILQjWSVevN7PqTXjQ3H9rD4vN9+eGXm6/xqr6k397H8/rXazHN
+ Ea78CxV/i5or13qDTM4OsAooGTPr8nK12Cw2V+vLHmidRpPDas+z9YxTKN3sbHG2ni3Ws8XmObpx
+ pDCKLfwxAQB47N9Zp9X4ILawmH6ztBijrFFsj04AIjiTLULGSJGlZTEdQeUso83SbTLmBGDnzE5J
+ Y8bEw/N4ch6bJY3Z3ZV6c/uufPfDT6uP5e9fDu/vry+6L5f+JN9A3fleUJWsOjbpBD/at6+SAQgr
+ 2z72trvtezd97SBDnVq0nGWLx0KQ9YkLsS3EXXA6KYbPuCc8bIHuGmcRlmu4C64obFHY+wbB4uEl
+ BAF9wJg5QUKk2lJFSlqG5OsgNYLbYwAfcE8uReh/apxDJisTGQ1/J2mIO6AI+KDQ5+KkmcKBuMlx
+ LaUWWskYSJoIKaIGboJLdeMSz+Fn7KBCySlgBLLKJI3bQfH3nZUtKfgxGmk1aIreyA7IMtZB5kRF
+ YddXt3fQSrKgZItBFoW9Xl7ADTlLClRDfiC7kcwYOjBUYRZLbS480h6nYGRksjVIqJIxoGUHroIG
+ 5b7LgodyB3qIXWRswfcNxwiRk7U52DeOXS4BSsdNJjFUNwxZunGH2fClnNWUpcf5oOvjHoM0uWEN
+ GQR88GizKpAM3202mylwQxE07kkhaDS0xzD02hi0DHtpEkLlAnh3wJAFh9hn7RXVQfqmA7TcpEgy
+ cpwX4km8uFpPk7fOf55MTMAqRWmeR+nZ/nScTeNqH1wZX42aqMhSbHYBZeyvvIjs/JA75+kziPRi
+ rIUPrvW8Y/cVbSY8W58NfGJcPSO6XC6fUXYszQiszlfTNwh3GllSP/jHXaOkalCPoePOkUmTOwEm
+ J2X/W85b3EPpZOv/Qz8CKk8S6p0PqEm9LHl0C5hX83+5HdvcCxbDxd1VZGsMPlC/GEXld+e6XC1W
+ F6uqEpOnyT8AAAD//wMAfVGqriYGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de664d26c3961c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:30 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3410'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_9a1d7323fd339b691977149cfba568cb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUYW/bNhD97l9xIPbRTuzYSWPDMNCgGLpl2bJu7RrMg0GTJ+laimTJox0tyH8f
+ KDm2k2XA9EGg+HjvvTvq7qEHIEiLGQhVSVa1N4O3v+qhSV/j+bsrTs2Pv138/enu+w/1zfb9x093
+ op8j3PoLKn6KOlGu9gaZnO1gFVAyZtbRm/FwOpxeno9aoHYaTQ4rPQ8mA05h7QZnw7PJYDgZDKe7
+ 6MqRwihm8GcPAOChfWefVuO9mMGw/7RTY4yyRDHbHwIQwZm8I2SMFFlaFv0DqJxltNm6TcYcAeyc
+ WSlpzEG4ex6O1odiSWNWn8cfr+8KT5fF9c93f7y31581fkk/1Ud6HXXjW0NFsmpfpCN8vz97IQYg
+ rKzb2Jvmpq1d/+UBGcpUo+VsWzwsBVmfeClmSzGvRovb4HRSDB9wQ7idAd1WziKMJnAb3Py0Gi2W
+ S7tc2rlf/F4hWNw+PwIBfcCY+UFCpNJSQUpahuTLIDWC22AAH3BDLkVoLzieQCZbJzIaviVpiBug
+ CHiv0OdEpenDlrjKcTWlGmrJGEiaCCmiBq6CS2XlEp/ANTZQoOQUMAJZZZLG2fzUPxlPJq9yKeaG
+ Fu8aK2tS8EM00mrQFL2RDZBlLIPM2vNTQ8cRk8ubW6glWVCyxiBf4m9HF3BFzpICVZF/guennXBX
+ uyvJjKEBQwXmTKnOVYu0wT4YGZlsCRKKZAxo2YAroEK5aXK2Xa06bYhNZKzBt7eGESIna3Owrxy7
+ nD+sHVeZxFBZMeQkjdsOui/lrKacZDw5qpBf/LLBIE0uekUGAe892mwOJMN30+m0D1xRBI0bUgga
+ DW0wdPdlDFqGjTQJoXABvNtiyL5DbMVbY2WQvmoALVcpkoy80xeP4tnv+th7bf3XURcGLFKUZtee
+ u/3Hfb8bV/rg1vFF+4qCLMVqFVDGto1EZOc77azTKoj0bFQIH1ztecXuK9pMeDY56/jEYZwd0NH5
+ mx3KjqU5AOPptP8K4UojS2qHyX5+Kakq1IfQwxyTSZM7AnpHaf/bzmvcXepky/9DfwBU7kjUKx9Q
+ k3qe8uFYwDzu/+vYvsytYdH9w6uCbInBB2qHrSj86lyvx8PxxbgoRO+x9w8AAAD//wMAtVKwunoG
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de664e8bb8061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '7172'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_e7eb48cd65c213a1462c1be0dbd8f0ad
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/rNgx9z68ghD0mQdKkXZO32xUYtqJot7vt3nUeAkaiLe7KkqaPpEbR/z7I
+ 7k3SrgPmB0PmIQ8PaZFPIwDBSqxBSI1Jtt5MPvykZvHmi4qfsvns24zLG/5Vm7u739uHWoxLhNv+
+ RTJ9jZpK13pDiZ0dYBkIExXW+beL2Wq2ujy/7IHWKTIlrPFpspykHLZucjY7W05my8ls9RKtHUuK
+ Yg1/jAAAnvp30WkVPYo1zMZfLS3FiA2J9cEJQARnikVgjBwT2iTGR1A6m8gW6TYbcwIk58xGojHH
+ xMPzdHI+NguN2eiPs4c6fH/9nXPXP356pJur3y4fzi4+n+QbqDvfC6qzlYcmneAH+/pNMgBhse1j
+ b7vbvnfjtw4YmtySTUW2eKoEW59TJdaVuA9OZZngZ9ox7dfA99pZgvkS7oOrKltV9hdNYGn/GoJA
+ PlAsnIAQubFcs0SbIPsmoCJwOwrgA+3Y5Qj9T41TKGTbzEbB3xkNpw44Aj1K8qU4NGPYc9IlruXc
+ QouJAqOJkCMpSDq43GiX0xRuqIOaMOVAEdhKkxWtB8XXncWWJfwQDVoFiqM32AHbRE3Akqiq7PLy
+ 9h5aZAsSWwpYVfbD/AKu2FmWIDX7gewKU6LQgeGailhuS+GRdzQGgzGxbQChzsaAwg5cDZpw1xXB
+ Q7kDPcQuJmrB9w2nCDFla0uw1y65UgJsXdKFxHCjExTpxu0nw5d0VnGRHqeDrrsdBTSlYZoNAT16
+ skUVYIJvVqvVGJLmCIp2LAkUGd5RGHptDNkEOzSZoHYBvNtTKIJD7LP2ipqAXndANukcGWOK00o8
+ i1dX63n03vnPk4kJVOeI5mWUXuzPh9k0rvHBbeObURM1W456Ewhjf+VFTM4PuUuePoPIr8Za+OBa
+ nzbJfSFbCM+WZwOfOK6eIzqfz1/Q5BKaI7A4X4zfIdwoSsj94B92jUSpSR1DjzsHs2J3AoxOyv63
+ nPe4h9LZNv+H/gjIMkmkNj6QYvm65KNboLKa/8vt0OZesBgu7qZm21DwgfvFKGq/OVfbxWxxsahr
+ MXoe/QMAAP//AwAuZecRJgYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665168e7161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:42 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3872'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ac4f5033d277078c0fd4b1967c0d0fa9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUbW/jNgz+nl9BCPuYFHlr75JvDQ433G3Fcr0X3G0eAkWibW6ypElUUq/ofx9k
+ 9+K064D5gyHzIR8+pEXejwAEabEGoWrJqvFmcv1BT4+bj/b9/Of46u3bN9vIcfvh298/tovLz2Kc
+ I9z+D1T8PepCucYbZHK2h1VAyZhZZ68W09V09fpq3gGN02hyWOV5spxwCns3mU/ny8l0OZmuHqNr
+ RwqjWMNvIwCA++6ddVqNd2IN0/F3S4MxygrF+uQEIIIz2SJkjBRZWhbjAVTOMtos3SZjzgB2zuyU
+ NGZI3D/3Z+ehWdKY3Wa7fFff3l7/uii37+OX5ef06evNt7A5y9dTt74TVCarTk06w0/29bNkAMLK
+ pou9aW+63o2fO8hQpQYtZ9nivhBkfeJCrAuxDU4nxXCLB8LjGmhbO4swW8I2uKKwRWE/1QgWj08h
+ COgDxswJEiJVlkpS0jIkXwWpEdwBA/iAB3IpQvdT4wVksn0io+GvJA1xCxQB7xT6XJw0YzgS1zmu
+ odRAIxkDSRMhRdTAdXCpql3iC/gJWyhRcgoYgawySeO6V/ymtbIhBe+ikVaDpuiNbIEsYxVkTlQU
+ dvn6ZguNJAtKNhhkUdjr2RVsyFlSoGryPdlGMmNowVCJWSw1ufBIBxyDkZHJViChTMaAli24EmqU
+ hzYL7svt6SG2kbEB3zUcI0RO1uZgXzt2uQTYO64ziaGqZsjSjTtO+i/lrKYsPV70un45YJAmN6wm
+ g4B3Hm1WBZLhh9VqNQauKYLGAykEjYYOGPpeG4OW4SBNQihdAO+OGLLgELusnaIqSF+3gJbrFElG
+ jheFeBBPrtbD6KXz72cTE7BMUZrHUXq0P5xm07jKB7ePz0ZNlGQp1ruAMnZXXkR2vs+d83QZRHoy
+ 1sIH13jesfsTbSacL+c9nxhWz4DOZrNHlB1LMwCLy8X4BcKdRpbUDf5p1yipatRD6LBzZNLkzoDR
+ Wdn/lvMSd1862er/0A+AypOEeucDalJPSx7cAubV/F9upzZ3gkV/cXcl2QqDD9QtRlH63aXeL6aL
+ q0VZitHD6B8AAAD//wMAgE+axCYGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6653039b561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3807'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_da3e410b13eb0fc320d8c1375b355fcd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vPhiFZIjxI9L0AINmltzTItCoMmVRFfkEuSqrRH43wvKD9lI
+ C/RCkDs7g9lZvmYAwmixAaE6ycr6Pv/wrMvi02phP+5XvFu/VEtr7OPXLwv98vgs5olB2x0qPrPe
+ K7K+RzbkjrAKKBmTarm8K9bFenV/PwKWNPaJ1nrOK8qtcSZfFIsqL5Z5uTqxOzIKo9jAtwwA4HU8
+ k0+n8bfYQDE/VyzGKFsUm0sTgAjUp4qQMZrI0rGYT6Aix+hG608zC7shMkjwgdog7RwiwRNocjOG
+ Tv5EaBB749o4h+3AkBgdBgTpNASUeg9M0GHvYU/DO/hMv0BuaeD0fEjPWUzXAFruoSXj2odrMwGb
+ IcoUiBv6/lQ/XKbrqfWBtvGEX+qNcSZ2dUAZyaVJIpMXI3rIAL6PKQ43wQgfyHqumX6gS4JldZQT
+ 0+4m8O6UsGBi2U/16ky6Uas1sjR9vNqCUFJ1qCfmtDI5aENXQHY181szf9M+zm1c+z/yE6AUekZd
+ +4DaqNuBp7aA6Wf/q+2S8WhYxH1ktHVjXIvBB3P8V42vi60sdLmomlJkh+wPAAAA//8DACu6+k5l
+ AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66548f8b761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '643'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_31d1578be129e56b2914797b7b319a8e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiH20E8t1E9swDGy6BdpNg2TTxS7aujBociROSpEsL0qEIP9e
+ UHJ8SbdA9SBQPJxzzgw18zwAYCTZAphQPIra6dH7T7IopnjxYMPND3X10Ta3Pz3du+Lz9WQ2YcMc
+ YbcPKOJr1JmwtdMYyZoeFh55xMxaXH43no/ns4vLDqitRJ3DKhdHUzuqydBoMp5MR+PLUTHbRStL
+ AgNbwB8DAIDn7p19GolPbAHj4etOjSHwCtlifwiAeavzDuMhUIjcRDY8gMKaiCZbN0nrIyBaqzeC
+ a30Q7p/no/WhWFzrzUw/XP9uvn65v/yx/Tq5+kV9+Hj762+31ZFeT926zlCZjNgX6Qjf7y/eiAEw
+ w+su9qa96Wo3fHuA+yrVaGK2zZ7XjIxLcc0Wa7ZUxerOW5lEhHtsCB8XQHfKGoRiCnfeLs9VsVqv
+ zXptlm71WSEYfDw9Ah6dx5D5gUOgylBJgpsIyVWeSwTboAfnsSGbAnQXHM4gk20TaQl/J64ptkAB
+ 8Emgy4lyPYRHiirH1ZRqqHlET1wHSAElROVtqpRN8QyusYUSeUweA5AROklcLM/dq/Gk8yqXYqlp
+ 9aE1vCYBPwfNjQRJwWneApmIledZe3mu6ThiOru5g5qTAcFr9Pwt/r64gCuyhgQIRe4VXp73wn3t
+ rniM6FvQVGLOlOpctUANDkHzEMlUwKFMWoPkLdgSFPKmzdn2teq1IbQhYg2uuzUMEGIyJgc7ZaPN
+ +cPWRpVJNFUqQk5S28dR/yWskZSTDGdHFXKr2wY917noijQCPjk02RzwCO/m8/kQoqIAEhsSCBI1
+ Nej7+9IaTYSG64RQWg/OPqLPvn3oxDtjledOtYAmqhSIh7jTZy/s5Hd9GXxr/edRF3osU+B61567
+ /Zd9v2tbOW+34U37spIMBbXxyEPXRixE63rtrNMpsHQyKpjztnZxE+1faDLhZFr0fOwwzg5o8f18
+ h0YbuT4A0/FuHJ0SbiRGTt0w2c8vwYVCeQg9zDGeJNkjYHCU9r/tfIu7T51M9X/oD4DIHYly4zxK
+ EqcpH455zOP+v47ty9wZZv0/vCnJVOidp27YstJtxls+lsVkWhZs8DL4BwAA//8DAKb+yft6BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6654e389d61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:49 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2458'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_517783eed21832c5bcab7ae66358f5d1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgjhN1yRvlw0bblu33mHDHXAZAkaibd5kSdUPp0bR/32Q
+ 3cVp1wHzgyHzIz9+pEU+TgAEK7EFIWuMsnF69u6DKlY/3H/9blmcSL8Pp/XV/U9yWX28/uRQTHOE
+ PX4lGf+JmkvbOE2RrRlg6QkjZdbi5mqxWWzWN4seaKwincMqF2crO2vY8Gy5WK5mi5tZsX6Ori1L
+ CmILXyYAAI/9O+s0ih7EFnqu3tJQCFiR2J6dAIS3OlsEhsAhooliOoLSmkgmSzdJ6wsgWqsPErUe
+ Ew/P48V5bBZqffjx+uHzr7vu+o9POzod18b8ote7hO4i30DduV5QmYw8N+kCP9u3r5IBCINNH3vb
+ 3fa9m752QF+lhkzMssXjXrBxKe7Fdi/uvFVJRvhILdNpC3xXW0NQrODO2/3e7Pfm95rA0OklBJ6c
+ p5A5ASFwZbhkiSZCcpVHRWBb8uA8tWxTgP6nhjlksmNireA+oebYAQegB0kuF4d6CieOdY5rODXQ
+ YCTPqAOkQApi7W2qapviHH6mDkrCmDwFYCN1UrQdFM/g+85gwxLeB41GgeLgNHbAJlLlMafq3Vbr
+ 2ztokA1IbMhjb3xXfAs7toYlyJrdQLnDGMl3oLmkLJmbXH7glqagMUQ2FSCUSWtQ2IEtoSZsuyx7
+ KHpIAKELkRpwfdspQIjJmBzsahttLgSONtaZRHNVR8jytT3Nhi9pjeIsP8wHXb+15FHnttWsCejB
+ kcmqACN8s9lsphBrDqCoZUmgSHNLfui41mQitKgTQWk9OHsinwX70GftFVUeXd0BmVinwBhimO/F
+ k3hxwZ4mb53/vJgbT2UKqJ8H6tn+dJ5QbSvn7TG8GjhRsuFQHzxh6C++CNG6IXfO02cQ6cVwC+dt
+ 4+Ih2r/IZMLlqhj4xLiARrQobp7RaCPqEbi6Xk/fIDwoisj9+J83jkRZkxpDx82DSbG9ACYXZf9b
+ zlvcQ+lsqv9DPwIyzxOpg/OkWL4seXTzlBf0f7md29wLFsPFPZRsKvLOc78eRekOiyMuVLFclYWY
+ PE3+BgAA//8DACCQUyosBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6655ee8ff61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1798'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_ed514e4a6f057360a133ec82d6a8c001
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jRgy9+1cQgx5tw/J6N7ZvCZIi3d1g3cW2e6gLg56hJKajmel8yBGC/Pdi
+ pKztpClQHYQRH/n4SA35OAIQrMQahKwxysbpyeWvqvjw+fLjzfXVrf5Cs9vk23u6Kary8/K7GOcI
+ u78nGX9ETaVtnKbI1gyw9ISRMmtx8W62mq2WF/MeaKwincMqFycLO2nY8GQ+my8ms4tJsXyOri1L
+ CmINf4wAAB77d9ZpFD2INczGPywNhYAVifXRCUB4q7NFYAgcIpooxidQWhPJZOkmaX0GRGv1TqLW
+ p8TD83h2PjULtd5t7n/+/dut+vT+49ebuPnt8rq7qdL3RXuWb6DuXC+oTEYem3SGH+3rV8kAhMGm
+ j73r7vrejV87oK9SQyZm2eJxK9i4FLdivRUbb1WSEb5Sy3RYA29qawiKBWy83W7Ndmu+1QSGDi8h
+ 8OQ8hcwJCIErwyVLNBGSqzwqAtuSB+epZZsC9D81TCGT7RNrBX8n1Bw74AD0IMnl4lCP4cCxznEN
+ pwYajOQZdYAUSEGsvU1VbVOcwifqoCSMyVMANlInRetB8QSuO4MNS/glaDQKFAensQM2kSqPOVXv
+ tljebaBBNiCxIY+98bL4AFdsDUuQNbuB8gpjJN+B5pKyZG5y+YFbGoPGENlUgFAmrUFhB7aEmrDt
+ suyh6CEBhC5EasD1bacAISZjcrCrbbS5ENjbWGcSzVUdIcvX9jAZvqQ1irP8MB10fWnJo85tq1kT
+ 0IMjk1UBRvhptVqNIdYcQFHLkkCR5pb80HGtyURoUSeC0npw9kA+C/ahz9orqjy6ugMysU6BMcQw
+ 3Yon8eKCPY3eOv95NjeeyhRQPw/Us/3pOKHaVs7bfXg1cKJkw6HeecLQX3wRonVD7pynzyDSi+EW
+ ztvGxV20f5HJhPNFMfCJ0wI6oUVx8YxGG1GfgHfvl+M3CHeKInI//seNI1HWpE6hp82DSbE9A0Zn
+ Zf9bzlvcQ+lsqv9DfwJknidSO+dJsXxZ8snNU17Q/+V2bHMvWAwXd1eyqcg7z/16FKXbzfY4U8V8
+ URZi9DT6BwAA//8DAGLWUl4sBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6656bbb6161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:53 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1787'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_8776ec9cd72f6479826c7a441fe73532
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCPeYBHGaXZO8tRs23Hrd9bYdisMyBIxE29xkSdGPpEbR/32Q
+ 3YvTrgPmB0PmR378SIt8HAEIVmINQtYYZeP05OqzKpZf3fvrm0+776+l+fjTbzp+3LNs7z9/EOMc
+ YXd/kYzfoqbSNk5TZGt6WHrCSJm1uLyYrWar5eWiAxqrSOewysXJwk4aNjyZz+aLyexyUiyfo2vL
+ koJYwx8jAIDH7p11GkUPYg2z8TdLQyFgRWJ9cgIQ3upsERgCh4gmivEASmsimSzdJK3PgGit3krU
+ ekjcP49n56FZqPXW/3x/1PaC78v9F/fjL19nN/fzq73fn+XrqVvXCSqTkacmneEn+/pVMgBhsOli
+ b9vbrnfj1w7oq9SQiVm2eNwINi7FjVhvxJ23KskIv9KB6bgGvqutISgWcOftZmM2G/N7TWDo+BIC
+ T85TyJyAELgyXLJEEyG5yqMisAfy4Dwd2KYA3U8NU8hku8RawT6h5tgCB6AHSS4Xh3oMR451jms4
+ NdBgJM+oA6RACmLtbapqm+IUbqiFkjAmTwHYSJ0UrXvFE/ihNdiwhA9Bo1GgODiNLbCJVHnMqTq3
+ xfL2DhpkAxIb8tgZr4r3cM3WsARZs+sprzFG8i1oLilL5iaXH/hAY9AYIpsKEMqkNShswZZQEx7a
+ LLsvuk8AoQ2RGnBd2ylAiMmYHOxqG20uBHY21plEc1VHyPK1PU76L2mN4iw/THtdnw7kUee21awJ
+ 6MGRyaoAI7xbrVZjiDUHUHRgSaBI84F833GtyUQ4oE4EpfXg7JF8FuxDl7VTVHl0dQtkYp0CY4hh
+ uhFP4sUFexq9df7zbG48lSmgfh6oZ/vTaUK1rZy3u/Bq4ETJhkO99YShu/giROv63DlPl0GkF8Mt
+ nLeNi9to/yaTCeeLoucTwwIa0KK4fEajjagH4OK75fgNwq2iiNyN/2njSJQ1qSF02DyYFNszYHRW
+ 9r/lvMXdl86m+j/0AyDzPJHaOk+K5cuSBzdPeUH/l9upzZ1g0V/cbcmmIu88d+tRlG472+FMFfNF
+ WYjR0+gfAAAA//8DAFA5FugsBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66577ebe961c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2023'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_a5762df50a58219920e8b22e8f1fe793
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"input": {"description":
+ "Text for text", "title": "Input", "type": "string"}}, "required": ["input"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1263'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMiriX9UfeercCu92KdbcDbsMyBIxE2+zJkk6iknpF//dB
+ di9Juw6YHwyZH/nxIy3yYQKg2KglKN2i6C7Y2dWvprqa37373V9/Pjv9JNVv+G7x4x8/f7nh9zs1
+ LRF+c0davkWdaN8FS8LejbCOhEKFtTp/M7+cX16cnw1A5w3ZEtYEmS38rGPHs9P56WI2P59VF0/R
+ rWdNSS3hzwkAwMPwLjqdoXu1hPn0m6WjlLAhtdw7AajobbEoTImToBM1PYDaOyFXpLts7REg3tu1
+ RmsPicfn4eh8aBZau/74WfR15ejrT/L3VXfX+7Pr+wvcfDjKN1L3YRBUZ6f3TTrC9/bli2QAymE3
+ xN70N0Pvpi8dMDa5IydFtnpYKXYhy0otV+o2epO1wEfaMu2WwLetdwTVAm6jX63cauU+tQSOds8h
+ iBQipcIJCIkbxzVrdAI5NBENgd9ShBBpyz4nGH5qOoFCtslsDXzNaFl64AR0rymU4tBOYcfSlriO
+ cwcdCkVGmyAnMiBt9LlpfZYT+EA91ISSIyVgp202tBwVz+CH3mHHGt4ni86A4RQs9sBOqIlYUg1u
+ i4ubW+iQHWjsKOJgvKrO4C17xxp0y2GkfIsiFHuwXFORzF0pP/GWpmAxCbsGEOpsLRjswdfQEm77
+ InssekwAqU9CHYSh7ZQgSXauBIfWiy+FwMZLW0gsN61AkW/9bjZ+ae8MF/npZNT1y5Yi2tK2li0B
+ 3QdyRRWgwHeXl5dTkJYTGNqyJjBkeUtx7Li15AS2aDNB7SMEv6NYBMc0ZB0UNRFD2wM5aXNiTJJO
+ VupRPbtgj5PXzn8dzU2kOie0TwP1ZH/cT6j1TYh+k14MnKrZcWrXkTANF18l8WHMXfIMGVR+Ntwq
+ RN8FWYv/Qq4Qni6qkU8dFtABrarzJ1S8oD0Ab76/mL5CuDYkyMP47zeORt2SOYQeNg9mw/4ImByV
+ /W85r3GPpbNr/g/9AdBlnsisQyTD+nnJB7dIZUH/l9u+zYNgNV7cdc2uoRgiD+tR1WE93+DcVKeL
+ ulKTx8k/AAAA//8DACRyLNUsBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66585988461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:58 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2302'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_8f02e2915df2d5e99dc844b88860fbe2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC86yu2vOQiG1YdI7EvRdEH4jYpUPRQtEVhUORaYkJxWXKV1An874Vo
+ RXLQFOiFh5mdwcwuHzIAYbRYgVC1ZNV4O3n9WRdvbq6Ky13Jl++/zL6+/fDdXP36+O7TffFN5J2C
+ ymtU/KiaKmq8RTbkDrQKKBk71+JsPlvOludn54loSKPtZJXnyXy6mHAbSprMipeLXlmTURjFCn5k
+ AAAP6e0yOo2/xQpm+SPSYIyyQrEahgBEINshQsZoIkvHIh9JRY7RpdgXaC29gPVJA9dtZJBwawK3
+ 0sKgzCESrEGTO2Go5S3CFtEaV8UcypaTtsaAwAQ1Wg87auHOcA3S7bg2rkqIQ9RTuKA7UNLBuvdP
+ FJOWu1fHCQNu2yi7DbnW2h7fD5UtVT5QGXt+wLfGmVhvAspIrqsXmbxI7D4D+JlW2z7ZlvCBGs8b
+ pht0nWFxerAT4zFHcr7oSSaWdsRPl/kzbhuNLI2NR6cRSqoa9agc7yhbbeiIyI46/x3mOe9Db+Oq
+ /7EfCaXQM+qND6iNelp4HAvYffV/jQ07ToFF3EXGZrM1rsLgg0mfLZ1yn/0BAAD//wMAJ8PPoWsD
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66595587661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:17:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '601'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_3b4ec751f1ddd16db55c4d6c014a9747
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqbprUneUnTYHYau3e3e1iFgJNpiT5Z0+uHUKPq/D7Jz
+ cdrdgPnBkPmRHz/SIl8mAIKV2ICQGpNsvJlt/1CL21+v75fbh+vftx+/tfd3y/WfYb16WnZeTEuE
+ 2z+RTN+j5tI13lBiZwdYBsJEhXVxvbxYX6xX1+seaJwiU8Jqn2bL+YdZymHvZheLyw/HSO1YUhQb
+ +GsCAPDSv4tGq+hZbOBi+t3SUIxYk9icnABEcKZYBMbIMaFNYjqC0tlEtsi22ZgzIDlndhKNGRMP
+ z8vZeWwUGrP78svnrVddXn0y3U2jbf10e1nlw8ezfAN153tBVbby1KAz/GTfvEsGICw2fexdd9f3
+ bfreAUOdG7KpyBYvj6IiUnuUXx/F5lF80QSWDsAP2lmCxRU8BAeBfKBYYgAhcm25Yok2QfZ1QEXg
+ WgrgA7XscoT+h8U5FLJ9ZqPgW0bDqQOOQM+SfBGPZgoHTrrENZwbaDBRYDQRciQFSQeXa+1ymsNv
+ 1EFFmHKgCGylyYrgtrPYsIRP0aBVoDh6gx2wTVQHLCmmcLW6e4AG2YLEhgJOobhuFz/DDTvLEqRm
+ P4cbTIlCB4YrKiK5KQVHbmkKBmNiWwNClY0BhR24CjRh2xWhQ5kDO8QuJmrAB6eypAgxZWtLsNcu
+ uSId9i7pQmK41qlXY9xhNnxJZxUX4XEO9y0FNKVHmg0BPXuyRRBggp/W6/UUkuYIilqWBIoMtxSG
+ 9hpDNkGLJhNULoB3BwpFa4h9wl5MHdDrDsgmnSNjTHH+KF7Fm9vyOvnR+e+zIQhU5YjmOB1H++tp
+ 3IyrfXD7+G56RMWWo94FwtjfYhGT80PukqfPIPKbSRU+uManXXJfyRbCy6vLgU+Mm2RE16sjmFxC
+ M9qXV8dl8JZvpygh96N82h4SpSY1ho5bBLNidwZMzqr+t5ofcQ+Vs63/D/0IyDI7pHY+kGL5tuLR
+ LVBZtP/ldupyL1gMV3ZXsa0p+MCnVTd5nfwDAAD//wMAqpxCcekFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6659b18f261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1397'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_5fc307a17e5e7a8500d641904a7b6f75
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bOAx+z19BCHtMgqTNekne2hXDhq1Yh7tbN6yHgJFoi1dZ0vQjrVH0fz/I
+ zuK0twPOD4bMj/z4kRb5OAIQrMQahNSYZOPN5Pyzmr+VN1t99+HPszOtv17e3Py42355x1EaMS4R
+ bvs3yfQzaipd4w0ldraHZSBMVFjnv53OVrPVcjnvgMYpMiWs9mlyOn09STls3WQ2P3m9j9SOJUWx
+ hu8jAIDH7l00WkUPYg2z8U9LQzFiTWJ9cAIQwZliERgjx4Q2ifEASmcT2SLbZmOOgOSc2Ug0Zkjc
+ P49H56FRaMzm8uP54vOFX3xSsze/n52b3bf225evy49H+Xrq1neCqmzloUFH+MG+fpEMQFhsutir
+ 9qrr2/ilA4Y6N2RTkS0eb0VFpLYo727F+lb8oQks3QNfa2cJ5gu4Dg4C+UCxxABC5NpyxRJtguzr
+ gIrA7SiAD7RjlyN0PyxOoZBtMxsFPzIaTi1wBHqQ5It4NGO456RLXMO5gQYTBUYTIUdSkHRwudYu
+ pyl8oBYqwpQDRWArTVYEl63FhiW8jwatAsXRG2yBbaI6YEkxhsXy6hoaZAsSGwo4huJ6Pj+DC3aW
+ JUjNfgoXmBKFFgxXVERyUwqOvKMxGIyJbQ0IVTYGFLbgKtCEu7YI7cvs2SG2MVEDPjiVJUWIKVtb
+ gr12yRXpsHVJFxLDtU6dGuPuJ/2XdFZxER6n8GlHAU3pkWZDQA+ebBEEmODVarUaQ9IcQdGOJYEi
+ wzsKfXuNIZtghyYTVC6Ad/cUitYQu4SdmDqg1y2QTTpHxpji9FY8iWe35Wn0q/NfR0MQqMoRzX46
+ 9vanw7gZV/vgtvHF9IiKLUe9CYSxu8UiJuf73CVPl0HkZ5MqfHCNT5vk7sgWwpPFSc8nhk0yoKvl
+ HkwuoRnsp4v9MnjOt1GUkLtRPmwPiVKTGkKHLYJZsTsCRkdV/1vNr7j7ytnW/4d+AGSZHVIbH0ix
+ fF7x4BaoLNr/cjt0uRMs+iu7qdjWFHzgw6obPY3+AQAA//8DAPzBEgjpBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665a4cfb161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1331'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_9bc51c7acc891efa0469fe244b5a67b6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghD3aRpw4Wey3Fu2ybguaFsVelsGgJd6Jq07SJMrJIch/H3Tn
+ 2k7WAbuHg44f+fEjT+TTBECxUWtQ2qLoLrrZm09mcXOzuKGrq93n1W+/d0v7hS750+3H9z/9oqY1
+ Imz/Ii3fouY6dNGRcPAjrBOhUGVd/HhxtjpbXV+fD0AXDLka1kaZXcwvZ1LSNszOFueX+0gbWFNW
+ a/hjAgDwNLyrRm/oUa3hbPrN0lHO2JJaH5wAVAquWhTmzFnQi5oeQR28kK+yfXHuBJAQ3Eajc8fE
+ 4/N0cj42Cp3bLJfbm/jzBdJ7bXO4vcupyIftu88n+UbqPg6CmuL1oUEn+MG+fpUMQHnshtjb/nbo
+ 2/S1A6a2dOSlylZP96ohMlvUX+/V+l59sQSeHoDvbPAEiyXcpQCJYqJcYwAhc+u5YY1eoMQ2oSEI
+ O0oQE+04lAzDD8tzqGTbws7A3wUdSw+cgR41xSoe3RQeWGyN67h00KFQYnQZSiYDYlMorQ1F5vAr
+ 9dAQSkmUgb12xRC86z12rOFDdugNGM7RYQ/shdqENcUUlte3d9Ahe9DYUcIpVNc3iyt4y8GzBm05
+ zuEtilDqwXFDVSR3teDMO5qCwyzsW0BoinNgsIfQgCXc9VXoWObIDrnPQh3EFEzRlCFL8b4GRxsk
+ VOmwDWIriePWyqDGhYfZ+KWDN1yF5zl83FFCV3tk2RHQYyRfBQEK/LBaraYgljMY2rEmMOR4R2ls
+ r3PkBXboCkETEsTwQKlqTXlIOIhpE0bbA3mxJTNmyfN79axe3JbnyffOf54MQaKmZHT76djbnw/j
+ 5kIbU9jmV9OjGvac7SYR5uEWqywhjrlrniGDKi8mVcUUuigbCV/JV8Lz5fnIp46b5IiurvegBEF3
+ tF8s98vgJd/GkCAPo3zYHhq1JXMMPW4RLIbDCTA5qfrfar7HPVbOvv0/9EdA19khs4mJDOuXFR/d
+ EtVF+19uhy4PgtV4ZTcN+5ZSTHxYdZPnyT8AAAD//wMAQvS+kOkFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665ae4d8161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:04 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1601'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_7a8b5efcaf588de5bf9954e8b6fb3249
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bOAx+z19BCHt0gqTJek3e1rth69puLXAFBqyHgJFom50s6fQjqVf0fz/I
+ zuK0twPOD4bMj/z4kRb5NAIQrMQKhKwxysbp8btbNbv4Ws1vH+4+ftz8vrxO4fzi8mr62fCHU1Hk
+ CLt5IBl/Rk2kbZymyNb0sPSEkTLr7Lf5dDldnp0tOqCxinQOq1wczydvxzH5jR1PZydv95G1ZUlB
+ rODbCADgqXtnjUbRo1jBtPhpaSgErEisDk4AwludLQJD4BDRRFEMoLQmksmyTdL6CIjW6rVErYfE
+ /fN0dB4ahVqvr77Om6uL09vPu7tEXz59eH/56eFu+uP9Ub6eunWdoDIZeWjQEX6wr14lAxAGmy72
+ ur3u+la8dkBfpYZMzLLF070oidQG5fd7sboXf9YEhnbAN7U1BLMF3HgLnpynkGMAIXBluGSJJkJy
+ lUdFYLfkwXnask0Buh8WJpDJNom1gr8Tao4tcAB6lOSyeNQF7DjWOa7h1ECDkTyjDpACKYi1t6mq
+ bYoTuKQWSsKYPAVgI3VSBH+0BhuWcBE0GgWKg9PYAptIlcecooDF2fUNNMgGJDbksYDs+m52Cuds
+ DUuQNbsJnGOM5FvQXFIWyU0uOPCWCtAYIpsKEMqkNShswZZQE27bLLQvs2eH0IZIDThvVZIUIMRk
+ TA52tY02S4eNjXUm0VzVsVOj7W7cf0lrFGfhYQJftuRR5x7VrAno0ZHJggAjvFkulwXEmgMo2rIk
+ UKR5S75vr9ZkImxRJ4LSenB2Rz5r9aFL2ImpPLq6BTKxToExxDC5F8/ixW15Hv3q/NfREHgqU0C9
+ n469/fkwbtpWzttNeDU9omTDoV57wtDdYhGidX3unKfLINKLSRXO28bFdbTfyWTCk8VJzyeGTTKg
+ y7M9GG1EPdjni/0yeMm3VhSRu1E+bA+JsiY1hA5bBJNiewSMjqr+t5pfcfeVs6n+D/0AyDw7pNbO
+ k2L5suLBzVNetP/lduhyJ1j0V3ZdsqnIO8+HVTd6Hv0DAAD//wMAxLMSv+kFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665b9cf0561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1655'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_0e043487a283415ad59881f12c90336e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mQdL2ek3e2tsGHK7dtcDuYViHgJFomz1Z0klUWq/ofx9k
+ 5+K0uwHzgyHzIz9+pEU+TwAUG7UGpRsU3QY7u7wzy092xXfdH1daf/7y/rcvt6sPdC4f2+WJmpYI
+ v30gLd+j5tq3wZKwdwOsI6FQYV2+P12sFquLi/MeaL0hW8LqILPT+buZ5Lj1s8Xy5N0+svGsKak1
+ /DkBAHju30WjM/Sk1rCYfre0lBLWpNYHJwAVvS0WhSlxEnSipiOovRNyRbbL1h4B4r3daLR2TDw8
+ z0fnsVFo7ebXv+Pi8sp/e9h9eLjku/b6+pfrJ17dHeUbqLvQC6qy04cGHeEH+/pNMgDlsO1jb7qb
+ vm/Ttw4Y69ySkyJbPd+rishsUX+9V+t79XtD4OgR+LbxjmB5BrfRQ6QQKZUYQEhcO65YoxPIoY5o
+ CPyOIoRIO/Y5Qf/D0hwK2TazNfAto2XpgBPQk6ZQxKOdwiNLU+Jazi20KBQZbYKcyIA00ee68Vnm
+ 8Ik6qAglR0rATttsCH7uHLas4WOy6AwYTsFiB+yE6oglxRTOLm5uoUV2oLGliFMorpfLc7hi71iD
+ bjjM4QpFKHZguaIikttScOIdTcFiEnY1IFTZWjDYga+gIdx1RehQ5sAOqUtCLYToTdaUIEl2rgSH
+ xosv0mHrpSkklutGejXWP86GL+2d4SI8zeHzjiLa0qOGLQE9BXJFEKDAT6vVagrScAJDO9YEhizv
+ KA7ttZacwA5tJqh8hOAfKRatMfUJezF1xNB0QE6anBiTpPm9elGvbsvL5Efnv46GIFKVE9r9dOzt
+ L4dxs74O0W/Tm+lRFTtOzSYSpv4WqyQ+DLlLnj6Dyq8mVYXo2yAb8V/JFcKTs5OBT42bZERXF3tQ
+ vKAd7adn+2Xwmm9jSJD7UT5sD426ITOGjlsEs2F/BEyOqv63mh9xD5Wzq/8P/QjoMjtkNiGSYf26
+ 4tEtUlm0/+V26HIvWA1XdlOxqymGyIdVN3mZ/AMAAP//AwALD30t6QUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665c54fca61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1883'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_63f64bb720cfe5163a68232f8bb167bf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTY/TMBS851c8fOHSrJJt2U17QXBAWxCfh60EQpHXfk0Mjp+xX8SWVf87ysc2
+ qQCJiw8zb0YzIz8kAMJosQGhasmq8TZ98VHnb3e/Xq93u+bdJ33/Rm5/vHxvPny+feVQLDoF3X1D
+ xY+qC0WNt8iG3ECrgJKxc82vl9k6WxdF0RMNabSdrPKcrii9zC5XaVak2dUorMkojGIDXxIAgIf+
+ 7SI6jfdiA9niEWkwRlmh2JyOAEQg2yFCxmgiS8diMZGKHKPrU9+gtfQEtk8bqDEgSKchoNQHYIIa
+ rb+AG/oJSjrYwmAGB2qBScvD87lpwH0bZdfJtdaO+PGU0lLlA93FkT/he+NMrMuAMpLrEkUmL3r2
+ mAB87ddozwoKH6jxXDJ9R9cZ5qvBTkzzz8irkWRiaSd8OS547lZqZGlsnK0plFQ16kk5TS9bbWhG
+ JLPOf4b5m/fQ27jqf+wnQin0jLr0AbVR54Wns4Dd5/zX2WnjPrCIh8jYlHvjKgw+mOF/7H2ZP1vr
+ YrnKlRLJMfkNAAD//wMASl0EICgDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665d21aaa61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '476'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_4b0d4454b973c436cc249ce06425466d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwW4bOQy9+ysIXXoZB3Zit45vKYoFskEW2W0We9gsDFrizDDRSKpEJR4E+fdC
+ Y9d20hTYOQxm+MhH8knk8whAsVFLULpF0V2w44s/zfSP+3ix+Ws++33x26Uz9uH669zVs6t/blVV
+ Ivz6nrT8iDrRvguWhL3bwjoSChXW6aezyfnkfLE4H4DOG7IlrAkynvnx6eR0Np4sxpOPu8DWs6ak
+ lvDvCADgeXiXEp2hjVrCpPph6SglbEgt904AKnpbLApT4iToRFUHUHsn5ErVLlt7BIj3dqXR2kPi
+ 7fN89H3QCa1dfdb1Jvn1ZHJxP73afPu6+Pv09mr+9OUo35a6D0NBdXZ6r88Rvrcv3yQDUA67Ifa6
+ vx5kq946YGxyR05K2er5TtVEZo364U4t79RtSyC0EQjRP7KhBAjlnCK15BI/EkR6ZHoCX4O0BHzT
+ ekcwncFN9BW03LSWm1bYNcCSIHHjuGaNTiCHJqKhVEGI1HHuYJ3ZGviW0bL0FaAz8EA91ISSIyVI
+ WbeAacj0pXfYsYbLZIuf4RQs9hXMFtc30CE70NhRxC3NxfQjfGbvWINuOZxAaWxXeojIibasXFpL
+ Q2NrFKHYg+WaBo6Cbzk/JMA1lyJBfJHGZE2QJDtXGg2tF5+AHTxiZJ8T7DXQ3hkuR5VO4FLKr7bZ
+ DMlRwFAKLDQoVaSDEFlT9bOy4OuaYgLaaLKWnMAj2kwVBIzCOluMtofaRwj+iSLkVLxLE0NtTcTQ
+ 9kBO2pwYk6STO/WiXt2Ml9F73/8dXfhIdU5od5Ows7/sR8v6JkS/Tm8mRdXsOLWrSJiGG6uS+LDN
+ XfIMGVR+NZUqRN8FWYl/IFcIT2fTLZ86LI0Dev5pB4oXtAf72dmieodvZUiQh7HdbwqNuiVzCD1s
+ DMyG/REwOur652re4952zq75P/QHQGsKQmYVIhnWrzs+uEUqO/VXbnuVh4JV6pNQt6rZNRRD5GGt
+ qTqsZnNdz2eGkNToZfQdAAD//wMAuw5jW98FAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665d698fc61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5421'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_bbd5b049b1d13213c3fcbe81e6ddbbe5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jNhC9+1cMeJYNO/amtm+7aNEGabIJ0ltTGGNyJE2XIll+OBaC/PcFacdy
+ simwOhjyPL73ZkbDeR4BCFZiDUK2GGXn9PjzvZo9/PYUr78+/Hl183C9W1p36/399nd7+YeoMsNu
+ /yUZX1kTaTunKbI1B1h6wkhZdfbLfLqarparRQE6q0hnWuPieGHHF9OLxXi6HE8vj8TWsqQg1vD3
+ CADgufzmFI2ivVjDtHqNdBQCNiTWp0MAwludIwJD4BDRRFENoLQmkslZm6T1GRCt1RuJWg/Gh+f5
+ 7H3oE2q9uV6Z++VWtbc89zS7X9kne7vfz7+e+R2ke1cSqpORp/6c4af4+p0ZgDDYFe5Nf1PaVr0/
+ gL5JHZmY0xbPj6ImUluU3x7F+lH81RJE2kdw3u5YUQCE/J08tWQC7wg87ZiewNYQWwK+a60hmC3g
+ ztsKWm5azU0b2TTAMUDgxnDNEk2E5BqPRdIocJ46Th1sE2sF/yXUHPsJXFMPNWFMngKEJFvAUIx+
+ 7Q12LOEq6ExXHJzGvoLF8uYOOmQDEjvyWBX1z7NL+MLWsATZsgP0BLlmtobUBHKVxzqcRw508OBc
+ ZyhVbjFG8j1orqko0l6Sy3zURydw5GvrOzSSgA3s0LNNAU71S2sUZ0qYwFXMf6VOqnhhBEXBcaTS
+ pdw2cJ4lVT92FWxdkw8lA63JRNihTgS19eDsE3lIIeOlq62NtvHo2h7IxDYFxhDD5FG8iDdz8DL6
+ 6P2fs/H2VKeA+jj3x/jL6SJp2zhvt+HdvRA1Gw7txhOGMp8iROsO3tmnOIj05g4K523n4ibab2Sy
+ 4MVidtATw4oY0NUrGG1EPcTn84vqA72NoohcLulpL0iULamBOuwHTIrtGTA6q/rHbD7SPlTOpvkZ
+ +QGQebxIbZwnxfJtxcMxT3mD/t+xU5dLwiL0IVK3qdk05J3nssRE7TaLT7L+tFCEJEYvo+8AAAD/
+ /wMAGjkoO80FAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de665f96d8061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3102'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_768a2f3803f2ec79ef87353872be79fc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jNhC9+1cMeLYNO3Gyjm+73QUaFG7SxRbboimMMTmSJqFIlhw6UYP894Ky
+ 13LSLVAdBGo+3ps34szzCECxUStQukHRbbCT97+Y+de/209fttlf09fm5off1+xuLm+u19WjGpcM
+ v70nLd+yptq3wZKwd3u3joRCBXX+7nx2NbtaXi17R+sN2ZJWB5ks/ORsdraYzJaT2eUhsfGsKakV
+ /DECAHju36VEZ+hJrWA2/mZpKSWsSa2OQQAqelssClPiJOhEjQen9k7IlapdtvbEId7bjUZrB+L9
+ 83xyHvqE1m6ePv188dvHz7/6qv0cn35c3i+r+O7D5f0J3x66C31BVXb62J8T/9G+ekMGoBy2fe66
+ W/dtG78NwFjnlpyUstXznaqIzBb1w51a3akvDYHQk0CIfseGEiCU/xSpIZd4RxBpx/QIvgJpCPi2
+ 8Y5gvoDb6MfQcN1YrhthVwNLgsS144o1OoEc6og9pDMQIrWcW9hmtgb+ymhZuin8RB1UhJIjJUhZ
+ N4CpJ/rYOWxZw3WyJd1wCha7MSyW61tokR1obCniuEd/P7+ED+wda9ANB8BIUDSzd2SmUFQedKBN
+ HkJETrQn4iI29VK3KEKxA8sV9bB7CggUKx9bdJqAHewwss8JjsK1d4YLV5rCtZRPbXMRvu0A9YPz
+ j5ZMXSILYekZhMiaYJsF7nMSrpgSsMAjS9MH7dBmAl9VFMmAeAj+kSLkRPHQz8aLryOGpgNy0uTE
+ mCRN79SLenUDXkbfO/95crEjVTmhPdz4g/3lOELW1yH6bXozEapix6nZRMLU30yVxIc9d+HpGVR+
+ NX0qRN8G2Yh/IFcAzxbzPZ4alsPgXV4dnOIF7WA/Pz8M+Gu8jSFB7sfzuBE06obMkDpsBsyG/Ylj
+ dKL639V8D3uvnF39f+AHh9YUhMwmRDKsXysewiKV3flfYccu9wWr1CWhdlOxqymGyP36UlXYLC50
+ dbEwhKRGL6N/AAAA//8DALsyBjrHBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6660dcbed61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4429'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_43e57d5ac855ab63acf68cc709e71bbe
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUwW4jNwy9+ysInW3DdrzZxLdt0rSLIm0WaAu0TWHQEmeGiUZSJcrONMi/Fxo7
+ HifdAp2DMRb53uPjiHweASg2agVKNyi6DXby6YuZbz7y8ruH85/+bqrz+sebzcL89vTrzazOalwQ
+ fvNAWl5RU+3bYEnYu31YR0Khwjr/eDa7nF1ezs76QOsN2QKrg0yWfrKYLZaT2cVkdn4ANp41JbWC
+ P0YAAM/9bynRGXpSK5iNX09aSglrUqtjEoCK3pYThSlxEnSixkNQeyfkStUuW3sSEO/tWqO1g/D+
+ eT55H/qE1q6vt3O3W1zpbx9ukr267n75/up3rvjiRG9P3YW+oCo7fezPSfx4vnonBqActj32trvt
+ 2zZ+n4Cxzi05KWWr53tVEZkN6sd7tbpXPzcEQk8CIfotG0qAUL5TpIZc4i1BpC3TDnwF0hDwXeMd
+ wXwJd9GPoeG6sVw3wq4GlgSJa8cVa3QCOdQRe0pnIERqObewyWwN/JXRsnRT+IE6qAglR0qQsm4A
+ Uy903TlsWcPnZAvccAoWuzEsL27voEV2oLGliOOe/dP8HL5h71iDbjgARoLimb0jM4Xi8uAjRORE
+ ew0uPlPvcoMiFDuwXFHPSE+aQsGjPShBoFj52KLTBOxgi5F9TnD0r70zXCBpCp+l/NU2F/+bDlA/
+ Or+zZOqSWcRL6yBE1gSbLPCQk3DFlIAFdixNn1SqsJacwBZtJvBVRZEMiIfgdxQhJ4qHBjdefB0x
+ NB2QkyYnxiRpeq9e1Jsr8TL62vufJzc9UpUT2sMIHM5fjjNlfR2i36R3I6IqdpyadSRM/VVVSXzY
+ axedXkHlN+OoQvRtkLX4R3KFcLGc7/nUsC2G6OVhsJV4QTucn529ot7wrQ0Jcj+vxxWhUTdkBuiw
+ KjAb9ieB0Ynrf1fzNe69c3b1/6EfArrcNDLrEMmwfut4SItUlul/pR273BesUpeE2nXFrqYYIvf7
+ TFVhvfygqw9LQ0hq9DL6BwAA//8DAAPQGxrYBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6662b0fc861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:26 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3506'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_59fefafcfda684d9e7084418b7691232
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW8jNwy9+1cQuuzFNmxnNpv4lqLYIigMuIuiC2xTGLTEGdHWSKo+nEyD/PdC
+ Y8fjpLtA52CMSb5HPg7J5xGAYCWWIKTGJFtvJne/qTl9vfPxHr8tqpXd4SKsv8x3e3e4qcS4INx2
+ RzK9oqbStd5QYmePbhkIExXW+aer2e3s9nZ23Ttap8gUWOPTpHKTxWxRTWY3k9n1CagdS4piCX+O
+ AACe+99SolX0JJYwG79aWooRGxLLcxCACM4Ui8AYOSa0SYwHp3Q2kS1V22zMhSM5ZzYSjRkSH5/n
+ i/ehT2jM5p/mSclvf6zV53b39eZTtT+EX76sPt9f5DtSd74vqM5Wnvtz4T/bl++SAQiLbY9ddau+
+ beP3ARia3JJNpWzx/CBqIrVFuX8QywfxuyZI9JTAB3dgRREQyncKpMlGPhAEOjA9gqshaQJea2cJ
+ 5hWsgxuD5kYbbnRi2wCnCJEbyzVLtAmybwL2lFaBD9RybmGb2Sj4O6Ph1E3hV+qgJkw5UISYpQaM
+ faKfO4stS7iPpsAVR2+wG0N1s1pDi2xBYksBxz373fwafmJnWYLU7AEDQdHMzpKaQlF50uEDcqRj
+ Di46Y69yiylR6MBwTT0jPUnyBY/mlAk8hdqFFq0kYAsHDOxyhLN+6aziAolTuE/lrzS56N92gHJv
+ 3aMh1ZTIkry0DnxgSbDNCXY5Jq6ZInCCR066D1J0YEkfIhzQZILaBfDukQLkSOHUWO2SawJ63QHZ
+ pHNkjClOH8SLeDMKL6Pvvf91MeGB6hzRnEb/ZH8575JxjQ9uG9+thqjZctSbQBj7ERUxOX/MXfL0
+ GUR+s4bCB9f6tEluT7YQLqr5kU8MV2Lw3p4WWiSX0Az2q6tX1Bu+jaKE3O/p+TRIlJrUAB1OBGbF
+ 7sIxulD932q+x31Uzrb5P/SDQ5YJI7XxgRTLt4qHsEDliP4o7NzlvmARu5io3dRsGwo+cH/HRO03
+ 1UdZf6wUIYnRy+hfAAAA//8DAHcq2STQBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666439c5361c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2846'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_8bfb72a8dab985bc4bb08561a344b5c3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSu27cMBDs9RUbNm5OhmSd4+iaIGn8KJxHEyBBIPDIlUSH4hLkCsjZuH8PqDuf
+ ZMQB0rCY2RnMDPiUAQijxQaE6iWrwdv8wxdd9g/262O05XBzd11cvguPn3t7//F790mskoK2D6j4
+ WXWuaPAW2ZA70CqgZEyu5VVV1EVdF/VEDKTRJlnnOV/nPIYt5RfFxTov1nlRH9U9GYVRbOBHBgDw
+ NL0pp9P4W2ygWD0jA8YoOxSb0xGACGQTImSMJrJ0LFYzqcgxuin6DVpLb+D2bIAeAwIT9Gg97Gg8
+ h2+9ZFDSwS1ogpZCgoFJy937pV/AdowydXKjtUd8fwpoqfOBtvHIn/DWOBP7JqCM5FKYyOTFxO4z
+ gJ/TEOOLbsIHGjw3TL/QJcNyfbAT8/wL8upIMrG0M16Vq1fcGo0sjY2LIYWSqkc9K+fV5agNLYhs
+ 0fnvMK95H3ob1/2P/UwohZ5RNz6gNupl4fksYPqc/zo7bTwFFnEXGYemNa7D4IM5fI3WN5d6WxXV
+ 26ptRbbP/gAAAP//AwC8gcHuKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66656c87861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:30 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '901'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_a9a3843b95e962fb2af44a6313a885ed
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227kNgx9n68ghD7OBHNNd+Ytu8WiFySb3W7QAnUx4Ei0zY0sqbp4YgT590J2
+ Op6kKVA/GDIPeXhIi3ycAAhWYgdC1hhl4/Ts6rNa8Ep++vy1/nB3U7Vf7pY3hNSuf/6t+l1Mc4Q9
+ fCMZ/4m6kLZxmiJbM8DSE0bKrIvvV/PtfLtdzHugsYp0DqtcnK1nMfmDnS3ny/Vsvp7Nt8/RtWVJ
+ QezgjwkAwGP/zjqNogexg56rtzQUAlYkdicnAOGtzhaBIXCIaKKYjqC0JpLJ0k3S+gyI1uq9RK3H
+ xMPzeHYem4Va73/cVHj3YXNptjfbX+dt8/Hb/XJ5tfl4lm+g7lwvqExGnpp0hp/su1fJAITBpo+9
+ 7q773k1fO6CvUkMmZtnisRAlkTqgvC/ErhC33qokI3yhlum4A76trSFYrOHW26IwRWG+1gSGji8h
+ 8OQ8hUwLCIErwyVLNBGSqzwqAtuSB+epZZsC9P81XEAmOyTWCv5KqDl2wAHoQZLL9aGewpFjneMa
+ Tg00GMkz6gApkIJYe5uq2qZ4Ab9QByVhTJ4CsJE6KdoNin/oDDYs4aeg0ShQHJzGDthEqjzmREVh
+ 1u+ub6FBNiCxIY9FYa4Wl/CerWEJsmY3kL3HGMl3oLmkLJabXHjglqagMUQ2FSCUSWtQ2IEtoSZs
+ uyx4KHegh9CFSA24vuEUIMRkTA52tY02lwAHG+tMormqI2Tp2h5nw5e0RnGWHi4GXZ9a8qhzw2rW
+ BPTgyGRVgBG+2263U4g1B1DUsiRQpLklP/RaazIRWtSJoLQenD2Sz4J96LP2iiqPru6ATKxTYAwx
+ XBTiSby4XU+Tt85/ng2NpzIF1M/T9Gx/Oo2ntpXz9hBeTZso2XCo954w9LdehGjdkDvn6TOI9GKy
+ hfO2cXEf7T2ZTLhcLwc+MW6fEV0sFs9otBH1CKw2q+kbhHtFEbmf/dO6kShrUmPouHYwKbZnwOSs
+ 7H/LeYt7KJ1N9X/oR0DmSSK1d54Uy5clj26e8nb+L7dTm3vBYri4+5JNRd557nejKN1+ow6r+epy
+ VZZi8jT5GwAA//8DAEy0NxYpBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6665d6a1a61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:34 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4038'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_9fa9e27fc8e696b3480930dca36c82fe
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bRgx+919BHPpoG3ZiO7Hf0g5YhyFoWqRru3ow6DtK4nK6u90POVqQ/304
+ KbWcLAOmB+HEj/z4kTryYQQgWIkNCFlhlLXTk6uPam7m784PDX+5eHf20a5u7Rf1zZVFW/0uxjnC
+ 7v8kGX9ETaWtnabI1vSw9ISRMuv84ny2nq3X82UH1FaRzmGli5PFJCa/t5Oz2dliMltMZuun6Mqy
+ pCA28H0EAPDQvbNOo+hebGA2/mGpKQQsSWyOTgDCW50tAkPgENFEMR5AaU0kk6WbpPUJEK3VO4la
+ D4n75+HkPDQLtd59+vr5/ftb+3PLd1ffli0tv/5drfxvH07y9dSt6wQVychjk07wo33zIhmAMFh3
+ sdftdde78UsH9GWqycQsWzxsRUGk9ijvtmKzFTfeqiQjfKKG6bABvqmsIZgv4Mbb7dZst+a2IjB0
+ eA6BJ+cpZFpACFwaLliiiZBc6VER2IY8OE8N2xSg+69hCplsn1gr+Cuh5tgCB6B7SS7Xh3oMB45V
+ jqs51VBjJM+oA6RACmLlbSorm+IUfqUWCsKYPAVgI3VStOkVT+Cn1mDNEn4JGo0CxcFpbIFNpNJj
+ TtW5LS6vb6BGNiCxJo+d8Wq+grdsDUuQFbue8i3GSL4FzQVlyVzn8gM3NAaNIbIpAaFIWoPCFmwB
+ FWHTZtl90X0CCG2IVIPr2k4BQkzG5GBX2WhzIbC3scokmssqQpav7WHSf0lrFGf5Ydrr+tCQR53b
+ VrEmoHtHJqsCjPBmvV6PIVYcQFHDkkCR5oZ833GtyURoUCeCwnpw9kA+C/ahy9opKj26qgUysUqB
+ McQw3YpH8eyOPY5eO/9xMjqeihRQP83Uk/3xOKTals7bfXgxc6Jgw6HaecLQ3X0RonV97pynyyDS
+ s/kWztvaxV20d2Qy4dnirOcTww4a0Hm/drrpjqgH4Hx5MX6FcKcoIncb4Lh0JMqK1BA6LB9Miu0J
+ MDop+99yXuPuS2dT/h/6AZB5nkjtnCfF8nnJg5unvKP/y+3Y5k6w6C/urmBTkneeuw0pCrdTS3W5
+ WF2uVyRGj6N/AAAA//8DAEOcpxEvBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666779f7d61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3657'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_8db288da6751cc52e2db3a3d589d6283
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUbW/bRgz+7l9BHPrRNvyWtva3ZluDoQviFsPaoR4M+o6SuJzuLvciRwjy34eT
+ UsvJMmD6IJz4kA8fUkc+jAAEK7EBISuMsnZ68uGzmt+Zb1+vrr644wzvb64K/+2nr/p2e9fOxThH
+ 2MPfJOOPqKm0tdMU2Zoelp4wUmadv1vO1rP1ev6+A2qrSOew0sXJahKTP9jJYrZYTWaryWz9FF1Z
+ lhTEBr6PAAAeunfWaRTdiw3Mxj8sNYWAJYnNyQlAeKuzRWAIHCKaKMYDKK2JZLJ0k7Q+A6K1ei9R
+ 6yFx/zycnYdmodb7RZILly4/pt/+KNubj8Wf61/KT5+r9ixfT926TlCRjDw16Qw/2TcvkgEIg3UX
+ e91ed70bv3RAX6aaTMyyxcNOFETqgPJ2JzY7sfVWJRnhCzVMxw3wtrKGYL6Crbe7ndntzO8VgaHj
+ cwg8OU8h0wJC4NJwwRJNhORKj4rANuTBeWrYpgDdfw1TyGSHxFrBXULNsQUOQPeSXK4P9RiOHKsc
+ V3OqocZInlEHSIEUxMrbVFY2xSl8ohYKwpg8BWAjdVK06RVP4OfWYM0Sfg0ajQLFwWlsgU2k0mNO
+ 1bmt3l9voUY2ILEmj53xw/wtXLI1LEFW7HrKS4yRfAuaC8qSuc7lB25oDBpDZFMCQpG0BoUt2AIq
+ wqbNsvui+wQQ2hCpBte1nQKEmIzJwa6y0eZC4GBjlUk0l1WELF/b46T/ktYozvLDtNd105BHndtW
+ sSage0cmqwKM8Ga9Xo8hVhxAUcOSQJHmhnzfca3JRGhQJ4LCenD2SD4L9qHL2ikqPbqqBTKxSoEx
+ xDDdiUfx7I49jl47/3U2Op6KFFA/zdST/fE0pNqWzttDeDFzomDDodp7wtDdfRGidX3unKfLINKz
+ +RbO29rFfbS3ZDLhYrXo+cSwgwZ0Pr94QqONqAdgefFu/ArhXlFE7jbAaelIlBWpIXRYPpgU2zNg
+ dFb2v+W8xt2Xzqb8P/QDIPM8kdo7T4rl85IHN095R/+X26nNnWDRX9x9waYk7zx3G1IUbn+hDsvZ
+ 8u2yKMTocfQPAAAA//8DAB+3sZovBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6668f79c661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:42 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4034'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ef19f78e1905fe402f446c1d23db59aa
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7ahq/Ztd82yAK9IIjbbbtBq8KgZyiJ3dHMdC5y1CD/XoyU
+ tZ00BaoHYcRDHh5SQz6OAAQrsQUha4yycXry4Uc1b9fpbv1Rvv9FHRIm697t1N/ffrr57aMY5wh7
+ +JNk/Bo1lbZxmiJbM8DSE0bKrPN3y9lmttkslj3QWEU6h1UuTlaTmPzBThazxWoyW01mm+fo2rKk
+ ILbw+wgA4LF/Z51G0YPYwmz81dJQCFiR2J6cAIS3OlsEhsAhoolifAalNZFMlm6S1hdAtFbvJWp9
+ Tjw8jxfnc7NQ6/39LH1u79fdPP76/efyeD2/urt3N4fdRb6BunO9oDIZeWrSBX6yb18lAxAGmz72
+ trvtezd+7YC+Sg2ZmGWLx0KUROqA8kshtoXYeauSjPATtUzHLfCutoZgvoKdt0VhisL8XBMYOr6E
+ wJPzFDItIASuDJcs0URIrvKoCGxLHpynlm0K0P/XMIVMdkisFfyVUHPsgAPQgySX60M9hiPHOsc1
+ nBpoMJJn1AFSIAWx9jZVtU1xCj9QByVhTJ4CsJE6KdoOim86gw1L+C5oNAoUB6exAzaRKo85UVGY
+ 1fvbHTTIBiQ25LEozIf5FVyzNSxB1uwGsmuMkXwHmkvKYrnJhQduaQwaQ2RTAUKZtAaFHdgSasK2
+ y4KHcgd6CF2I1IDrG04BQkzG5GBX22hzCXCwsc4kmqs6Qpau7XEyfElrFGfpYTroumvJo84Nq1kT
+ 0IMjk1UBRvhms9mMIdYcQFHLkkCR5pb80GutyURoUSeC0npw9kg+C/ahz9orqjy6ugMysU6BMcQw
+ LcSTeHG7nkZvnf+4GBpPZQqon6fp2f50Gk9tK+ftIbyaNlGy4VDvPWHob70I0bohd87TZxDpxWQL
+ 523j4j7aL2Qy4WK1GPjEefuc0fl8/oxGG1GfgeV6OX6DcK8oIvezf1o3EmVN6hx6XjuYFNsLYHRR
+ 9r/lvMU9lM6m+j/0Z0DmSSK1d54Uy5cln9085e38X26nNveCxXBx9yWbirzz3O9GUbr9Wh2Ws+XV
+ sizF6Gn0DwAAAP//AwBIHvcrKQYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666aa7f9661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:47 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4243'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_394f1e5351ade465bf64e0fc6d1ad882
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU247jNgx9z1cQQh+TILeZ2eRtZ2/YbQfNFm2BtikCRqJtbmRJ1SWJdzD/Xsie
+ jTPTKbB+MGQe8vCQFnk/ABCsxAqErDDK2unR689q+rWyb0/vT39cm9/9x9Or8tPt/B3uF64Rwxxh
+ d19Ixm9RY2lrpymyNR0sPWGkzDq9mU+Wk+VydtMCtVWkc1jp4mgxisnv7Gg2mS1Gk8VosnyMrixL
+ CmIFfw0AAO7bd9ZpFJ3ECibDb5aaQsCSxOrsBCC81dkiMAQOEU0Uwx6U1kQyWbpJWl8A0Vq9lah1
+ n7h77i/OfbNQ6+2cl1/ffJj/ZOfXV3v55/rDXn/67c69v8jXUTeuFVQkI89NusDP9tWzZADCYN3G
+ 3jV3be+Gzx3Ql6kmE7Nscb8RBZHaodxvxGoj1t6qJCP8Qgem4wp4XVlDMF3A2tvNxmw25teKwNDx
+ KQSenKeQaQEhcGm4YIkmQnKlR0VgD+TBeTqwTQHa/xrGkMl2ibWCfxJqjg1wADpJcrk+1EM4cqxy
+ XM2phhojeUYdIAVSECtvU1nZFMfwIzVQEMbkKQAbqZOiVad4BG8bgzVL+Bg0GgWKg9PYAJtIpcec
+ qnVbvLpbQ41sQGJNHlvj6+k13LI1LEFW7DrKW4yRfAOaC8qSuc7lBz7QEDSGyKYEhCJpDQobsAVU
+ hIcmy+6K7hJAaEKkGlzbdgoQYjImB7vKRpsLgZ2NVSbRXFYRsnxtj6PuS1qjOMsP407XzwfyqHPb
+ KtYEdHJksirACD8sl8shxIoDKDqwJFCk+UC+67jWZCIcUCeCwnpw9kg+C/ahzdoqKj26qgEysUqB
+ McQw3ogH8eSOPQxeOv99MTqeihRQP87Uo/3hPKTals7bXXg2c6Jgw6HaesLQ3n0RonVd7pynzSDS
+ k/kWztvaxW20ezKZcLaYdXyi30E9Op1ePaLRRtQ9ML+6Gb5AuFUUkdsNcF46EmVFqg/tlw8mxfYC
+ GFyU/V85L3F3pbMpv4e+B2SeJ1Jb50mxfFpy7+Yp7+j/czu3uRUsuou7LdiU5J3ndkOKwm2v1G4+
+ mV/Pi0IMHgb/AgAA//8DABg8TWEvBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666c69ce361c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:51 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4346'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_366ed30c91d9649f107686b0612f7097
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTWvcMBC9+1dMdellXWxny35cQktLEyiF0kMJpRitNLaVlTVCGne7hP3vxfZm
+ 7bQJ9KLDe/Me783oIQEQRostCNVIVq236buvuljyp495vPFflPuW3bW/yL7/fB/lh71Y9Ara3aPi
+ R9UbRa23yIbcSKuAkrF3zVdX2SbbbK6KgWhJo+1lted0SWlrnEmLrFim2SrN12d1Q0ZhFFv4kQAA
+ PAxvn9Np/C22kC0ekRZjlDWK7WUIQASyPSJkjCaydCwWE6nIMboh+u3rFjQZV8MBrV0AN9Lt4yu4
+ oQPIHXUMR+qu4XsjGZR0cAsNWt+DcDDcAJOWx+u5ecCqi7Iv6Dprz/jpktZS7QPt4pm/4JVxJjZl
+ QBnJ9ckikxcDe0oAfg5b6Z4UFT5Q67lk2qPrDfPlaCemW8zI9ZlkYmknfLzK326lRpbGxtlWhZKq
+ QT0ppxPIThuaEcms879hnvMeextX/4/9RCiFnlGXPqA26mnhaSxg/1NfGrvseAgs4jEytmVlXI3B
+ BzP+k8qX1duNXOfLYlWJ5JT8AQAA//8DAPlAbrE1AwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666e2a85761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:52 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '315'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995994'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_76da5aa74be88cc8628373f98f7c677d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/TMBR976+4snhsp7YL68fbBhIUqaLTQEJQFN06N8llju3ZDluo+t+R065p
+ B0jkIYruuefcjxx72wMQnIk5CFlikJVVg+vbbJz4yUrd3m6SO/UmrxM5/VV8GC8W1zeiHxlm84Nk
+ eGZdSFNZRYGN3sPSEQaKqqPJ5XA2nM0uxy1QmYxUpBU2DBIzqFjzYDwcJ4PhZDCaHtilYUlezOFb
+ DwBg275jnzqjJzGHYf85UpH3WJCYH5MAhDMqRgR6zz6gDqLfgdLoQDq2rmulToBgjEolKtUV3j/b
+ k+9uWahUerdaPnxpksn7Rj08mI93WH9175A+n9TbSze2bSivtTwu6QQ/xucvigEIjVXLXTbLdnf9
+ lwnoiroiHWLbYrsWOVG2QXm/FvO1+FQS8Ko0mmCUwMoZYA+ogZ4k2VgSFdS2cJgRPHIowTqquK5g
+ U7PK4KFGxaHpA8LbRmPFEhZeoc4gY28VtkgyXa6gQtYgsSKHfYgJqOF6dAU3bDRLkCXbC1gEMHlO
+ zgNX1pH3/JNggyGQa0BxTi3Th1pr1gXY0gTT9VDhfYxyAIQiGgz2RoHcOLDmkRzUPopHkZZbOLRl
+ A6RDWXtGH3wfMvKWAwEHDyUXceKoYXJ4NZvNLtZiJ842vOv97fv7iXEc5bVHdXDUIb47WlSZwjqz
+ 8S8cJ3LW7MvUEfr2zwsfjN3XjnXaCqI+c7ewzlQ2pMHck46C42S01xPdCezQq9kBDCag6uKXo8MB
+ OtdLMwrIrf2PJ06iLCnrqN3JwzpjcwL0Tqb+s5u/ae8nZ138j3wHyOhcylLrKGN5PnGX5iheUP9K
+ O265bVj4xgeq0px1Qc46bq8Hkdt0tplMN1cj+XoservebwAAAP//AwD3diqRLAUAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666e5fdbf61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:54 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1234'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_a556a970b6d53861ac2f929b04d3bca2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bNhB+919xIPZoG7bsJpbf0g4DUsxDMhTd2mYwzuRJupUiOf5IowX53wdK
+ juVkHTA9EMR9d999d7rj4wRAsBJbELLBKFunZ1e3qrh4v7peSf3pzeKX7u3tx8+7dw/t3+X9rhDT
+ HGEPf5KMz1FzaVunKbI1Ayw9YaTMurxcLcpFWa7WPdBaRTqH1S7O1nbWsuFZsSjWs8XlbLk5RjeW
+ JQWxhS8TAIDH/sw6jaIHsYXF9NnSUghYk9ienACEtzpbBIbAIaKJYjqC0ppIJks3SeszIFqr9xK1
+ HhMP3+PZfWwWar1/Xyj89PtvF8tu8+7jdRF+Xd+W6uefbs/yDdSd6wVVychTk87wk337KhmAMNj2
+ sbtu1/du+toBfZ1aMjHLFo93oiJSB5Rf78T2TnxoCPimsYZguYYbb4EDIASuDVcs0URIrvaoCL5x
+ bIAeJLksBTUcEmsFfyXUHDtAo8B5ajm10GIkz6jDHK4jVIQxecq8P3YGW5ZwHXT2Vxycxm4KCOvN
+ 7gZaZAMSW/I47QnRwNXyAt6yNSxBNuzmkCUfMEbyHWgMMfNWSWtQ2A0iG8L7DlKggSQ2dCTt5esA
+ bOAePdsUQHPdRDY1SGsU58rCHK50bGyqG3CeJSnACD+UZTkFjmCrinyAOk8w3KNOBJX14Ow38jmn
+ D0MrGhtt7dE1HZCJTQqctc7vxJN48YeeJt+7/3E2eJ6qFFAfJ/JofzqNuLa18/YQXk2sqNhwaPae
+ MPSTI0K0bsid8/QZRHqxHcJ527q4j/YrmUxYrJcDnxg3eEQ3xz0T0UbUo31VPEe94Nsrisj9+pw2
+ VqJsSI2h4+ZiUmzPgMlZ1f9W8z3uoXI29f+hHwGZJ5zU3nlSLF9WPLp5yg/cf7mdutwLFqELkdp9
+ xaYm7zz3z4uo3L48XG4OF0v5phCTp8k/AAAA//8DAM3nYtxsBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666f0cd0261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:55 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1340'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_29e10f41ba21eb3e38526d87f2a0fcf2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAAwAAAP//jFTvb9owEP3OX3Gy9hEqoEAJ34o2bZ1G1/2uNCZ0OJfkVsf2bGdthPjf
+ JwdKoOuk5UMU3bt793x5500HQHAqZiBkgUGWVvUuP6TDi+p2uvjq3nxKJ6+mNrnuZ7c/r9/W7z+K
+ bqww658kw2PVmTSlVRTY6B0sHWGgyDq4OO8n/SQ5HzdAaVJSsSy3oTcyvZI194b94ajXv+gNpvvq
+ wrAkL2bwvQMAsGneUadO6UHMoN99jJTkPeYkZockAOGMihGB3rMPqIPotqA0OpCO0nWl1BEQjFEr
+ iUq1jXfP5ui7HRYqtXo9fri9ntfjL9/mdL+eav1OTecV2qN+O+raNoKySsvDkI7wQ3z2pBmA0Fg2
+ tYt60cyu+zQBXV6VpEOULTZLkRGla5R3SzFbis8FAd8URhMMRnDjDLAH1EAPkmxsiQoqmztMCe45
+ FGAdlVyVsK5YpfCrQsWh7gLCy1pjyRKuvEKdQsreKmwQa+7JZZWC0XRxAxJLctiFmIQaLgcTmLPR
+ LEEWbM/gKoDJMnIeuLSOvOffBGsMgVwNijNqKn2otGadgy1MMK2OEu9ilAMg5NFksDMLZMbthEDl
+ I3kkaWpzh7aogXQoKs/og+9CSt5yIODgoeA8njpymAxeJElythRbcTLlbee57x9H5nGUVR7V3lX7
+ +PZgU2Vy68zaP3GdyFizL1aO0Dd/X/hg7K537NN0ENWJw4V1prRhFcwd6Ug4HA12fKLdwhadJHsw
+ mICqjZ8P9kt0yrdKKSA3K3DYOomyoLQtbbcPq5TNEdA5OvXfap7j3p2cdf4/9C0go3spXVlHKcvT
+ E7dpjuIl9a+0w5QbwcLXPlC5yljn5Kzj5ooQmV0l64vpejKQ46HobDt/AAAA//8DAPOy2+UwBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de666fa7b5161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:57 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1337'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_79f83c53ce2f9a5323895425a3f756bc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/bOAx+z68ghHtMgiTNmjpv6bZuHa5Ah9swDOshYGTaZidLOoluaxT97wfZ
+ aZz2dsD8IAj8yI8faVKPIwDFuVqD0hWKrr2ZbD7niyy421O3DEtdnJeX76/4/uv5+y9/2bdqnCLc
+ 7pa0PEdNtau9IWFne1gHQqHEOl+dzLJZlp2sOqB2OZkUVnqZLN2kZsuTxWyxnMxWk/nZPrpyrCmq
+ NfwYAQA8dmfSaXN6UGuYjZ8tNcWIJan1wQlABWeSRWGMHAWtqPEAameFbJJuG2OOAHHObDUaMyTu
+ v8ej+9AsNGb75+riwov+tvmwCPLRbD5d3C7l7ffsKF9P3fpOUNFYfWjSEX6wr18lA1AW6y72qr3q
+ ejd+7YChbGqykmSrxxtVEOU71D9v1PpGfakI+LpylmC+hOvggCMgRC4tF6zRCjS+DJgT3LNUQA+a
+ fJKCBnYNmxz+adCwtIA2Bx+o5qaGGoUCo4lTuBQoCKUJlHjftRZr1nAZTfLPOXqD7RgQlmdX11Aj
+ W9BYU8BxR4gWNvNTOGdnWYOu2E8hSd6hCIUWDEZJvEVjDOTY9iIrwrsWmkg9iVS0J+3kmwhs4Q4D
+ uyaC4bIStiVoZ3NOlcUpbIxUrikr8IE15YACf2RZNgYWcEVBIUKZJhju0DQEhQvg3T2FlDPEvhWV
+ E1cG9FULZKVqIiet0xv1pF78oafRr+5/Hw1eoKKJaPYTubc/HUbcuNIHt4uvJlYVbDlW20AYu8lR
+ UZzvc6c8XQbVvNgO5YOrvWzF/SSbCBfLec+nhg0e0LP9nilxgmawnyyeo17wbXMS5G59DhurUVeU
+ D6HD5mKTszsCRkdV/1fNr7j7ytmWv0M/ADpNOOVbHyhn/bLiwS1QeuD+z+3Q5U6wim0UqrcF25KC
+ D9w9L6rw22y3OtudzvWbhRo9jf4FAAD//wMAwC14D2wFAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66704aaab61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:18:59 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1600'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_431697241f72ef749eeb0fc7a2cc8bfa
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"feedback": {"description":
+ "Text for text", "title": "Feedback", "type": "string"}}, "required": ["feedback"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTU/bQBC951eMVj0mKAkhwbmBqFpaAqFqxaGpovF6bA9Z725314QI8d+rdUIc
+ KJXqg2XNm/fmw2/3qQMgOBNTELLEICureme32fBc36Ufb66uw/nwwd7nK3V3u765XKMW3cgw6T3J
+ 8MI6kqayigKbHSwdYaCoOpgc95N+khwnDVCZjFSkFTb0RqZXsebesD8c9fqT3uB0xy4NS/JiCj87
+ AABPzTv2qTN6FFPod18iFXmPBYnpPglAOKNiRKD37APqILotKI0OpGPrulbqAAjGqKVEpdrC2+fp
+ 4LtdFiq1vJ5fJPWX0/okjL9dTdaTzz8G+tPXYnZQbyu9sU1Dea3lfkkH+D4+fVMMQGisGu5sM2t2
+ 132bgK6oK9Ihti2eFiInylKUq4WYLsT3koDnpdEEgxHMnQH2gBroUZKNJVFBbQuHGcGaQwnWUcV1
+ BWnNKoPfNSoOmy4gXGw0Vizh0ivUGWTsrcIGGZ3O5lAha5BYkcMuxATUcDYYwzkbzRJkyfYILgOY
+ PCfngSvryHt+IEgxBHIbUJxTw/Sh1pp1AbY0wbQ9VLiKUQ6AUESDwdYokBsH1qzJQe2jeBRpuIVD
+ W26AdChrz+iD70JG3nIg4OCh5CJOHDVMDh+SJDlaiGfxasPPnfe+fx0Yx1Fee1Q7R+3iz3uLKlNY
+ Z1L/xnEiZ82+XDpC3/x54YOx29qxTlNB1K/cLawzlQ3LYFako+BwNNjqifYEtug42YHBBFRt/Hiw
+ O0Cv9ZYZBeTG/vsTJ1GWlLXU9uRhnbE5ADoHU//dzXva28lZF/8j3wIyOpeypXWUsXw9cZvmKF5Q
+ /0rbb7lpWPiND1Qtc9YFOeu4uR5EbpdJOjlNxwN5MhSd584fAAAA//8DAEpJbvcsBQAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de667102bba61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:00 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1154'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1b91c969e8797901d2398db263e3d4a4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSsW7bMBDd/RVXLllkw45tBPYSFF3sNhladEpRCDR5kuhSPII8JVED/3shWpUc
+ NAWycHjv3sN7d3yZAAijxRaEqiSr2tvpx6/6+pP7vsO7Au/vHx7uoj7+/iy/fZHtzbPIOgUdjqj4
+ r2qmqPYW2ZA70yqgZOxcFzfL+Wa+2azmiahJo+1kpefpcraechMONJ0vrte9siKjMIot/JgAALyk
+ t8voND6LLSSfhNQYoyxRbIchABHIdoiQMZrI0rHIRlKRY3Qp9g6tpQ+wv6rh2EQGCY8mcCMtDMoM
+ IsEeNLkrhko+IhSI1rgyZnBoOGkrDAhMUKH10FIDT4YrkK7lyrgyIQ5Rz2BHT6Ckg33vnygmLdvb
+ y4QBiybKbkOusbbHT0NlS6UPdIg9P+CFcSZWeUAZyXX1IpMXiT1NAH6m1TavtiV8oNpzzvQLXWe4
+ WJ3txHjMkVyue5KJpR3x1SZ7wy3XyNLYeHEaoaSqUI/K8Y6y0YYuiMlF53/DvOV97m1c+R77kVAK
+ PaPOfUBt1OvC41jA7qv/b2zYcQosYhsZ67wwrsTgg0mfLZ3yNPkDAAD//wMAjQRUYGsDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66718583b61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '791'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_d2e87aa5211e0c2e9604f5f4fcab1741
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU328bNwx+919BCHu0jTh20tpv6doNRRfM3YKhRT0YtETfsdNJmkTZOQT53wfd
+ uf6RdcDu4aDjR378yBP5NABQbNQClK5RdBPs6O6juX7/i9DPP7ZV+H1p7uJPr7++m7Z/PLwKRg1L
+ hN98JS3fosbaN8GSsHc9rCOhUGGdvJpeza/m89ltBzTekC1hVZDRdHwzkhw3fnQ1ub45RNaeNSW1
+ gC8DAICn7l00OkOPagFXw2+WhlLCitTi6ASgorfFojAlToJO1PAEau+EXJHtsrVngHhv1xqtPSXu
+ n6ez86lRaO36juVDPf388VM7aeef33Lzbhacvlme5eup29AJ2manjw06w4/2xYtkAMph08Xet/dd
+ 34YvHTBWuSEnRbZ6WikyLA/0KCu1WKll9CZrgd9ox7RfAC9r7wgmM1hGv1q51co91ASO9pcQRAqR
+ UqEFhMSV4y1rdAI5VBENgd9RhBBpxz4n6P5pGkMh22S2Bv7OaFla4AT0qCmU+tAOYc9Sl7iGcwMN
+ CkVGmyAnMiB19LmqfZYxfKAWtoSSIyVgp202tOgVj+Bt67BhDe+TRWfAcAoWW2AnVEUsqTq32ev7
+ JTTIDjQ2FLEz3k1u4Q17xxp0zaGnfIMiFFuwvKUimZtSfuIdDcFiEnYVIGyztWCwBb+FmnDXFtl9
+ 0X0CSG0SaiB0bacESbJzJTjUXnwpBDZe6kJiuaoFinzr96P+S3tnuMhP417XrzuKaEvbarYE9BjI
+ FVWAAj/M5/MhSM0JDO1YExiyvKPYd9xacgI7tJlg6yMEv6dYBMfUZe0UVRFD3QI5qXNiTJLGK/Ws
+ Lu7Y8+B75z/PRifSNie0h5k62J+PQ2p9FaLfpBczp7bsONXrSJi6u6+S+NDnLnm6DCpfzLcK0TdB
+ 1uL/IlcIr2eznk+d9s8JnUxuD6h4QXsCpreHHXJJuDYkyN0GOC4djbomcwo9LR/Mhv0ZMDgr+99y
+ vsfdl86u+j/0J0CXeSKzDpEM68uST26Ryn7+L7djmzvBqr+46y27imKIfNyQg+fBPwAAAP//AwC4
+ Q9OdIAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6671e597e61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1724'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_8dcef748af07b1c578cede12227922d8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU328bNwx+919BCHu0jThx0tlvKbqHdTCSthmGZh4MWqLvuOokVaLsXIP874Pu
+ XP/IOmD3cNDxIz9+5Il8HgAoNmoOStcougl2dPvBXL5vd+8fP9zW4dOa80ftPj3+MllPdl9RDUuE
+ X/9NWr5HjbVvgiVh73pYR0Khwjp5c3Uxu5jNpm86oPGGbAmrgoyuxtcjyXHtRxeTy+t9ZO1ZU1Jz
+ +HMAAPDcvYtGZ+hJzeFi+N3SUEpYkZofnABU9LZYFKbESdCJGh5B7Z2QK7JdtvYEEO/tSqO1x8T9
+ 83xyPjYKrV01+fPi3fXD58rfTX7Hx3j/ZfHH+pvcneTrqdvQCdpkpw8NOsEP9vmrZADKYdPFLtpF
+ 17fhaweMVW7ISZGtnpeKDMsDPclSzZfqPnqTtcBH2jLt5sD3tXcEkyncR79cuuXSPdQEjnbnEEQK
+ kVKhBYTEleMNa3QCOVQRDYHfUoQQacs+J+j+aRpDIVtntga+ZrQsLXACetIUSn1oh7BjqUtcw7mB
+ BoUio02QExmQOvpc1T7LGH6jFjaEkiMlYKdtNjTvFY/gXeuwYQ2/JovOgOEULLbATqiKWFJ1btOf
+ F/fQIDvQ2FDEzng7uYG37B1r0DWHnvItilBswfKGimRuSvmJtzQEi0nYVYCwydaCwRb8BmrCbVtk
+ 90X3CSC1SaiB0LWdEiTJzpXgUHvxpRBYe6kLieWqFijyrd+N+i/tneEiP417XXdbimhL22q2BPQU
+ yBVVgAI/zWazIUjNCQxtWRMYsryl2HfcWnICW7SZYOMjBL+jWATH1GXtFFURQ90COalzYkySxkv1
+ os7u2MvgR+e/TkYn0iYntPuZ2ttfDkNqfRWiX6dXM6c27DjVq0iYuruvkvjQ5y55ugwqn823CtE3
+ QVbiv5ArhJfTac+njvvniE4mN3tUvKA9Alc3+x1yTrgyJMjdBjgsHY26JnMMPS4fzIb9CTA4Kfvf
+ cn7E3ZfOrvo/9EdAl3kiswqRDOvzko9ukcp+/i+3Q5s7waq/uKsNu4piiHzYkIOXwT8AAAD//wMA
+ RruSqSAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de667454a2061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:09 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1629'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_309bbc2a600fd1c5498e77391f4dc88a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224bOQx991cQwj7aRpy46dpvzQYFFm3QNA3QvXhh0BI9w65GUiXK9jTIvy80
+ 4/qS7QI7DwMND3l4yBH5NABQbNQclK5RdBPs6M1Hc/n+c377x+7mdmp/+/z1/cMvfJvsl4rv3qph
+ ifCrL6Tle9RY+yZYEvauh3UkFCqsk9dXF7OL2Ww664DGG7IlrAoyuhq/GkmOKz+6mFy+2kfWnjUl
+ NYc/BwAAT927aHSGdmoOF8PvloZSworU/OAEoKK3xaIwJU6CTtTwCGrvhFyR7bK1J4B4b5carT0m
+ 7p+nk/OxUWjtkierm3ev738Pq6uHyebjo7n95r99Mh9O8vXUbegErbPThwad4Af7/EUyAOWw6WLv
+ 2ruub8OXDhir3JCTIls9LRQZlkfayULNF+o+epO1wANtmLZz4PvaO4LJFO6jXyzcYuEeawJH23MI
+ IoVIqdACQuLK8Zo1OoEcqoiGwG8oQoi0YZ8TdP80jaGQrTJbA18zWpYWOAHtNIVSH9ohbFnqEtdw
+ bqBBochoE+REBqSOPle1zzKGd9TCmlBypATstM2G5r3iEdy2DhvW8Guy6AwYTsFiC+yEqoglVec2
+ /fnuHhpkBxobitgZ30yu4Ya9Yw265tBT3qAIxRYsr6lI5qaUn3hDQ7CYhF0FCOtsLRhswa+hJty0
+ RXZfdJ8AUpuEGghd2ylBkuxcCQ61F18KgZWXupBYrmqBIt/67aj/0t4ZLvLTuNf1YUMRbWlbzZaA
+ doFcUQUo8NNsNhuC1JzA0IY1gSHLG4p9x60lJ7BBmwnWPkLwW4pFcExd1k5RFTHULZCTOifGJGm8
+ UM/q7I49D350/utkdCKtc0K7n6m9/fkwpNZXIfpVejFzas2OU72MhKm7+yqJD33ukqfLoPLZfKsQ
+ fRNkKf5vcoXwcjrt+dRx/xzRyeR6j4oXtEfg6nq/Q84Jl4YEudsAh6WjUddkjqHH5YPZsD8BBidl
+ /1vOj7j70tlV/4f+COgyT2SWIZJhfV7y0S1S2c//5XZocydY9Rd3uWZXUQyRDxty8Dz4BwAA//8D
+ AMsNxEUgBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66750db6661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1484'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_fa75c7fa8e8df31b1ac11dfcfeb177f1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224jNwx991cQQh9tw46TtPbbLhbFtru57CItenFh0BI9w1YjKRJlZxrk3wvN
+ eH1Jt0DnYaDhIQ8POSKfBwCKjVqA0jWKboIdvflkLm75bntz+/5q8uPHGX64m77/5bf14+RX+04N
+ S4Rf/0lavkSNtW+CJWHvelhHQqHCOv12NplP5vOraQc03pAtYVWQ0Wx8NZIc1340mV5c7SNrz5qS
+ WsDvAwCA5+5dNDpDT2oBk+EXS0MpYUVqcXACUNHbYlGYEidBJ2p4BLV3Qq7IdtnaE0C8tyuN1h4T
+ 98/zyfnYKLR29XD3ONv9rW/zT5/jx1s/u8h2+v3dzw8n+XrqNnSCNtnpQ4NO8IN98SoZgHLYdLE3
+ 7U3Xt+FrB4xVbshJka2el4oMywM9yVItluo+epO1wGfaMu0WwPe1dwTTS7iPfrl0y6V7qAkc7c4h
+ iBQipUILCIkrxxvW6ARyqCIaAr+lCCHSln1O0P3TNIZCts5sDTxmtCwtcAJ60hRKfWiHsGOpS1zD
+ uYEGhSKjTZATGZA6+lzVPssYPlALG0LJkRKw0zYbWvSKR/Cuddiwhh+SRWfAcAoWW2AnVEUsqTq3
+ y+9u7qFBdqCxoYid8c30Gt6yd6xB1xx6yrcoQrEFyxsqkrkp5Sfe0hAsJmFXAcImWwsGW/AbqAm3
+ bZHdF90ngNQmoQZC13ZKkCQ7V4JD7cWXQmDtpS4klqtaoMi3fjfqv7R3hov8NO513W0poi1tq9kS
+ 0FMgV1QBCnwzn8+HIDUnMLRlTWDI8pZi33FryQls0WaCjY8Q/I5iERxTl7VTVEUMdQvkpM6JMUka
+ L9WLOrtjL4Ovnf84GZ1Im5zQ7mdqb385DKn1VYh+nV7NnNqw41SvImHq7r5K4kOfu+TpMqh8Nt8q
+ RN8EWYn/i1whvLi87PnUcf8c0en0eo+KF7RHYHa93yHnhCtDgtxtgMPS0ahrMsfQ4/LBbNifAIOT
+ sv8t52vcfensqv9DfwR0mScyqxDJsD4v+egWqezn/3I7tLkTrPqLu9qwqyiGyIcNOXgZ/AMAAP//
+ AwBOcmWWIAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6675b0a8661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:13 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1923'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_063960247a5241594fd1a0d75a86f8ff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1274'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU34/bNgx+z19BCHtMguR+rcnbtd2Aorgtu3YosGUIGIm2uZMlTaKSMw73vxey
+ 0yR364D5wZD5kR8/0iKfRgCKjVqC0g2KboOd3P5mLlZ5lVYPi4fbffq0yn98od+z/undvKrUuET4
+ 7d+k5VvUVPs2WBL2boB1JBQqrPMfL2eL2WJxfdkDrTdkS1gdZHI5vZ5Ijls/mc0vrg+RjWdNSS3h
+ zxEAwFP/LhqdoUe1hNn4m6WllLAmtTw6AajobbEoTImToBM1PoHaOyFXZLts7Rkg3tuNRmtPiYfn
+ 6ex8ahRau+H7918e9x/fVbOH7YdPb36+j/46zvQvZ/kG6i70gqrs9LFBZ/jRvnyVDEA5bPvYu+6u
+ 79v4tQPGOrfkpMhWT2tFhuUzPcpaLddqFb3JWuCedkz7JfCq8Y5gfgWr6Ndrt167zw2Bo/1LCCKF
+ SKnQAkLi2nHFGp1ADnVEQ+B3FCFE2rHPCfp/mqZQyLaZrYF/MlqWDjgBPWoKpT60Y9izNCWu5dxC
+ i0KR0SbIiQxIE32uG59lCh+pg4pQcqQE7LTNhpaD4gm87xy2rOFDsugMGE7BYgfshOqIJVXvdvXm
+ bgUtsgONLUXsjbfzG3jL3rEG3XAYKN+iCMUOLFdUJHNbyk+8ozFYTMKuBoQqWwsGO/AVNIS7rsge
+ ih4SQOqSUAuhbzslSJKdK8Gh8eJLIbD10hQSy3UjUORbv58MX9o7w0V+mg66ft1RRFva1rAloMdA
+ rqgCFPhhsViMQRpOYGjHmsCQ5R3FoePWkhPYoc0ElY8Q/J5iERxTn7VXVEcMTQfkpMmJMUmartWz
+ enHHnkffO/91NjqRqpzQHmbqYH8+Dqn1dYh+m17NnKrYcWo2kTD1d18l8WHIXfL0GVR+Md8qRN8G
+ 2Yh/IFcIL66uBj512j8ndD6/OaDiBe0JuLw57JCXhBtDgtxvgOPS0agbMqfQ0/LBbNifAaOzsv8t
+ 53vcQ+ns6v9DfwJ0mScymxDJsH5Z8sktUtnP/+V2bHMvWA0Xd1OxqymGyMcNOXoefQUAAP//AwAE
+ 2TzUIAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de667687ec861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:15 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1664'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_74edc03d31186d7e9c5a8a92f9aa6b35
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWrcMBS8+ytedcllHZyNN93dS+gpGwiE5lJKCUYrPctqZD0hyaTbsP9eZDtr
+ L20hFx1m3gwzg94yAKYl2wITDY+idSb/8lUun5xrHteK3+1+i0e1fv3+oFT9rXvas0VS0P4niviu
+ uhTUOoNRkx1o4ZFHTK5Xn6+LTbHZrFY90ZJEk2TKxbykfFksy7xY58XNKGxICwxsCz8yAIC3/k0R
+ rcRfbAvF4h1pMQSukG1PRwDMk0kI4yHoELmNbDGRgmxE26feoTH0Ce4vWmjQI3ArwSOXB4gEDRp3
+ CTt6BcEt3MNgBgfqIJLkh9u5qce6Czx1sp0xI348pTSknKd9GPkTXmurQ1N55IFsShQiOdazxwzg
+ uV+jOyvInKfWxSrSC9pkeFUOdmyaf0bejGSkyM2EX48LnrtVEiPXJszWZIKLBuWknKbnndQ0I7JZ
+ 57/D/Mt76K2t+oj9RAiBLqKsnEepxXnh6cxj+pz/Oztt3Adm4RAitlWtrULvvB7+R+2qciXqVSmR
+ I8uO2R8AAAD//wMAXmXdKygDAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66774387e61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:15 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '533'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_87c6057c378741540500dd67b244de8f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW8bNxC961cMiBwlW5Jl1xIEAzHSomnhxm5s9FAVwoicXU7CJVl+yN4Y/u8F
+ d21JdlOge1hw+fjmvRnuzOMAQLASCxBSY5KNN6P3N2r6+bfN7d3m7PyK629/fP3yyd3Ym8vp9DaK
+ YWG4zReS6YV1JF3jDSV2todlIExUok5+OBnPx/P56VkHNE6RKbTap9HMjabj6Ww0Ph+Nz56J2rGk
+ KBbw5wAA4LF7F4tW0YNYwHj4stNQjFiTWOwOAYjgTNkRGCPHhDaJ4R6UziayxbXNxhwAyTmzlmjM
+ Xrh/Hg/W+zqhMetvP1WbO/8z/qJ+VPbOn1YfToz+OJEHen3o1neGqmzlrj4H+G5/8UYMQFhsOu5V
+ e9WVbfj2AIY6N2RTsS0eV4IUp1t6SCuxWImlnlxcB6eyTPA7bZnuF8DX2lmCyQyug1se68nFamVX
+ K7v0F7eawNL96yMQyAeKRQIQIteWK5ZoE2RfB1QEbksBfKAtuxyhu954BCXYJrNR8HdGw6kFjkAP
+ knzJFc0Q7jnpwms4N9BgosBoIuRICpIOLtfa5XQEv1ILFWHKgSKwlSYrWiyP/YvxbMqqVGNp+OJD
+ a7FhCR+jQatAcfQGW2CbqA5YtJfHhg8Zs/Ora2iQLUhsKOBb/P3kDC7ZWZYgNfsXeHncC/e1u8SU
+ KLRguKKSKTelapG3NASDMbGtAaHKxoDCFlwFmnDblmz7WvXaENuYqAHf3RpFiClbW8heu+RK/rBx
+ SZcghmudoCRp3P2o/5LOKi5JxqODCvmLT1sKaErRNRsCevBkiznABO/m8/kQkuYIirYsCRQZ3lLo
+ 78sYsgm2aDJB5QJ4d0+h+A6xE++M1QG9boFs0jkyxvSsL57Eqz/2afC99V8HjRioyhHNc4c+7z/t
+ Wt642ge3iW86WFRsOep1IIxdJ4mYnO+1i06nIPKraSF8cI1P6+S+ki0Bp7OTPp7YD7M9Ojl7Hjwi
+ uYRmD8zGL7RXAdeKEnI3T3YjTKLUpPbU/SjDrNgdAIODtP9t53ux+9TZ1v8n/B6QpSNJrX0gxfJ1
+ yvtjgcqw/69juzJ3hkX/D68rtjUFH7ibt6Ly69mprE5nipDE4GnwDwAAAP//AwAqurQXeAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66778bf3d61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5509'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_00dadfd08012330d9943633226b50d8b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiR17s7FhGNggDVCk2c0W6QWtC2NMjqTpUiSXF9tqkH8v
+ KCW+pFugehAoHp45Z4aaeeoBCFZiBkJWGGXt9ODDZ3Xx2/jj1/u/13RD4eNwvB6Nfr4b39zutr+K
+ fmbY9V8k4yvrTNraaYpsTQdLTxgpRx29Hw+nw+n0ctQCtVWkM610cTCxg4vhxWQwvBoML1+IlWVJ
+ Qczgjx4AwFP7zhaNop2YwbD/ulNTCFiSmO0PAQhvdd4RGAKHiCaK/gGU1kQy2bVJWh8B0Vq9kqj1
+ Qbh7no7Whzqh1qvx45eru6vff7l117fF++9p9OPw+pPd3h3pdaEb1xoqkpH7+hzh+/3ZGzEAYbBu
+ uffNfVu2/tsD6MtUk4nZtnhaClIcH2kXl2K2FPNqtHjwViUZ4SfaMG1nwA+VNQSjCTx4Oz+vRovl
+ 0iyXZu4WjxWBoe3pEfDkPIUsAQiBS8MFSzQRkis9KgK7IQ/O04ZtCtBebziDHGydWCv4mlBzbIAD
+ 0E6Sy7mi7sOWY5V5NacaaozkGXWAFEhBrLxNZWVTPIM7aqAgjMlTADZSJ0Wz+bl7NZ50XuVqzDUv
+ bhqDNUv4IWg0ChQHp7EBNpFKj1l7fq75mDG5un+AGtmAxJo8vsU/jC7hmq1hCbJi9wrPzzvhrnbX
+ GCP5BjQXlDPlOlct8Ib6oDFENiUgFElrUNiALaAi3DQ5265WnTaEJkSqwbW3RgFCTMZksqtstDl/
+ WNtY5SCayypCTlLb7aD7ktYozkmGs6MKucWnDXnUuegVawLaOTLZHGCE76bTaR9ixQEUbVgSKNK8
+ Id/dl9ZkImxQJ4LCenB2Sz779qEVb42VHl3VAJlYpcAY4ou+eBYnf+xz71vrP48a0VORAuqXDn3Z
+ f963vLal83Yd3nSwKNhwqFaeMLSdJEK0rtPOOq2CSCfTQjhvaxdX0X4hkwNeTMZdPHEYZgd0dPky
+ eES0EfUBmAxfaScBV4oicjtP9iNMoqxIHaiHUYZJsT0Cekdp/9vOt2J3qbMp/0/4AyBzR5JaOU+K
+ 5WnKh2Oe8rD/r2P7MreGRfcPrwo2JXnnuZ23onCryTtZvJsoQhK9594/AAAA//8DAFAVR5N4BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6679c1e6461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3013'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_bececc37716ba3219ce8a0909f29bcc4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUYU8jNxD9nl8xsvoxgQQCR6IICXpSRVt0AZ10qpoqcuzZ9Rxe27XHgRXiv1fe
+ hSTQq9T9sPL6+c17M96Z5wGAIC3mIJSRrJpgR1d3+kTeVKefvpzX364/t/nXP+7qu4bNze9X92JY
+ GH7zHRW/sY6Ub4JFJu96WEWUjCXq5NPpeDaezc6nHdB4jbbQ6sCjqR+djE+mo/HFaHz+SjSeFCYx
+ hz8HAADP3btYdBqfxBzGw7edBlOSNYr57hCAiN6WHSFTosTSsRjuQeUdoyuuXbb2AGDv7VpJa/fC
+ /fN8sN7XSVq7Tmdx/HD98wV/m/DG3C/dwy/L8D1sDvT60G3oDFXZqV19DvDd/vyDGIBwsum4t+1t
+ V7bhxwMy1rlBx8W2eF4J1MRf8YlXYr4SCzO5XEavs2K4xy3h4xxoabxDmExhGf3i2EwuVyu3WrlF
+ uPxqEBw+vj8CEUPEVCRAQqLaUUVKOoYc6ig1gt9ihBBxSz4n6K43HUEJtslkNfydpSVugRLgk8JQ
+ cpV2CI/EpvAayg00kjGStAlyQg1sos+18ZmP4DdsoULJOWICcspmjfPFcXgznm1ZlWosLF1+bp1s
+ SMFNstJp0JSClS2QY6yjLNqLY0uHjOnF7RIaSQ6UbDDKj/jV5ByuyTtSoAyFN3hx3Av3tbuWzBhb
+ sFRhyZSaUrVEWxyClYnJ1SChytaCli34CgzKbVuy7WvVa0NqE2MDobs1TJA4O1fIwXj2JX/YeDYl
+ iKXaMJQkrX8c9V/KO00lyXR0UKFw+WWLUdpSdEMWAZ8CumIOJMNPs9lsCGwogcYtKQSNlrYY+/uy
+ Fh3DVtqMUPkIwT9iLL5j6sQ7Y3WUwbSAjk1OJBO/6osX8e6PfRn8aP3XQSNGrHKS9rVDX/dfdi1v
+ fR2i36QPHSwqcpTMOqJMXSeJxD702kWnUxD53bQQIfom8Jr9A7oS8GR62scT+2G2Ryfnr4NHsGdp
+ 98B0/EZ7F3CtkSV182Q3wpRUBvWeuh9lMmvyB8DgIO1/2/lR7D51cvX/Cb8HVOlI1OsQUZN6n/L+
+ WMQy7P/r2K7MnWHR/8PrilyNMUTq5q2ownp6pqqzqUaJYvAy+AcAAP//AwBlwafgeAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de667b00c7661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:28 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3287'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_4400600975a25bae8c03cf03175e6e5b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/jNhB8969YEH20EztxfLFhGEhaFEiLNG4v7RWoC2NDrqTtUSSPH7bVIP+9
+ oOTYTnoFqgeB4nB2Zpfafe4BCFZiBkJWGGXt9ODmZ3VBvzaX+NNut5R/P9yFH5qLm8+/j69++3Yq
+ +plhn/4iGV9ZZ9LWTlNkazpYesJIOerow+VwOpxOJ9ctUFtFOtNKFwdjO7gYXowHw+vBcLInVpYl
+ BTGDP3oAAM/tO1s0inZiBsP+605NIWBJYnY4BCC81XlHYAgcIpoo+kdQWhPJZNcmaX0CRGv1WqLW
+ R+HueT5ZH+uEWq+3+PGufvhye+ufvvcPk/i4+/SpKD/iiV4XunGtoSIZeajPCX7Yn70TAxAG65Z7
+ 39y3Zeu/P4C+TDWZmG2L55UgxfGRdnElZisxr0aLpbcqyQi/0IZpOwNeVtYQjMaw9HZ+Xo0Wq5VZ
+ rczcLR4rAkPbt0fAk/MUsgQgBC4NFyzRREiu9KgI7IY8OE8btilAe73hDHKwp8RawZeEmmMDHIB2
+ klzOFXUfthyrzKs51VBjJM+oA6RACmLlbSorm+IZ/EgNFIQxeQrARuqkaDY/d6/Gk86rXI255sV3
+ jcGaJdwFjUaB4uA0NsAmUukxa8/PNZ8yxtf3S6iRDUisyeN7/GY0gVu2hiXIit0rPD/vhLva3WKM
+ 5BvQXFDOlOtctcAb6oPGENmUgFAkrUFhA7aAinDT5Gy7WnXaEJoQqQbX3hoFCDEZk8mustHm/OHJ
+ xioH0VxWEXKS2m4H3Ze0RnFOMpydVMgtHjbkUeeiV6wJaOfIZHOAEb6ZTqd9iBUHULRhSaBI84Z8
+ d19ak4mwQZ0ICuvB2S357NuHVrw1Vnp0VQNkYpUCY4h7ffEi3vyxL72vrf88aURPRQqo9x263385
+ tLy2pfP2KbzrYFGw4VCtPWFoO0mEaF2nnXVaBZHeTAvhvK1dXEf7mUwOeDG+7OKJ4zA7oqPJfvCI
+ aCPqIzAevtLeBFwrisjtPDmMMImyInWkHkcZJsX2BOidpP1vO1+L3aXOpvw/4Y+AzB1Jau08KZZv
+ Uz4e85SH/X8dO5S5NSy6f3hdsCnJO8/tvBWFW4+vZHE1VoQkei+9fwAAAP//AwBwgdMceAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de667c5ebf761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3561'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_71c47d6c5a3f72c50175f245efd3bedc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1267'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224bNxB911cMiD5KtiTLFwmCgaQugqJwKwd5aaJCGJOzy0m4JMOL5K3hfy+4
+ a0uymwLdhwWXh2fOmeHOPA4ABCuxACE1Jtl4M3p3p6Z8RudfL+PkQ/zl4fLs26q2d59vPvDNdzEs
+ DHf/lWR6YZ1I13hDiZ3tYRkIE5Wok8uz8Xw8n19OO6Bxikyh1T6NZm40HU9no/HVaHzxTNSOJUWx
+ gC8DAIDH7l0sWkUPYgHj4ctOQzFiTWKxPwQggjNlR2CMHBPaJIYHUDqbyBbXNhtzBCTnzEaiMQfh
+ /nk8Wh/qhMZszPRe/32Vf5/Rx2jOd+M79afEavrzkV4fuvWdoSpbua/PEb7fX7wRAxAWm4572952
+ ZRu+PYChzg3ZVGyLx7UgxekTPaS1WKzFUk+uV8GpLBN8pC3TbgG80s4STGawCm55qifX67Vdr+3S
+ X3/SBJZ2r49AIB8oFglAiFxbrliiTZB9HVARuC0F8IG27HKE7nrjCZRg95mNgu8ZDacWOAI9SPIl
+ VzRD2HHShddwbqDBRIHRRMiRFCQdXK61y+kEfqMWKsKUA0VgK01WtFie+hfj2ZRVqcbS8PVNa7Fh
+ Cb9Gg1aB4ugNtsA2UR2waC9PDR8zZle3K2iQLUhsKOBb/N3kAt6zsyxBavYv8PK0F+5r9x5TotCC
+ 4YpKptyUqkXe0hAMxsS2BoQqGwMKW3AVaMJtW7Lta9VrQ2xjogZ8d2sUIaZsbSF77ZIr+cO9S7oE
+ MVzrBCVJ43aj/ks6q7gkGU+OKuSv/9hSQFOKrtkQ0IMnW8wBJvhpPp8PIWmOoGjLkkCR4S2F/r6M
+ IZtgiyYTVC6AdzsKxXeInXhnrA7odQtkk86RMaZnffEkXv2xT4Mfrf86asRAVY5onjv0ef9p3/LG
+ 1T64+/img0XFlqPeBMLYdZKIyfleu+h0CiK/mhbCB9f4tEnuG9kScDo76+OJwzA7oJOL58Ejkkto
+ DsBs/EJ7FXCjKCF382Q/wiRKTepAPYwyzIrdETA4Svvfdn4Uu0+dbf1/wh8AWTqS1MYHUixfp3w4
+ FqgM+/86ti9zZ1j0//CmYltT8IG7eSsqv5mdy+p8pghJDJ4G/wAAAP//AwBu7UnteAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de667dd9e9661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:37 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5361'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_1a5bf518148d98b0f09bd5376cf679f9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwWobMRS871e86pKLN6y9bo19CQkpxCkp9NRDCIssvd1VqtUT0luoG/zvRWvH
+ uyEp9KLDzJthZtBLBiCMFhsQqpWsOm/z6x964bry2Zs/9vu2779e397e3T8Ui5uH9puYJQXtnlHx
+ q+pSUectsiF3pFVAyZhc56uyWBfr9Wo1EB1ptEnWeM6XOfdhR/miWCzzYpkX65O6JaMwig08ZgAA
+ L8ObcjqNv8UGitkr0mGMskGxOR8BiEA2IULGaCJLx2I2koocoxui36G19Am2Fx20GBCYoEXrYU/9
+ JfxsJYOSDragCWoKCQYmLfdXU7+AdR9l6uR6a0/44RzQUuMD7eKJP+O1cSa2VUAZyaUwkcmLgT1k
+ AE/DEP2bbsIH6jxXTL/QJcP58mgnxvkn5OpEMrG0I17OZx+4VRpZGhsnQwolVYt6VI6ry14bmhDZ
+ pPP7MB95H3sb1/yP/UgohZ5RVz6gNupt4fEsYPqc/zo7bzwEFnEfGbuqNq7B4IM5fo3aV5/1rizK
+ L2Vdi+yQ/QUAAP//AwAy+nVaKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66800ca5a61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '609'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_f98b9eafdf270fb97644d5a85e13b979
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/bNhB+9684EH20E9tx69gwAiQbVmxN2qRo85B5MGjyJN1KkRx5dKwF+e8D
+ pcR2sgyYHgSKH+++7z7q7qEHIEiLOQhVSVa1N4PzGz128jaMp9vxzfbHzXlz99t0cvPT58vLX76L
+ fo5w6z9R8XPUkXK1N8jkbAergJIxZx1NT4az4Ww2PW2B2mk0Oaz0PJgMOIW1G4yH48lgOBkMZ0/R
+ lSOFUczh9x4AwEP7zjqtxq2Yw7D/vFNjjLJEMd8dAhDBmbwjZIwUWVoW/T2onGW0WbpNxhwA7JxZ
+ KWnMnrh7Hg7We7OkMavbj5cf+WJ4dTcd3d7Vf99+/zI9v/10MTvg61I3vhVUJKt2Jh3gu/35KzIA
+ YWXdxl41V613/dcHZChTjZazbPGwFKiJv+GWl2K+FItqdHYdnE6K4StuCO/nQNeVswijCVwHtziu
+ RmfLpV0u7cKffasQLN6/PAIBfcCYKUBCpNJSQUpahuTLIDWC22AAH3BDLkVo7zgeQU62TmQ0/JWk
+ IW6AIuBWoc+1StOHe+Iqx9WUaqglYyBpIqSIGrgKLpWVS3wEn7CBAiWngBHIKpM0zhfH/ll4MnmV
+ 3VgYOvu5sbImBb9GI60GTdEb2QBZxjLIzL04NnQYMTm9uoZakgUlawzyNX4++gAX5CwpUBX5Z3hx
+ 3BF33l1IZgwNGCowV0p1di3SBvtgZGSyJUgokjGgZQOugArlpsnVdl513BCbyFiDb28NI0RO1uZg
+ Xzl2uX5YO65yEkNlxZCLNO5+0H0pZzXlIuPRgUP+7MsGgzTZ9IoMAm492iwOJMO72WzWB64ogsYN
+ KQSNhjYYuvsyBi3DRpqEULgA3t1jyLpDbMlbYWWQvmoALVcpkoz8xC8exYs/9rH31vqPg0YMWKQo
+ zVOHPu0/7lreuNIHt46vOlgUZClWq4Aytp0kIjvfcWeelkGkF9NC+OBqzyt2P9DmhOPJpMsn9hNt
+ j47enz6h7FiaPTAZjvtvJFxpZEntPNmNMCVVhXofuh9lMmlyB0DvoOx/y3krd1c62fL/pN8DKnck
+ 6pUPqEm9LHl/LGCe+P91bGdzK1h0//CqIFti8IHaeSsKv3qv1yfDkw8nRSF6j71/AAAA//8DAN6K
+ lfJ9BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66805896161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5121'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_f70f3b1dfe69c4fde95268a36bc26501
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/jNhB8969YEPdoJ7bj3NmGEeDSokBxTesGB1xwdWGsyZW0PYrk8UOOGuS/
+ F5QS20lToHoQKA53Z3ao3YcBgGAlliBkhVHWTo8+/q6mzTxMv+Gn782XVP5ytwjX1/z35Tp8KMQw
+ R9jdXyTjc9SZtLXTFNmaHpaeMFLOOvlwMV6MF4v5ZQfUVpHOYaWLo9koJr+zo+l4OhuNZ6Px4im6
+ siwpiCX8MQAAeOjeWadRdC+WMB4+79QUApYklodDAMJbnXcEhsAhoolieASlNZFMlm6S1idAtFZv
+ JWp9JO6fh5P10SzUevvT7Xx+7efmy+xi8gPK5m7/9e42/OpO+PrUresEFcnIg0kn+GF/+YoMQBis
+ u9ib9qbzbvj6APoy1WRili0eNoIUx890HzdiuRGranK19lYlGeGWGqb9EnhdWUMwmcHa29V5Nbna
+ bMxmY1bu6nNFYGj/8gh4cp5CpgCEwKXhgiWaCMmVHhWBbciD89SwTQG6Ow5nkJPtEmsF3xNqji1w
+ ALqX5HKtqIew51jluJpTDTVG8ow6QAqkIFbeprKyKZ7BJ2qhIIzJUwA2UidFy9W5exaedF5lN1aa
+ r35sDdYs4eeg0ShQHJzGFthEKj1m7tW55tOI2fxmDTWyAYk1eXyNf5y8h2u2hiXIit0zvDrviXvv
+ rjFG8i1oLihXynV2LXBDQ9AYIpsSEIqkNShswRZQETZtrrb3queG0IZINbju1ihAiMmYHOwqG22u
+ H3Y2VjmJ5rKKkIvUdj/qv6Q1inOR4ezEIXf1W0MedTa9Yk1A945MFgcY4d1isRhCrDiAooYlgSLN
+ Dfn+vrQmE6FBnQgK68HZPfms24eOvBNWenRVC2RilQJjiE/84lG8+GMfB2+t/zxpRE9FCqifOvRp
+ //HQ8tqWzttdeNXBomDDodp6wtB1kgjRup4783QMIr2YFsJ5W7u4jfYbmZxwOpv1+cRxoh3RyeX8
+ CY02oj4Cs/F0+EbCraKI3M2TwwiTKCtSx9DjKMOk2J4Ag5Oy/y3nrdx96WzK/5P+CMjckaS2zpNi
+ +bLk4zFPeeL/17GDzZ1g0f/D24JNSd557uatKNz2Uu0uxhfvL4pCDB4H/wAAAP//AwDSybRLfQYA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de668269c0561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5138'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_ccd4be7be6bc23bf6c148daeee235bdb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUYW8iNxD9zq8YWf0ICRAuORBCStRGak/RcddTW12pkLFnd6fntX32GFhF+e+V
+ dwmQNJW6H1ZeP897b8Y789gDEKTFDISqJKvam8HtJ301HG7s2Hz97ebj591k+tOy9N/v7766P34R
+ /RzhNn+j4ueoC+Vqb5DJ2Q5WASVjZh3dXA2nw+l0OmyB2mk0Oaz0PJgMOIWNG4yH48lgOBkMp4fo
+ ypHCKGbwZw8A4LF9Z59W417MoOVqd2qMUZYoZsdDACI4k3eEjJEiS8uifwKVs4w2W7fJmDOAnTNr
+ JY05CXfP49n6VCxpzNpuMdyO958++Ov7ze/Gunvz7Wbz6/hMr6NufGuoSFYdi3SGH/dnr8QAhJV1
+ G/vQPLS1678+IEOZarScbYvHlUBN/AX3vBKzlZhXo8UyOJ0Uw2fcEu5mQMvKWYTRBJbBzS+r0WK1
+ squVnfvFlwrB4u7lEQjoA8YsARIilZYKUtIyJF8GqRHcFgP4gFtyKUJ7x/ECMtkmkdHwPUlD3ABF
+ wL1Cn3OVpg874irH1ZRqqCVjIGkipIgauAoulZVLfAEfsIECJaeAEcgqkzTO5pf+2XgyeZWrMTe0
+ +LGxsiYFP0cjrQZN0RvZAFnGMsisPb80dB4xef+whFqSBSVrDPI1fju6hjtylhSoivwzPL/shLva
+ 3UlmDA0YKjBnSnWuWqQt9sHIyGRLkFAkY0DLBlwBFcptk7PtatVpQ2wiYw2+vTWMEDlZm4N95djl
+ /GHjuMokhsqKISdp3G7QfSlnNeUk48VZhfzi4xaDNLnoFRkE3Hu02RxIhh+m02kfuKIIGrekEDQa
+ 2mLo7ssYtAxbaRJC4QJ4t8OQfYfYirfGyiB91QBarlIkGfmgL57Eiz/2qffW+q+zRgxYpCjNoUMP
+ +0/Hljeu9MFt4qsOFgVZitU6oIxtJ4nIznfaWadVEOnFtBA+uNrzmt03tJlwPJl0fOI00U7o6N37
+ A8qOpTkBk+G4/wbhWiNLaufJcYQpqSrUp9DTKJNJkzsDemdp/9vOW9xd6mTL/0N/AlTuSNRrH1CT
+ epny6VjAPPH/69ixzK1h0f3D64JsicEHauetKPz6nd5cDa+ur4pC9J56/wAAAP//AwB7G/WCfQYA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66852792461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:19:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5450'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_42db81013b662ba389dd4641d0b9c8b4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiZ14k9gwAmTbhy4WabMXbLCoC2NMjsTZUCSXFydCkH8v
+ KDm2k6ZA9SBQPJw5Zw418zgAEKzEHITUmGTjzejqkzo9O/lydxvO9afzW+mumzjDbz+vbpvb72JY
+ Itz6B8n0HHUkXeMNJXa2h2UgTFSyTs5Px7PxbDY764DGKTIlrPZpNB2lHNZudDI+mY7G09F4to3W
+ jiVFMYe/BgAAj9276LSKHsQcxsPnnYZixJrEfHcIQARnyo7AGDkmtEkM96B0NpEt0m025gBIzpmV
+ RGP2xP3zeLDem4XGrKL/cPX9Wk/w1y/q47cfsz8mmS7u/O8HfH3q1neCqmzlzqQDfLc/f0UGICw2
+ Xex1e915N3x9AEOdG7KpyBaPS0GK01d6SEsxX4qFnlzeBKeyTPCZNkz3c+Ab7SzBZAo3wS2O9eRy
+ ubTLpV34y6+awNL9yyMQyAeKhQIQIteWK5ZoE2RfB1QEbkMBfKANuxyhu+N4BCXZOrNR8DOj4dQC
+ R6AHSb7UimYI95x0iWs4N9BgosBoIuRICpIOLtfa5XQEH6mFijDlQBHYSpMVzRfH/ll4NmVV3FgY
+ vvyttdiwhA/RoFWgOHqDLbBNVAcs3Itjw4cR04vrG2iQLUhsKOBr/GpyBu/ZWZYgNftneHHcE/fe
+ vceUKLRguKJSKTfFtcgbGoLBmNjWgFBlY0BhC64CTbhpS7W9Vz03xDYmasB3t0YRYsrWlmCvXXKl
+ fli7pEsSw7VOUIo07n7Uf0lnFZci49GBQ/7yzw0FNMV0zYaAHjzZIg4wwS+z2WwISXMERRuWBIoM
+ byj092UM2QQbNJmgcgG8u6dQdIfYkXfC6oBet0A26RwZY9ryiyfx4o99Gry1/vugEQNVOaLZduh2
+ /2nX8sbVPrh1fNXBomLLUa8CYew6ScTkfM9deDoGkV9MC+GDa3xaJXdHtiQ8mU77fGI/0fbo5N3F
+ Fk0uodkD0/HJ8I2EK0UJuZsnuxEmUWpS+9D9KMOs2B0Ag4Oy/y3nrdx96Wzr/5N+D8jSkaRWPpBi
+ +bLk/bFAZeL/17GdzZ1g0f/Dq4ptTcEH7uatqPzqnVqfjk/PTqtKDJ4G/wAAAP//AwCMXCQcfQYA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de668758f9661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:02 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5667'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_0c76b127a97c057f54604be1795b7883
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUYWsjNxD97l8xiH60EzvxJbExgUtLS7kLTY9AOc7FyNLsanJaSZFGdjYh/71o
+ N7Gd9ArdD4tWTzPvzdPOPA0ABGkxB6GMZNUEO/r4pz79+devt7E5N7/dPT6Gyd1fV19Se//54uZC
+ DEuEX9+h4teoI+WbYJHJux5WESVjyTo5Px3PJuPx+KQDGq/RlrA68Gg64hzXfnQyPpmOxtPRePYS
+ bTwpTGIO3wYAAE/du+h0Gh/EHMbD150GU5I1ivnuEICI3pYdIVOixNKxGO5B5R2jK9JdtvYAYO/t
+ Sklr98T983Sw3pslrV1dfL7e3p9vJ7O7x9vafP+k8nm8uj2bHvD1qdvQCaqyUzuTDvDd/vwdGYBw
+ sulir9vrzrvh+wMy1rlBx0W2eFoK1MS3+MBLMV+KhZlc3kSvs2L4ghvC7RzoxniHMJnCTfSLYzO5
+ XC7dcukW4fLWIDjcvj0CEUPEVChAQqLaUUVKOoYc6ig1gt9ghBBxQz4n6O44HUFJts5kNdxnaYlb
+ oAT4oDCUWqUdwpbYlLiGcgONZIwkbYKcUAOb6HNtfOYj+IQtVCg5R0xATtmscb44Dq/Csy2r4sbC
+ 0uUvrZMNKfg9Wek0aErByhbIMdZRFu7FsaXDiOnF9Q00khwo2WCU7/GPkzO4Iu9IgTIUXuHFcU/c
+ e3clmTG2YKnCUik1xbVEGxyClYnJ1SChytaCli34CgzKTVuq7b3quSG1ibGB0N0aJkicnSvBwXj2
+ pX5YezYliaXaMJQird+O+i/lnaZSZDo6cChc/rHBKG0x3ZBFwIeArogDyfDTbDYbAhtKoHFDCkGj
+ pQ3G/r6sRcewkTYjVD5C8FuMRXdMHXknrI4ymBbQscmJZOIXfvEs3vyxz4Mfrf8+aMSIVU7SvnTo
+ y/7zruWtr0P06/Sug0VFjpJZRZSp6ySR2Ieeu/B0DCK/mRYiRN8EXrH/jq4kPJlO+3xiP9H26OTD
+ xQvKnqXdA9N+ur1PuNLIkrp5shthSiqDeh+6H2Uya/IHwOCg7H/L+VHuvnRy9f9JvwdU6UjUqxBR
+ k3pb8v5YxDLx/+vYzuZOsOj/4VVFrsYYInXzVlRh9UGvT8enZ6dVJQbPg38AAAD//wMA+fjkWH0G
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6689a6ade61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:07 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5389'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_318b5f01cb27076fde96db9e160e0e4a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwYrbMBC9+yumuuQSFzsJZDeXpT1tKG3prVCKkaWxrVTWCGmcbFjy70VONk5o
+ C70Iad68x5s3es0AhNFiA0J1klXvbf7hm15uvxy8bcMntX9sPj9/3718rA9f13W5F/PEoHqHit9Y
+ 7xX13iIbcmdYBZSMSbVcL4vHsiiKhxHoSaNNtNZzvqK8N87ki2Kxyot1Xj5c2B0ZhVFs4EcGAPA6
+ nsmn0/giNlDM3yo9xihbFJtrE4AIZFNFyBhNZOlYzCdQkWN0o/XtrIfdEBkk+EBtkP0cIsEWNLkZ
+ Qyf3CA2iNa6Nc6gHhsToMCBIpyGg1Edggg6thyMN7+CZDiBrGjg9n9JzFtM1gJZHaMm49unWTMBm
+ iDIF4gZrL/XTdTpLrQ9Uxwt+rTfGmdhVAWUklyaJTF6M6CkD+DmmONwFI3yg3nPF9AtdEixXZzkx
+ 7W4Cl5eEBRNLO9VXb6Q7tUojS2PjzRaEkqpDPTGnlclBG7oBspuZ/zTzN+3z3Ma1/yM/AUqhZ9SV
+ D6iNuh94aguYfva/2q4Zj4ZFPEbGvmqMazH4YM7/qvFVUctCl4tVU4rslP0GAAD//wMAN2YR2WUD
+ AAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de668bd2c3d61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:08 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '878'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_2f4276d7d4e343f9b68cd40ffc62f870
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUW2/rNgx+z68ghD0mQZKml+StxTCsNyznBgxYhoCRaJubLKkSndan6H8fZPck
+ adcB84Mh8yM/fqRFPg8AFBu1BKUrFF0HO7r8ZE5uTm++387xbvtr+bmYJyPfIt9++zS7U8Mc4bd/
+ kZYfUWPt62BJ2Lse1pFQKLNOz08mi+lkMll0QO0N2RxWBhnN/ahmx6PZZDYfTc5H04vX6MqzpqSW
+ 8McAAOC5e2edztCTWsJk+MNSU0pYklrunQBU9DZbFKbESdCJGh5A7Z2Qy9JdY+0RIN7bjUZrD4n7
+ 5/nofGgWWrsJ6fqXB3t3d3556qyvH758X91c26vfj/L11G3oBBWN0/smHeF7+/JdMgDlsO5i79v7
+ rnfD9w4Yy6YmJ1m2el4rMixf6UnWarlWq+hNowU+047pcQm8qrwjmM5hFf167dZr97UicPT4FoJI
+ IVLKtICQuHRcsEYn0IQyoiHwO4oQIu3YNwm6/5rGkMm2DVsDDw1alhY4AT1pCrk+tEN4ZKlyXM1N
+ DTUKRUaboElkQKrom7LyjYzhllooCKWJlICdto2hZa94BD+3DmvWcJ0sOgOGU7DYAjuhMmJO1bnN
+ L+5XUCM70FhTxM54OT2DK/aONeiKQ095hSIUW7BcUJbMdS4/8Y6GYDEJuxIQisZaMNiCL6Ai3LVZ
+ dl90nwBSm4RqCF3bKUGSxrkcHCovPhcCWy9VJrFcVgJZvvWPo/5Le2c4y0/jXtdvO4poc9sqtgT0
+ FMhlVYACPy0WiyFIxQkM7VgTGLK8o9h33FpyAju0DUHhIwT/SDELjqnL2ikqI4aqBXJSNYkxSRqv
+ 1Yt6c8deBh+d/zwanUhFk9C+ztSr/WU/pNaXIfptejdzqmDHqdpEwtTdfZXEhz53ztNlUM2b+VYh
+ +jrIRvzf5DLhbH7S86nDDjqg0+nFKype0B6Ak7Pp8APCjSFB7jbAfulo1BWZQ+hh+WBj2B8Bg6Oy
+ /y3nI+6+dHbl/6E/ADrPE5lNiGRYvy354BYp7+j/ctu3uROs+ou7KdiVFEPkbkOqImwW2/OL7dlU
+ n87U4GXwDwAAAP//AwChSa+qLwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de668c4184561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2743'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_1fc53a2bc9420808cd621855c2425a78
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/bNhB+9684EHu0Dcuxk9hv7TpsTZc1KfKyzYNBkyfpWopkyaMdNch/Lyil
+ lpNlwPQgUPfdfffdiXcPIwBBWqxBqFqyaryZvLnVZ9eNvTs/XO2W/rdvf8Rf7m7Dr1/f82F5JcY5
+ wu0+o+IfUVPlGm+QydkeVgElY2YtLs5mq2I2K+Yd0DiNJodVnicLN2nI0mQ+my8ms4tJcfkUXTtS
+ GMUa/h4BADx076zTarwXa5iNf1gajFFWKNZHJwARnMkWIWOkyNKyGA+gcpbRZuk2GXMCsHNmq6Qx
+ Q+L+eTg5D82Sxmz//Pzt49WX33H5c71M0X2S7vZdXfz14SRfT936TlCZrDo26QQ/2tcvkgEIK5su
+ 9rq97no3fukgQ5UatJxli4eNQE18h/e8EeuNuAlOJ8XwCfeEhzXQTe0sQrGAm+A2G7vZ2LsaweLh
+ OQQBfcCYaUFCpMpSSUpahuSrIDWC22MAH3BPLkXo/mucQibbJTIaviZpiFugCHiv0Of6pBnDgbjO
+ cQ2lBhrJGEiaCCmiBq6DS1XtEk/hA7ZQouQUMAJZZZLGda94Au9aKxtS8D4aaTVoit7IFsgyVkHm
+ VJ3b4vL6BhpJFpRsMMjO+KY4h7fkLClQNfme8q1kxtCCoRKzZGpy+ZH2OAYjI5OtQEKZjAEtW3Al
+ 1Cj3bZbdF90ngNhGxgZ813aMEDlZm4N97djlQmDnuM4khqqaIcs37jDpv5SzmrL8OO11fdxjkCa3
+ rSaDgPcebVYFkuGn1Wo1Bq4pgsY9KQSNhvYY+o4bg5ZhL01CKF0A7w4YsuAQu6ydoipIX7eAlusU
+ SUaO0414FM/u2OPotfM/J6MTsExRmqeZerI/HofUuMoHt4svZk6UZCnW24AydndfRHa+z53zdBlE
+ ejbfwgfXeN6y+4I2E84XZz2fGHbQgBbF5RPKjqUZgLPzYvwK4VYjS+o2wHHpKKlq1EPosHxk0uRO
+ gNFJ2f+W8xp3XzrZ6v/QD4DK84R66wNqUs9LHtwC5h39X27HNneCRX9xtyXZCoMP1G1IUfrtandx
+ uTsv1HIuRo+j7wAAAP//AwBLy8hELwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de668d69bf161c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:14 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2655'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_930c12e1fc306c2b94fbef0d995f351f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW/rNgx9z68ghD0mQdzktk3eenE3bHfrmlt0H8AyBIpE22xlSZOopF7R/z7I
+ 7o3TrgPmB0PmIQ8PaZFPIwBBWqxAqFqyaryZXH3R83V59fn+0/189923/Mv57bwudtcz/9uX38U4
+ R7jdPSr+GjVVrvEGmZztYRVQMmbW4mI+WxazWfGhAxqn0eSwyvNk4SYNWZqczc4Wk9nFpLh8ia4d
+ KYxiBX+MAACeunfWaTU+ihXMxl8tDcYoKxSroxOACM5ki5AxUmRpWYwHUDnLaLN0m4w5Adg5s1XS
+ mCFx/zydnIdmSWO21fez4u7m4abYVT/Pq/Sr+unz/cPt3/VJvp669Z2gMll1bNIJfrSv3iQDEFY2
+ Xex1e931bvzWQYYqNWg5yxZPG4Ga+A4feSNWG7EOTifFcIt7wsMKaF07i1AsYB3cZmM3G3tXI1g8
+ vIYgoA8YMy1IiFRZKklJy5B8FaRGcHsM4APuyaUI3X+NU8hku0RGw19JGuIWKAI+KvS5PmnGcCCu
+ c1xDqYFGMgaSJkKKqIHr4FJVu8RT+BFbKFFyChiBrDJJ46pXPIFPrZUNKfghGmk1aIreyBbIMlZB
+ 5lSd2+Lyeg2NJAtKNhhkZ7wqzuEjOUsKVE2+p/womTG0YKjELJmaXH6kPY7ByMhkK5BQJmNAyxZc
+ CTXKfZtl90X3CSC2kbEB37UdI0RO1uZgXzt2uRDYOa4ziaGqZsjyjTtM+i/lrKYsP057XTd7DNLk
+ ttVkEPDRo82qQDJ8s1wux8A1RdC4J4Wg0dAeQ99xY9Ay7KVJCKUL4N0BQxYcYpe1U1QF6esW0HKd
+ IsnIcboRz+LVHXsevXf+82R0ApYpSvMyUy/25+OQGlf54HbxzcyJkizFehtQxu7ui8jO97lzni6D
+ SK/mW/jgGs9bdg9oM+HZYt7ziWEHDWhRXL6g7FiaAZifF+N3CLcaWVK3AY5LR0lVox5Ch+UjkyZ3
+ AoxOyv63nPe4+9LJVv+HfgBUnifUWx9Qk3pd8uAWMO/o/3I7trkTLPqLuy3JVhh8oG5DitJvl7uL
+ y915oT6cidHz6B8AAAD//wMAeIm8Hi8GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de668e83f3661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:17 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2417'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_de43e0d36ada3b90e8e4c74a2892046f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW/jNgx+z68ghD0mRZzkmiZvve2GdbvickWvuGEZAkWibW6ypElUEq/ofx9k
+ 95K064D5wZD5kR8/0iIfBwCCtFiCULVk1Xgzuv6sp3fx8JEeFl9vJsWHTzc//fwQJvduuvr+Wgxz
+ hNv+gYq/RV0o13iDTM72sAooGTNrMZ+OF8V4XMw7oHEaTQ6rPI9mbtSQpdFkPJmNxvNRcfUcXTtS
+ GMUSfhsAADx276zTajyIJYyH3ywNxigrFMujE4AIzmSLkDFSZGlZDE+gcpbRZuk2GXMGsHNmo6Qx
+ p8T983h2PjVLGrOZ3n45qI8/zvXhw5bvwq9/v5tW41A9nOXrqVvfCSqTVccmneFH+/JVMgBhZdPF
+ 3ra3Xe+Grx1kqFKDlrNs8bgWqInv8cBrsVyLVXA6KYY73BHul0Cr2lmEYgar4NZru17b+xrB4v4l
+ BAF9wJhpQUKkylJJSlqG5KsgNYLbYQAfcEcuRej+a7yATLZNZDT8laQhboEi4EGhz/VJM4Q9cZ3j
+ GkoNNJIxkDQRUkQNXAeXqtolvoBfsIUSJaeAEcgqkzQue8Uj+KG1siEFN9FIq0FT9Ea2QJaxCjKn
+ 6txmV7craCRZULLBIDvjdXEJ78lZUqBq8j3le8mMoQVDJWbJ1OTyI+1wCEZGJluBhDIZA1q24Eqo
+ Ue7aLLsvuk8AsY2MDfiu7RghcrI2B/vascuFwNZxnUkMVTVDlm/cftR/KWc1Zfnxotf1aYdBmty2
+ mgwCHjzarAokw3eLxWIIXFMEjTtSCBoN7TD0HTcGLcNOmoRQugDe7TFkwSF2WTtFVZC+bgEt1ymS
+ jBwv1uJJvLhjT4O3zr+fjU7AMkVpnmfq2f50HFLjKh/cNr6aOVGSpVhvAsrY3X0R2fk+d87TZRDp
+ xXwLH1zjecPuT7SZcDKb9nzitINOaFFcPaPsWJoTML0shm8QbjSypG4DHJeOkqpGfQo9LR+ZNLkz
+ YHBW9r/lvMXdl062+j/0J0DleUK98QE1qZcln9wC5h39X27HNneCRX9xNyXZCoMP1G1IUfrNYju/
+ 2l4W6t1EDJ4G/wAAAP//AwCdE38qLwYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de668f8381561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:19 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2268'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_47e0dca05125bd5a00f0e0817ed21be2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"editText": {"description":
+ "Text for text", "title": "Edittext", "type": "string"}}, "required": ["editText"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1272'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jNhC9+1cMiB5tw19NbN+SzR6abBrvYtse6sKgyZE0XYrkkkM7QpD/vqCU
+ Wk6aAtVBoObNvHkz4szTAECQFmsQqpKsam9GV5/1/LfNXcEfrr/Pf6fr+YOPm+mnD5fVx8OdGOYI
+ t/8bFf8TNVau9gaZnO1gFVAyZtbp5Xyymk4ms0kL1E6jyWGl59HCjWqyNJpNZovR5HI0Xb5EV44U
+ RrGGPwcAAE/tO+u0Gh/FGlqu1lJjjLJEsT45AYjgTLYIGSNFlpbFsAeVs4w2S7fJmDOAnTM7JY3p
+ E3fP09m5b5Y0Znd3+4nlxz/08pY/f3vAL+aob26vbn49y9dRN74VVCSrTk06w0/29ZtkAMLKuo29
+ b+7b3g3fOshQphotZ9niaStQE3/FR96K9VZsgtNJMXzBA+FxDbSpnEWYLmAT3HZrt1v7tUKweHwN
+ QUAfMGZakBCptFSQkpYh+TJIjeAOGMAHPJBLEdr/GseQyfaJjIbvSRriBigCPir0uT5phnAkrnJc
+ TamGWjIGkiZCiqiBq+BSWbnEY7jDBgqUnAJGIKtM0rjuFI/gprGyJgW/RCOtBk3RG9kAWcYyyJyq
+ dVss7zdQS7KgZI1Btsar6QVck7OkQFXkO8pryYyhAUMFZslU5/IjHXAIRkYmW4KEIhkDWjbgCqhQ
+ Hposuyu6SwCxiYw1+LbtGCFysjYH+8qxy4XA3nGVSQyVFUOWb9xx1H0pZzVl+XHc6Xo4YJAmt60i
+ g4CPHm1WBZLhp9VqNQSuKILGAykEjYYOGLqOG4OW4SBNQihcAO+OGLLgENusraIySF81gJarFElG
+ juOteBav7tjz4L3zX2ejE7BIUZqXmXqxP5+G1LjSB7ePb2ZOFGQpVruAMrZ3X0R2vsud87QZRHo1
+ 38IHV3vesfuGNhPOFvOOT/Q7qEen0+ULyo6l6YH5xXT4DuFOI0tqN8Bp6SipKtR9aL98ZNLkzoDB
+ Wdn/lvMed1c62fL/0PeAyvOEeucDalKvS+7dAuYd/V9upza3gkV3cXcF2RKDD9RuSFH43Wp/udxf
+ TNXPMzF4HvwAAAD//wMAMZCyai8GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66908aa6861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:21 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1815'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_030d2f83d57e0779b5a9c9e5b5beeb66
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-3.5-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '145'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSy27bMBC8+yu2vOQiG5IfKOJLkUOAuOilBdoeikKgyZVEh+IS5CquEfjfC9GK
+ 5CAp0AsPMzuDmV0+zwCE0WILQjWSVevt/O6rXv28v+N7Wzxuvq2/H/eHqt5VX5T+/KMSWa+g/QEV
+ v6gWilpvkQ25C60CSsbetfi4ym+LPF8uE9GSRtvLas/z1WIz5y7saZ4Xy82gbMgojGILv2YAAM/p
+ 7TM6jX/EFvLsBWkxRlmj2I5DACKQ7REhYzSRpWORTaQix+hS7Ae0lj7A7qaFQxcZJDyZwJ20MCoz
+ iAQ70ORuGBr5hFAhWuPqmMG+46RtMCAwQYPWw4k6OBpuQLoTN8bVCXGIegEPdAQlHewG/0QxaXn6
+ dJ0wYNVF2W/IddYO+HmsbKn2gfZx4Ee8Ms7EpgwoI7m+XmTyIrHnGcDvtNru1baED9R6Lpke0fWG
+ xfpiJ6ZjTuRqM5BMLO2Er2+zd9xKjSyNjVenEUqqBvWknO4oO23oiphddX4b5j3vS2/j6v+xnwil
+ 0DPq0gfURr0uPI0F7L/6v8bGHafAIp4iY1tWxtUYfDDps6VTnmd/AQAA//8DACq995NrAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669153d8f61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '614'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_0f5f23a2a73ef8d356d4ed87cfab81c9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU34/bNgx+z19BCH1MgiSXXpe8tbuh7bq0aTG0PTRFwEi0zU2WVP1Izjvc/z7I
+ TuPk1gH1gyHzIz9+pEXeDwAEK7EEISuMsnZ69Py9uvqEzeqP29vPn9eutKuXHz6G9x8/7fSb38Uw
+ R9jdXyTj96ixtLXTFNmaDpaeMFJmnT67miymk8ls1gK1VaRzWOni6Gr8dBST39nRZDp7eoysLEsK
+ YglfBgAA9+07azSK7sQSJsPvlppCwJLE8uQEILzV2SIwBA4RTRTDHpTWRDJZtklanwHRWr2VqHWf
+ uHvuz859o1Dr7fxbPXn12+HX9TN1O3/5z9v0djGbFTc3Z/k66sa1gopk5KlBZ/jJvnyUDEAYrNvY
+ VbNq+zZ87IC+TDWZmGWL+41wngrWmtRGLDdi7a1KMsIH2jMdlsDryhqC6RzW3m42ZrMxf1YEhg6X
+ EHhynkLmBYTApeGCJZoIyZUeFYHdkwfnac82BWh/ahhDJtsl1gq+JdQcG+AAdCfJ5QJRD+HAscpx
+ NacaaozkGXWAFEhBrLxNZWVTHMMbaqAgjMlTADZSJ0XLTvEIbhqDNUt4HTQaBYqD09gAm0ilx5yq
+ dZv/slpDjWxAYk0eW+Pz6TW8YGtYgqzYdZQvMEbyDWguKEvmOpcfeE9D0BgimxIQiqQ1KGzAFlAR
+ 7pssuyu6SwChCZFqcG3bKUCIyZgc7CobbS4EdjZWmURzWUXI8rU9jLovaY3iLD+MO13v9uRR57ZV
+ rAnozpHJqgAjPFksFkOIFQdQtGdJoEjznnzXca3JRNijTgSF9eDsgXwW7EObtVVUenRVA2RilQJj
+ iGG8EQ/i4pI9DH50/no2O56KFFAfh+pofzhNqbal83YXHg2dKNhwqLaeMLSXX4RoXZc752kziHQx
+ 4MJ5W7u4jfZvMplwNp93fKJfQD06nV4f0Wgj6h64uj4ukUvCraKI3K6A09aRKCtSfWi/fTAptmfA
+ 4Kzs/8r5EXdXOpvyZ+h7QOZ5IrV1nhTLy5J7N095Qf+f26nNrWDRXdxtwaYk7zyfVuTgYfAvAAAA
+ //8DACHegUQhBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6691a7d7261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2087'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_67722bc7dbe9a07b21a3baff0cf9f623
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8bNwx+968ghD3ahp04aeO3dm2xocvmpF1bbB4MWuLdcdNJmkQ5uQT574Pu
+ UtvJOmD3cNDxIz9+5Im8HwEoNmoJSjcoug128urKnP42P7u+k9Of3tofvuDqw8eZ/f7Fh0WqF2pc
+ Ivz2T9LyNWqqfRssCXs3wDoSChXW+YvT2cV8Njs564HWG7IlrA4yOZ2eTSTHrZ/M5idnj5GNZ01J
+ LeH3EQDAff8uGp2hW7WE2firpaWUsCa13DsBqOhtsShMiZOgEzU+gNo7IVdku2ztESDe241Gaw+J
+ h+f+6HxoFFq7eXd99Xb1Zvvrl1t6j7eGrz79nN7dfb47yjdQd6EXVGWn9w06wvf25bNkAMph28de
+ dpd938bPHTDWuSUnRba6X6sQqWJryazVcq1W0ZusBa5px3SzBF413hHMF7CKfr1267X72BA4unkK
+ QaQQKRVeQEhcO65YoxPIoY5oCPyOIoRIO/Y5Qf9T0xQK2TazNfB3RsvSASegW02hFIh2DDcsTYlr
+ ObfQolBktAlyIgPSRJ/rxmeZwnvqoCKUHCkBO22zoeWgeAJvOocta/gxWXQGDKdgsQN2QnXEkqp3
+ W7y8XEGL7EBjSxF746v5Obxm71iDbjgMlK9RhGIHlisqkrkt5Sfe0RgsJmFXA0KVrQWDHfgKGsJd
+ V2QPRQ8JIHVJqIXQt50SJMnOleDQePGlENh6aQqJ5boRKPKtv5kMX9o7w0V+mg66ftlRRFva1rAl
+ oNtArqgCFPju4uJiDNJwAkM71gSGLO8oDh23lpzADm0mqHyE4G8oFsEx9Vl7RXXE0HRATpqcGJOk
+ 6Vo9qCeX7GH0rfMfR7MTqcoJ7eNQPdof9lNqfR2i36ZnQ6cqdpyaTSRM/eVXSXwYcpc8fQaVnwy4
+ CtG3QTbi/yJXCE8Wi4FPHRbQAZ3Pzx9R8YL2AJyePy6Rp4QbQ4Lcr4D91tGoGzKH0MP2wWzYHwGj
+ o7L/Ledb3EPp7Or/Q38AdJknMpsQybB+WvLBLVJZ0P/ltm9zL1gNF3dTsasphsj7FTl6GP0DAAD/
+ /wMAg6njGSEGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66928ab3761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:27 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1926'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_180157aff07c1f29fd110bdc6638a281
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU224jNwx991cQQh9tw46zydpvm17QbZE2u+0CRevCoCXOiFmNpOgyziTIvxea
+ 8fqSboHOw0DDQx4eckQ+jwAEK7ECITUm2XgzefdBLba/3fx5/+mHXD/+uPwUmvb9525ud4uHhRiX
+ CLe9J5m+RE2la7yhxM4OsAyEiQrr/HoxW85ns4vrHmicIlPCap8mi+mbScph6yaz+cWbfaR2LCmK
+ Ffw1AgB47t9Fo1X0KFYwG3+xNBQj1iRWBycAEZwpFoExckxokxgfQelsIltk22zMCZCcMxuJxhwT
+ D8/zyfnYKDRms/jp7bcfb2bbP570ff7lYXHd8sXD909PJ/kG6s73gqps5aFBJ/jBvnqVDEBYbPrY
+ 2+6279v4tQOGOjdkU5EtntfCB6rYGFJrsVqLu+BUlgk+Usu0WwHfaWcJ5pdwF9x6bddr+7smsLQ7
+ hyCQDxQLLyBEri1XLNEmyL4OqAhcSwF8oJZdjtD/1DiFQrbNbBQ8ZDScOuAI9CjJlwLRjGHHSZe4
+ hnMDDSYKjCZCjqQg6eByrV1OU/iZOqgIUw4Uga00WdFqUDyB7zqLDUt4Hw1aBYqjN9gB20R1wJKq
+ d7t8e3sHDbIFiQ0F7I3v5ldww86yBKnZD5Q3mBKFDgxXVCRzU8qP3NIYDMbEtgaEKhsDCjtwFWjC
+ tiuyh6KHBBC7mKgB37edIsSUrS3BXrvkSiGwdUkXEsO1TlDkG7ebDF/SWcVFfpwOun5tKaApbdNs
+ COjRky2qABN8s1wux5A0R1DUsiRQZLilMHTcGLIJWjSZoHIBvNtRKIJD7LP2iuqAXndANukcGWOK
+ 07V4EWeX7GX0tfPfJ7MTqMoRzX6o9vaXw5QaV/vgtvHV0ImKLUe9CYSxv/wiJueH3CVPn0HkswEX
+ PrjGp01yn8kWwovLy4FPHBfQEZ3Pr/ZocgnNEVhc7ZfIOeFGUULuV8Bh60iUmtQx9Lh9MCt2J8Do
+ pOx/y/ka91A62/r/0B8BWeaJ1MYHUizPSz66BSoL+r/cDm3uBYvh4m4qtjUFH/iwIkcvo38AAAD/
+ /wMAkQdorCEGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669361f5561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:29 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2010'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_98ce136fc28ec07b4b71288b51fee140
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqbNdWve7nDY3bAVa4cB2+EyBIxE27zJkipRTt2i//sg
+ O5cf3Q2YHwyZH/nxIy3yeQKg2KgVKN2g6DbY2dt7c2U+PlxWT92f8rT8tLj/+IE7qyX77Rc1LRF+
+ +4W0fI2aa98GS8LejbCOhEKFdfH91cXN4uLi8mYAWm/IlrA6yOxq/mYmOW797GJx+WYf2XjWlNQK
+ Pk8AAJ6Hd9HoDD2qFVxMv1paSglrUquDE4CK3haLwpQ4CTpR0yOovRNyRbbL1p4A4r3daLT2mHh8
+ nk/Ox0ahtRtyP17j8o8P9/dP+LB8/8vOpz7W9+kk30jdh0FQlZ0+NOgEP9hXr5IBKIftEHvb3w59
+ m752wFjnlpwU2ep5rUKkiq0ls1artbqL3mQt8Bt1TLsV8F3jHcFiCXfRr9duvXa/NwSOducQRAqR
+ UuEFhMS144o1OoEc6oiGwHcUIUTq2OcEw09Ncyhk28zWwENGy9IDJ6BHTaEUiHYKO5amxLWcW2hR
+ KDLaBDmRAWmiz3Xjs8zhZ+qhIpQcKQE7bbOh1ah4Bu97hy1r+ClZdAYMp2CxB3ZCdcSSanBb/nB7
+ By2yA40tRRyMbxfX8I69Yw264TBSvkMRij1YrqhI5raUn7ijKVhMwq4GhCpbCwZ78BU0hF1fZI9F
+ jwkg9UmohTC0nRIkyc6V4NB48aUQ2HppConluhEo8q3fzcYv7Z3hIj/NR12/dhTRlrY1bAnoMZAr
+ qgAFvru5uZmCNJzAUMeawJDljuLYcWvJCXRoM0HlIwS/o1gExzRkHRTVEUPTAzlpcmJMkuZr9aLO
+ LtnL5Fvnv05mJ1KVE9r9UO3tL4cptb4O0W/Tq6FTFTtOzSYSpuHyqyQ+jLlLniGDymcDrkL0bZCN
+ +L/JFcLL5XLkU8cFdEQXi+s9Kl7QHoGr6/0SOSfcGBLkYQUcto5G3ZA5hh63D2bD/gSYnJT9bznf
+ 4h5LZ1f/H/ojoMs8kdmESIb1eclHt0hlQf+X26HNg2A1XtxNxa6mGCIfVuTkZfIPAAAA//8DANgg
+ dB8hBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669441bc761c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:31 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1627'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_d19c9bd5a8825b94ecac6fd00c9c5bb7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-3.5-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1277'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgqZpe23errhDcet16/3qMCxDwEi0zU2WVIlKahT93wfZ
+ vSTtbsD8YMj8yI8faZGPIwDFRi1A6QZFt8FO3n4y8+rb/dmXj3R1+fG+fXN+TV36+vv59bf312pc
+ Ivz6L9LyPWqqfRssCXs3wDoSChXW2Zv50cXs6Gg+64HWG7IlrA4ymU9PJ5Lj2k+OZsenz5GNZ01J
+ LeCPEQDAY/8uGp2hB7WAo/F3S0spYU1qsXMCUNHbYlGYEidBJ2q8B7V3Qq7IdtnaA0C8tyuN1u4T
+ D8/jwXnfKLR29fCLfLj/+eru6vj8Lt292+b3p7+df775cpBvoO5CL6jKTu8adIDv7ItXyQCUw7aP
+ velu+r6NXztgrHNLTops9bhUIVLF1pJZqsVS3UZvshb4TBum7QL4tvGOYHYCt9Evl265dF8bAkfb
+ lxBECpFS4QWExLXjijU6gRzqiIbAbyhCiLRhnxP0PzVNoZCtM1sD9xktSwecgB40hVIg2jFsWZoS
+ 13JuoUWhyGgT5EQGpIk+143PMoVr6qAilBwpATtts6HFoHgC7zqHLWv4kCw6A4ZTsNgBO6E6YknV
+ u52c39xCi+xAY0sRe+Pb2RlcsnesQTccBspLFKHYgeWKimRuS/mJNzQGi0nY1YBQZWvBYAe+goZw
+ 0xXZQ9FDAkhdEmoh9G2nBEmycyU4NF58KQTWXppCYrluBIp867eT4Ut7Z7jIT9NB168bimhL2xq2
+ BPQQyBVVgAI/XVxcjEEaTmBow5rAkOUNxaHj1pIT2KDNBJWPEPyWYhEcU5+1V1RHDE0H5KTJiTFJ
+ mi7Vk3pxyZ5GPzr/eTA7kaqc0D4P1bP9aTel1tch+nV6NXSqYsepWUXC1F9+lcSHIXfJ02dQ+cWA
+ qxB9G2Ql/m9yhfD45GTgU/sFtEdns7NnVLyg3QPzs+cl8pJwZUiQ+xWw2zoadUNmH7rfPpgN+wNg
+ dFD2v+X8iHsonV39f+j3gC7zRGYVIhnWL0veu0UqC/q/3HZt7gWr4eKuKnY1xRB5tyJHT6N/AAAA
+ //8DANANqnEhBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6694f9c2861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:33 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1693'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '50000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '49995903'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 4ms
+ x-request-id:
+ - req_de3bdf6df0110afc7478fef3e75c5ac1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '138'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSTW/UMBS851c8fOGyqbKbdCl7QQiB2gOocECICkWu/ZJ4cfyM/SK6qva/V/no
+ JitA4uLDzJvRzMiPCYAwWuxAqEayar1N337WefOw/vBN3d6+N+2vj/vtl0/vwvc9qq8bseoVdL9H
+ xc+qC0Wtt8iG3EirgJKxd12/yrPX6yzL84FoSaPtZbXntKB0k22KNLtKs+0kbMgojGIHdwkAwOPw
+ 9hGdxgexg2z1jLQYo6xR7E5HACKQ7REhYzSRpWOxmklFjtENqa/RWnoBNy9baDAgSKchoNQHYIIG
+ rb+Aa/oNSjq4gdEMDtQBk5aHN0vTgFUXZd/JddZO+PGU0lLtA93HiT/hlXEmNmVAGcn1iSKTFwN7
+ TAB+DGt0ZwWFD9R6Lpl+ousN18VoJ+b5F+R2IplY2hnPpwXP3UqNLI2NizWFkqpBPSvn6WWnDS2I
+ ZNH5zzB/8x57G1f/j/1MKIWeUZc+oDbqvPB8FrD/nP86O208BBbxEBnbsjKuxuCDGf9H5cviUlWX
+ hUaJIjkmTwAAAP//AwCjRCBeKAMAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6695d9ff661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:34 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '414'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995994'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_8d270980ac6fa33228c3bc6d487138fa
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiRW7bmIYAbLbohtkk812tyjQujAm5EiaLkVyebGjBvn3
+ gpJvSbdA9SBQPDxzzgw18zQAEKzEHISsMcrG6dHVRzXhnz+8u/vkiuL6U/v5Hf+EMzeT11/en4th
+ ZtiHv0jGHetE2sZpimxND0tPGClHLX6YjC+K8Xgy7YDGKtKZVrk4mtrR2fhsOhqfj8azLbG2LCmI
+ OfwxAAB46t7ZolH0KOYwHu52GgoBKxLz/SEA4a3OOwJD4BDRRDE8gNKaSCa7NknrIyBaq1cStT4I
+ 98/T0fpQJ9R6lfTs5i5+/Pr26u+bzXt1fbf+9e1vdze/H+n1oVvXGSqTkfv6HOH7/fkrMQBhsOm4
+ t+1tV7bh6wPoq9SQidm2eFoK56lkrUktxXwpFnVxee+tSjLCL7Rm2syB72trCIop3Hu7OK2Ly+XS
+ LJdm4S4/1wSGNi+PgCfnKWQNQAhcGS5ZoomQXOVREdg1eXCe1mxTgO5+wwnkYA+JtYKvCTXHFjgA
+ PUpyOVnUQ9hwrDOv4dRAg5E8ow6QAimItbepqm2KJ3BDLZSEMXkKwEbqpGi+OHU740nnVS7HQvPl
+ j63BhiVcB41GgeLgNLbAJlLlMWsvTjUfM6bnt/fQIBuQ2JDH1/hVMYM3bA1LkDW7Hbw47YX72r3B
+ GMm3oLmknCk3uWqB1zQEjSGyqQChTFqDwhZsCTXhus3Z9rXqtSG0IVIDrrs1ChBiMiaTXW2jzfnD
+ g411DqK5qiPkJLXdjPovaY3inGQ4OaqQu/ywJo86F71mTUCPjkw2Bxjhu4uLiyHEmgMoWrMkUKR5
+ Tb6/L63JRFijTgSl9eDshnz27UMn3hmrPLq6BTKxToExxK2+eBYvftnnwbfWfx51oqcyBdTbFt3u
+ P+97XtvKefsQXrWwKNlwqFeeMHStJEK0rtfOOp2CSC/GhXDeNi6uov1CJgc8m076eOIwzQ5oMdtO
+ HhFtRH0ApuMd7UXAlaKI3A2U/QyTKGtSB+phlmFSbI+AwVHa/7bzrdh96myq/xP+AMjckaRWzpNi
+ +TLlwzFPedr/17F9mTvDov+HVyWbirzz3A1cUbpV8f2FOp9MCynF4HnwDwAAAP//AwBM/FjueQYA
+ AA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669613cc861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:36 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2157'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_f80d44a90857a297fe105bd95e68bb6f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiR07FxuGgQ3aLdLWW+/lZVEXBkOOxGkokuVFjjbIvxeU
+ fE23QPUgUDw8c84MNfPSA2Ak2QyYUDyKyunBu49y/ETL+7vm5styqsJP1x/r91+/fX7/4ck+sH5m
+ 2Me/UMQ960LYymmMZE0HC488Yo46uh0Pp6PhcHzTApWVqDOtdHEwsYOr4dVkMLwbDG92RGVJYGAz
+ +KMHAPDSvrNFI/GZzWDY3+9UGAIvkc0OhwCYtzrvMB4ChchNZP0jKKyJaLJrk7Q+AaK1eiO41kfh
+ 7nk5WR/rxLXeBDQP32pz9XW7vL7++ZfVrRiS+O1Wn+h1oRvXGiqSEYf6nOCH/dkbMQBmeNVyl82y
+ LVv/7QHuy1Shidk2e1kz57EgrVGu2WzN5mq0WHkrk4jwCWvC7QxopaxBGE1g5e38Uo0W67VZr83c
+ Lb4oBIPb8yPg0XkMWQM4BCoNFSS4iZBc6blEsDV6cB5rsilAe7/hAnKwx0Rawt+Ja4oNUAB8Fuhy
+ slz3YUtRZV5FqYKKR/TEdYAUUEJU3qZS2RQv4FdsoEAek8cAZIROEmfzS7c3nnRe5XLMNS1+bAyv
+ SMBD0NxIkBSc5g2QiVh6nrXnl5pOGZO75QoqTgYEr9Dzt/i70Q3ckzUkQChye3h+2Ql3tbvnMaJv
+ QFOBOVOqctUC1dgHzUMkUwKHImkNkjdgC1DI6yZn29Wq04bQhIgVuPbWMECIyZhMdspGm/OHRxtV
+ DqKpVBFyktpuB92XsEZSTjJcnFTILX6v0XOdi65II+CzQ5PNAY/ww3Q67UNUFEBiTQJBoqYafXdf
+ WqOJUHOdEArrwdkt+uzbh1a8NVZ67lQDaKJKgXiIO332ys5+2dfe99Z/nnSixyIFrnctutt/PfS8
+ tqXz9jG8aWFWkKGgNh55aFuJhWhdp511WgWWzsYFc95WLm6ifUKTA15Nxl08dpxmR3R0s5s8LNrI
+ 9RGYDPe0s4AbiZFTO1AOM0xwoVAeqcdZxpMkewL0TtL+t53vxe5SJ1P+n/BHQOSORLlxHiWJ85SP
+ xzzmaf9fxw5lbg2z7h/eFGRK9M5TO3BZ4Taj66m8G09GQrDea+8fAAAA//8DAEEzvD95BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6696febb061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:38 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1934'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_f370bd91fda174faac349b7b9c03cd28
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiZ242dgwDCTYolik6abtohfUhTEhR+LsUiTDix01yL8X
+ lBJf0i1QPQgUD8+cM0PNPA0ABCsxByE1Jtl4M7r6SZ03f3yvZtVDM/31I+sfL7+b/PDbzcPf+LsT
+ w8Jw959JplfWiXSNN5TY2R6WgTBRiTp5dz6eTcbj88sOaJwiU2i1T6OpG52Nz6aj8eVofPFC1I4l
+ RTGHPwcAAE/du1i0ih7FHMbD152GYsSaxHx3CEAEZ8qOwBg5JrRJDPegdDaRLa5tNuYASM6ZtURj
+ 9sL983Sw3tcJjVnfNhfbT3ZGN9cPd5/dl6v8rv7l/YfrfKDXh259Z6jKVu7qc4Dv9udvxACExabj
+ 3ra3XdmGbw9gqHNDNhXb4mklfKCKjSG1EvOVWOjJ8i44lWWCn2nDtJ0D32lnCSZTuAtucaony9XK
+ rlZ24ZefNIGl7fERCOQDxaIBCJFryxVLtAmyrwMqArehAD7Qhl2O0N1vPIES7D6zUfCQ0XBqgSPQ
+ oyRfkkUzhC0nXXgN5wYaTBQYTYQcSUHSweVau5xO4IZaqAhTDhSBrTRZ0Xxx6l+NZ1NWpRwLw8v3
+ rcWGJXyIBq0CxdEbbIFtojpg0V6cGj5kTC9v76BBtiCxoYBv8avJBVyzsyxBavav8OK0F+5rd40p
+ UWjBcEUlU25K1SJvaAgGY2JbA0KVjQGFLbgKNOGmLdn2teq1IbYxUQO+uzWKEFO2tpC9dsmV/OHe
+ JV2CGK51gpKkcdtR/yWdVVySjCcHFfLLjxsKaErRNRsCevRkiznABN/MZrMhJM0RFG1YEigyvKHQ
+ 35cxZBNs0GSCygXwbkuh+A6xE++M1QG9boFs0jkyxvSiL57F0S/7PPja+q+DTgxU5YjmpUVf9p93
+ PW9c7YO7j29aWFRsOep1IIxdK4mYnO+1i06nIPLRuBA+uMandXJfyJaAZ9PzPp7YT7M9Orl4mTwi
+ uYRmD0zHr7SjgGtFCbkbKLsZJlFqUnvqfpZhVuwOgMFB2v+287XYfeps6/8Tfg/I0pGk1j6QYnmc
+ 8v5YoDLt/+vYrsydYdH/w+uKbU3BB+4Grqj8evLtTF2eTydSisHz4B8AAAD//wMAr7bfP3kGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6697d198461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:40 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1935'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_f7c686e4b76faef0ed27c7a5ca3cfd7f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU247bNhB991cMiDzau77tdm0YBhwELYLGjZPmoUBcGFxyJE5CkQwv8gqL/feC
+ kq/bFKgeBIqHZ86ZoWaeewCMJJsDE4pHUTk9WH2SE3f34/O6+O3p7t1spT/Nmj//2Ey+vR//umb9
+ zLCP31DEI+tG2MppjGRNBwuPPGKOOvplMpyNhsPpqAUqK1FnWuniYGoH4+F4Ohg+DIb3B6KyJDCw
+ OXztAQA8t+9s0Uh8YnMY9o87FYbAS2Tz0yEA5q3OO4yHQCFyE1n/DAprIprs2iStL4Bord4JrvVZ
+ uHueL9bnOnGtd0W04sPkbjV2mw/my0rW3x+qv2aqvtDrQjeuNVQkI071ucBP+/NXYgDM8Krlrpt1
+ W7b+6wPcl6lCE7Nt9rxlzmNBWqPcsvmWLdRoufFWJhHhM9aE+znQRlmDMJrCxtvFrRott1uz3ZqF
+ W35RCAb310fAo/MYsgZwCFQaKkhwEyG50nOJYGv04DzWZFOA9n7DDeRgj4m0hB+Ja4oNUAB8Euhy
+ slz3YU9RZV5FqYKKR/TEdYAUUEJU3qZS2RRv4HdsoEAek8cAZIROEueLW3c0nnRe5XIsNC3fNYZX
+ JOB90NxIkBSc5g2QiVh6nrUXt5ouGdOH9QYqTgYEr9Dz1/hqdA9vyRoSIBS5I7y47YS72r3lMaJv
+ QFOBOVOqctUC1dgHzUMkUwKHImkNkjdgC1DI6yZn29Wq04bQhIgVuPbWMECIyZhMdspGm/OHRxtV
+ DqKpVBFyktruB92XsEZSTjLcXFTILT/W6LnORVekEfDJocnmgEd4M5vN+hAVBZBYk0CQqKlG392X
+ 1mgi1FwnhMJ6cHaPPvv2oRVvjZWeO9UAmqhSIB7iQZ+9sKtf9qX3s/XfF53osUiB60OLHvZfTj2v
+ bem8fQyvWpgVZCionUce2lZiIVrXaWedVoGlq3HBnLeVi7tov6PJAcfTSRePnafZGR3dHyYPizZy
+ fQamwyPtKuBOYuTUDpTTDBNcKJRn6nmW8STJXgC9i7T/bednsbvUyZT/J/wZELkjUe6cR0niOuXz
+ MY952v/XsVOZW8Os+4d3BZkSvfPUDlxWuN3obiYfJtOREKz30vsHAAD//wMAsCuvK3kGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6698b192f61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:43 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1977'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_5913ffd0100111a171bd8a941c4068bd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1270'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jNhB991cMiD7aiR1708QwDHixL8E2u96i2HZRF8aEHEmzoUiWFzlCkH8v
+ KMW3dAtUDwLFwzNnZqg5zwMAwUrMQcgKo6ydHq2+qKkvmo9X03L3VH6/Sc0jf/32bj27u/4FxTAz
+ 7MN3knHPupC2dpoiW9PD0hNGylEnP0/Ht5PxeDbtgNoq0plWujia2dHV+Go2Gt+MxtevxMqypCDm
+ 8OcAAOC5e+cUjaInMYfxcL9TUwhYkpgfDgEIb3XeERgCh4gmiuERlNZEMjlrk7Q+AaK1eitR66Nw
+ /zyfrI99Qq23d59+N1+/Te8/N6tHu/qgVq79lMzNHyd6fejWdQkVychDf07ww/78jRiAMFh33Pv2
+ vmvb8O0B9GWqycSctnjeCOepYK1JbcR8IxbVZLn2ViUZ4VdqmHZz4HVlDcFkBmtvF5fVZLnZmM3G
+ LNzyt4rA0O78CHhynkLWAITApeGCJZoIyZUeFYFtyIPz1LBNAbr7DReQgz0k1gr+Tqg5tsAB6EmS
+ y8WiHsKOY5V5NacaaozkGXWAFEhBrLxNZWVTvICP1EJBGJOnAGykTormi0u3TzzpvMrtWGhefmgN
+ 1izhLmg0ChQHp7EFNpFKj1l7can5lDG7uV9DjWxAYk0e3+KryTW8Z2tYgqzY7eHFZS/c9+49xki+
+ Bc0F5Uq5zl0L3NAQNIbIpgSEImkNCluwBVSETZur7XvVa0NoQ6QaXHdrFCDEZEwmu8pGm+uHBxur
+ HERzWUXIRWq7G/Vf0hrFuchwcdIht/zckEedm16xJqAnRyYnBxjhp9vb2yHEigMoalgSKNLckO/v
+ S2syERrUiaCwHpzdkc95+9CJd4mVHl3VAplYpcAY4qu+eBFnv+zL4Efrv04m0VORAurXEX3dfznM
+ vLal8/YhvBlhUbDhUG09YehGSYRoXa+ddToFkc7sQjhvaxe30T6SyQGveovqfGLvZkd0cv3qPCLa
+ iPoIzMZ72lnAraKI3BnKwcMkyorUkXr0MkyK7QkwOCn73+n8KHZfOpvy/4Q/AjJPJKmt86RYnpd8
+ POYpu/1/HTu0uUtY9P/wtmBTkneeO8MVhdtO3t2qm+lsIqUYvAz+AQAA//8DAIfm7Xd5BgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de6699a6a1061c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:45 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '2118'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '10000'
+ x-ratelimit-limit-tokens:
+ - '30000000'
+ x-ratelimit-remaining-requests:
+ - '9999'
+ x-ratelimit-remaining-tokens:
+ - '29995813'
+ x-ratelimit-reset-requests:
+ - 6ms
+ x-ratelimit-reset-tokens:
+ - 8ms
+ x-request-id:
+ - req_7440f1b5c401485dfdb8b26a33b4ebda
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4-turbo", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevvSyqbJNtqV7QdzaEypSBQKhyLFfElPHz9gvqNtq/x05u92k
+ okhcfJh5M5oZ+TkDEEaLLQjVS1aDt/nHO13y7+HO95+fWteY97H5ai83v+4fPn17EqukoOYnKn5R
+ nSsavEU25A60CigZk+v6qiyu10VRbSZiII02yTrPeZXzGBrKL4qLKi+qvLg+qnsyCqPYwvcMAOB5
+ elNOp/FRbKFYvSADxig7FNvTEYAIZBMiZIwmsnQsVjOpyDG6KfoNWkvv4PZsgB4DAhP0aD3saDyH
+ L71kUNLBLWiClkKCgUnL3YelX8B2jDJ1cqO1R3x/Cmip84GaeORPeGuciX0dUEZyKUxk8mJi9xnA
+ j2mI8VU34QMNnmumB3TJcF0d7MQ8/4K8OpJMLO2Ml+vVG261RpbGxsWQQknVo56V8+py1IYWRLbo
+ /HeYt7wPvY3r/sd+JpRCz6hrH1Ab9brwfBYwfc5/nZ02ngKLuIuMQ90a12HwwRy+RuvrjW7Korws
+ 21Zk++wPAAAA//8DAKHNR1woAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669a9283461c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:46 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '603'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245994'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 961ms
+ x-request-id:
+ - req_8844622a173d336dbebcacad4215c00f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU227jRgx991cQgz7agR077tpvCXrJduPGu9vdAq0Lg56hJLajmelc7AhB/r0Y
+ yWvZ6RaoHoQRD3l4SA35PAAQrMQShKwwytrp0e17NU0Pu4f1p/f4U8N3u9X89ueHX9/ef7i/noth
+ jrC7P0nGL1FX0tZOU2RrOlh6wkiZdfLtdLyYjMezeQvUVpHOYaWLo9koJr+zo+vx9Ww0no3Gi2N0
+ ZVlSEEv4fQAA8Ny+s06j6EksYTz8YqkpBCxJLE9OAMJbnS0CQ+AQ0UQx7EFpTSSTpZuk9RkQrdVb
+ iVr3ibvn+ezcNwu13t4+Tr5v7t/Jm8nTbz9+/rj6WDze/GCn5/k66sa1gopk5KlJZ/jJvnyVDEAY
+ rNvYVbNqezd87YC+TDWZmGWL541wngrWmtRGLDdi7a1KMsIH2jMdlsDryhqCyQzW3m42ZrMxv1QE
+ hg6XEHhynkLmBYTApeGCJZoIyZUeFYHdkwfnac82BWh/bLiCTLZLrBX8nVBzbIAD0JMklwtEPYQD
+ xyrH1ZxqqDGSZ9QBUiAFsfI2lZVN8QreUQMFYUyeArCROiladopH8F1jsGYJb4NGo0BxcBobYBOp
+ 9JhTtW6zN6s11MgGJNbksTXeTuZwx9awBFmx6yjvMEbyDWguKEvmOpcfeE9D0BgimxIQiqQ1KGzA
+ FlAR7pssuyu6SwChCZFqcG3bKUCIyZgc7CobbS4EdjZWmURzWUXI8rU9jLovaY3iLD9cdboe9+RR
+ 57ZVrAnoyZHJqgAjfLNYLIYQKw6gaM+SQJHmPfmu41qTibBHnQgK68HZA/ks2Ic2a6uo9OiqBsjE
+ KgXGEMPVRryIi0v2Mvja+Y+z2fFUpID6OFRH+8tpSrUtnbe78GroRMGGQ7X1hKG9/CJE67rcOU+b
+ QaSLARfO29rFbbR/kcmE17NZxyf6JdSjk8n8iEYbUffAdH5cIpeEW0URuV0Bp60jUVak+tB++2BS
+ bM+AwVnZ/5bzNe6udDbl/6HvAZnnidTWeVIsL0vu3TzlJf1fbqc2t4JFd3G3BZuSvPPcrkhRuO2N
+ 2k3H0/m0KMTgZfAPAAAA//8DAPYr/74wBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669af285861c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:50 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '3939'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_0e1c5678ecb53bf1990aeaec39ad21d5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUW8iNxB+51eMrD5CAoGkgBDSpXetooorzV17D02FjD27O1ev7dpjyCbKf6+8
+ mwOSplJ5QLvzeb5vvvHOPPYABGkxB6Eqyar2ZvDuVz1uvtgP698ePk7ef5pdhw/x03DFPzyM+Vb0
+ c4bbfkXF37LOlKu9QSZnO1gFlIyZdfT9eDgbDYeXwxaonUaT00rPg8mAU9i6wcXwYjIYTgbD2XN2
+ 5UhhFHP4owcA8Nj+5zqtxnsxh5arjdQYoyxRzA+HAERwJkeEjJEiS8uifwSVs4w2l26TMScAO2c2
+ ShpzFO5+jyfPx2ZJYzaTy4uV+Wl0O/3xy+X9Q3Fz+3H29UZtfz/R66gb3xZUJKsOTTrBD/H5KzEA
+ YWXd5q6aVdu7/usDMpSpRsu5bPF4J3zAgoxBfSfmd2JRjZbr4HRSDLe4I9zPgdaVswijCayDW5xX
+ o+XCLz9XCBb3L0EI6APGzA4SIpWWClLSMiRfBqkR3A4D+IA7cilCe73xDDLZNpHR8HeShrgBioD3
+ Cn22KU0f9sRVzqsp1VBLxkDSREgRNXAVXCorl/gMfsYGCpScAkYgq0zSOF+c++UimeXC0PJ9Y2VN
+ Cm6ikVaDpuiNbIAsYxlkllucG2qPTqarNdSSLChZY5AH4N3oCq7JWVKgKvJd/DwL+OW1ZMbQgKEC
+ swuqc0ci7bAPRkYmW4KEIhkDWjbgCqhQ7prspOtDpwWxiYw1+PYuMELkZG1O9pVjl73B1nGVSQyV
+ FUN2Y9x+0L0pZzVlN/Gsde+Xv+wwSJNbWZFBwHuPNpcFkuG72WzWB64ogsYdKQSNhnYYulswBi3D
+ TpqEULgA3u0x5IpDbGXbksogfdUAWq5SJBm5U74TT+LFJ/jUe+v5z5PJClikKM3zyD3Hnw4zbFzp
+ g9vGVyMpCrIUq01AGdvREJGd77SzTqsg0ovxFz642vOG3V9oM+HFZNLxieOKOqKj8ewZZcfSHIHx
+ dNx/g3CjkSW1C+Kwk5RUFepj6nE3yaTJnQC9E9v/Luct7s462fL/0B8BlecM9cYH1KReWj4eC5hX
+ +H8dO7S5LVh0X++mIFti8IHaBSoKv9GXejq5ms6uUPSeev8AAAD//wMAej44EU4GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669c8a85261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:20:56 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5413'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245814'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_9b55f585000830b42a627a5f2b836382
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU72/bNhD97r/iQOyjnci1m9WGYaBdu7XYgiVD0HVbBuNMnqRrKZLlDztKkP99
+ oJRaTpYB8wdDusd7795Rd3cjAMFKLEHIGqNsnJ68vlTzOb379P7HVvMfofjw0+0Pi7df5Hb2vrgR
+ 45xht59Jxm9ZJ9I2TlNka3pYesJImXX6/axYTIvi5VkHNFaRzmmVi5P5JCa/tZMXxYv5pJhPisVD
+ dm1ZUhBL+GsEAHDX/ec6jaIbsYRi/C3SUAhYkVgeDgEIb3WOCAyBQ0QTxXgApTWRTC7dJK2PgGit
+ 3kjUehDuf3dHz0OzUOvN2cerePnp41f+/er2l1sq2z9p//mS3h3p9dSt6woqk5GHJh3hh/jyiRiA
+ MNh0ueftede78dMD6KvUkIm5bHF3LZynkrUmdS2W12JVT9cX3qokI/xGO6b9EviitoZgOocLb1en
+ 9XS9cuurmsDQ/jEInpynkNkBIXBluGSJJkJylUdFYHfkwXnasU0BuusNJ5DJtom1gq8JNccWOADd
+ SHLZJuox7DnWOa/h1ECDkTyjDpACKYi1t6mqbYon8DO1UBLG5CkAG6mTouXq1K1XSa9XmtdvW4MN
+ S/gQNBoFioPT2AKbSJXHLLc61dwdnb86v4AG2YDEhjwegNfTM3jD1rAEWbPr46dZwK3fYIzkW9Bc
+ UnbBTe5I4B2NQWOIbCpAKJPWoLAFW0JNuGuzk74PvRaENkRqwHV3QQFCTMbkZFfbaLM32NpYZxLN
+ VR0hu9F2P+nfpDWKs5tw0rl361935FHnVtasCejGkcllAUb4brFYjCHWHEDRjiWBIs078v0taE0m
+ wg51IiitB2f35HPFPnSyXUmVR1e3QCbWKTCG2Ctfi3vx6BO8Hz33/PfRZHkqU0D9MHIP8fvDDGtb
+ OW+34clIipINh3rjCUM3GiJE63rtrNMpiPRo/IXztnFxE+0XMpnwxXze84lhRQ3odLZ4QKONqAdg
+ 9mo2foZwoygidwvisJMkyprUkDrsJkyK7REwOrL973Ke4+6ts6n+D/0AyDxnpDbOk2L52PJwzFNe
+ 4f917NDmrmDRf72bkk1F3nnuFqgo3eal2s6K2dmsLMXofvQPAAAA//8DAOHXmkpOBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de669ec5d9261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:01 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '5232'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_21320d60d79dfed564bac2900889b694
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUUY/bNgx+z68ghD4mh+QuS5u89TYUKIZbr0PbdWuGgJFom50saRLlnHG4/z7I
+ via5WwfMD4bMj/z4kRZ5PwFQbNQGlG5QdBvs7PV7s1zb7lO9P3Qr9Mv+4+eOY8hh8bV6o6Ylwu+/
+ kpZvURfat8GSsHcjrCOhUGFdvLyarxfz+WoxAK03ZEtYHWS2nEmOez+7nF8uZ/PlbL5+jG48a0pq
+ A18mAAD3w7vodIbu1Abm02+WllLCmtTm6ASgorfFojAlToJO1PQEau+EXJHusrVngHhvdxqtPSUe
+ n/uz86lZaO3OyDt++9svr+YfX3af+8s/Pr15v/r9Ovx4lm+k7sMgqMpOH5t0hh/tm2fJAJTDdoi9
+ 6W+G3k2fO2Csc0tOimx1v1UhUsXWktmqzVbdRm+yFviVOqbDBvi28Y5gsYTb6Ldbt926Dw2Bo8NT
+ CCKFSKnwAkLi2nHFGp1ADnVEQ+A7ihAidexzguHHpgsoZPvM1sDfGS1LD5yA7jSFUiDaKRxYmhLX
+ cm6hRaHIaBPkRAakiT7Xjc9yAT9TDxWh5EgJ2GmbDW1GxTP4qXfYsoa3yaIzYDgFiz2wE6ojllSD
+ 2/LVzS20yA40thRxML5erOCavWMNuuEwUl6jCMUeLFdUJHNbyk/c0RQsJmFXA0KVrQWDPfgKGsKu
+ L7LHoscEkPok1EIY2k4JkmTnSnBovPhSCOy9NIXEct0IFPnWH2bjl/bOcJGfLkZd7zqKaEvbGrYE
+ dBfIFVWAAi/W6/UUpOEEhjrWBIYsdxTHjltLTqBDmwkqHyH4A8UiOKYh66CojhiaHshJkxNjknSx
+ VQ/qySV7mHzv/OfZ7ESqckL7OFSP9ofjlFpfh+j36dnQqYodp2YXCdNw+VUSH8bcJc+QQeUnA65C
+ 9G2Qnfi/yBXCy+Vy5FOnJXRCF4vVIype0J6Aq9XjEnlKuDMkyMMKOG4djbohcwo9bR/Mhv0ZMDkr
+ +99yvsc9ls6u/j/0J0CXeSKzC5EM66cln9wilSX9X27HNg+C1XhxdxW7mmKIPKxIVYXdD2Z/Nb9a
+ XVWVmjxM/gEAAP//AwDAKTh9MAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a0e4c4661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:06 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4257'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_41d5bfbd10cf1b6c88dff26869b1e523
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4-turbo", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUXW8jNwx8968ghD7aiR27ubNhGMgh1/RQBM2lRRFcUxi0xF2xp5VUfdjZBvnv
+ hXZztpOmQP1g7HLEGQ615OMAQLASCxBSY5KNN6OLz2r2sf108W7+pXGf4+xM3l41P1A+u/3lYiOG
+ JcNt/iSZvmWdSNd4Q4md7WEZCBMV1sm76Xg+GY/PzzugcYpMSat9Gs1GKYeNG52Nz2aj8Ww0nj9n
+ a8eSoljA7wMAgMfuv9RpFT2IBYyH3yINxYg1icX+EIAIzpSIwBg5JrRJDA+gdDaRLaXbbMwRkJwz
+ a4nGHIT73+PR86FZaMz6bjy50+d/313Wu4+XOLm6ktdffvu6+/FIr6dufVdQla3cN+kI38cXr8QA
+ hMWmy71ur7veDV8fwFDnhmwqZYvHe+EDVWwMqXuxuBdLPVndBKeyTHBLW6bdAvhGO0swmcFNcMtT
+ PVkt/epXTWBp9xKEQD5QLOyAELm2XLFEmyD7OqAicFsK4ANt2eUI3fXGEyhkm8xGwV8ZDacWOAI9
+ SPLFJpoh7DjpktdwbqDBRIHRRMiRFCQdXK61y+kEfqIWKsKUA0VgK01WtFie+tUym9XS8Oqytdiw
+ hE/RoFWgOHqDLbBNVAcscstTw93R2fvrG2iQLUhsKOAeuJicwwd2liVIzb6PnxYBv/qAKVFowXBF
+ xQU3pSORtzQEgzGxrQGhysaAwhZcBZpw2xYnfR96LYhtTNSA7+6CIsSUrS3JXrvkijfYuKQLieFa
+ JyhujNuN+jfprOLiJp507v3q5y0FNKWVmg0BPXiypSzABN/N5/MhJM0RFG1ZEigyvKXQ34IxZBNs
+ 0WSCygXwbkehVBxiJ9uVVAf0ugWySefIGFOvfC+exItP8Gnw1vMfR5MVqMoRzfPIPcef9jNsXO2D
+ 28RXIykqthz1OhDGbjRETM732kWnUxD5xfgLH1zj0zq5r2QL4dls1vOJw4o6oJPp/BlNLqE5ANP3
+ 0+EbhGtFCblbEPudJFFqUofUw27CrNgdAYMj2/8u5y3u3jrb+v/QHwBZ5ozU2gdSLF9aPhwLVFb4
+ fx3bt7krWPRf77piW1PwgbsFKiq//l5tpuPp+bSqxOBp8A8AAAD//wMAgIzawE4GAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a29d91c61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4888'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '3000'
+ x-ratelimit-limit-tokens:
+ - '250000'
+ x-ratelimit-remaining-requests:
+ - '2999'
+ x-ratelimit-remaining-tokens:
+ - '245813'
+ x-ratelimit-reset-requests:
+ - 20ms
+ x-ratelimit-reset-tokens:
+ - 1.004s
+ x-request-id:
+ - req_72785b0068c4e5240c0222248c546eed
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Hey, how''s it going?"}], "model":
+ "gpt-4o-mini", "max_tokens": 4000, "seed": 47, "temperature": 0.5}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '143'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xSwW7UMBS85ysevnBJUJJGLLsXVOBAi0CqKqQKhCKv/ZJ4Sfws+wVYVfvvlZPt
+ ZiuKxMWHmTfjmWffJwDCaLEBoTrJanB9dnmjq+tbtf6y3t3+uvvA4dPd18/v/OX7m+L6m0ijgrY7
+ VPyoeqVocD2yITvTyqNkjK7F6iJfF3m+KiZiII19lLWOs4qywViTlXlZZfkqK94c1R0ZhUFs4HsC
+ AHA/nTGn1fhHbCBPH5EBQ5Atis1pCEB46iMiZAgmsLQs0oVUZBntFP3q5QC7MTBIiAVGRg/OU+vl
+ kMJ2ZIgDHXoEaTV4lHoPTNBh72BP4wv4SL9BSQtXMF8VUWDScv/2/EqPzRhkrG3Hvj/ih1OHnlrn
+ aRuO/AlvjDWhqz3KQDbmDUxOTOwhAfgx7Wp8Ul84T4Pjmukn2mhYVLOdWF5oIcvySDKx7Bf84nX6
+ jFutkaXpw9muhZKqQ70ol4eRozZ0RiRnnf8O85z33NvY9n/sF0IpdIy6dh61UU8LL2Me4//919hp
+ x1NgEfaBcagbY1v0zpv59zSuzrcy10VZNYVIDskDAAAA//8DAEalef5LAwAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a49db1561c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:11 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '324'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995993'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_6ff1ce7955d0f2dd2d2371e6b7c8d9b2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMgjj1rk3e7rZuuw3FZd1w27oMASPRNu9kSdOPpEbR/32Q
+ 3YvTrgPmB0PmR378SIt8mAAIVmINQjYYZev07O3PqvyxXN6Z2+9XWHz85e5DXbV/XL6/LwPeiWmO
+ sPtPJOOXqLm0rdMU2ZoBlp4wUmYtLi8Wq2KxuCx6oLWKdA6rXZyVdtay4dlysSxni8tZcfUU3ViW
+ FMQa/pwAADz076zTKLoXa1hMv1haCgFrEuuTE4DwVmeLwBA4RDRRTEdQWhPJZOkmaX0GRGv1TqLW
+ Y+LheTg7j81CrXe/bW5/uL77rv16eX3Tflp9/kZ95OvS/n6Wb6DuXC+oSkaemnSGn+zrF8kAhMG2
+ j73pbvreTV86oK9TSyZm2eJhK5ynirUmtRXrrdh4q5KMcEsHpuMaeNNYQ1CUsPF2uzXbrfm1ITB0
+ fA6BJ+cpZF5ACFwbrliiiZBc7VER2AN5cJ4ObFOA/seGOWSyfWKt4O+EmmMHHIDuJblcIOopHDk2
+ Oa7l1EKLkTyjDpACKYiNt6lubIpz+Ik6qAhj8hSAjdRJ0XpQPINvO4MtS3gfNBoFioPT2AGbSLXH
+ nKp3K69uNtAiG5DYksfe+LZ4A+/YGpYgG3YD5TuMkXwHmivKkrnN5Qc+0BQ0hsimBoQqaQ0KO7AV
+ NISHLsseih4SQOhCpBZc33YKEGIyJge7xkabC4G9jU0m0Vw3EbJ8bY+z4UtaozjLD/NB14cDedS5
+ bQ1rArp3ZLIqwAhfrVarKcSGAyg6sCRQpPlAfui41mQiHFAngsp6cPZIPgv2oc/aK6o9uqYDMrFJ
+ gTHEMN+KR/Hskj1OXjv/dTY7nqoUUD8N1ZP98TSl2tbO2314MXSiYsOh2XnC0F9+EaJ1Q+6cp88g
+ 0rMBF87b1sVdtJ/JZMJleTHwiXEJjWhRXD2h0UbUI3Dxppi+QrhTFJH7FXDaOhJlQ2oMHbcPJsX2
+ DJiclf1vOa9xD6Wzqf8P/QjIPE+kds6TYvm85NHNU17S/+V2anMvWAwXd1exqck7z/2KFJXbLfa4
+ UMWyrAoxeZz8AwAA//8DAD6yOpkwBgAA
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a4cffd261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:16 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '4130'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_d89b640bd8422a394afa63998835da99
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/jNgx+z19BCHtMijgN0jZv7Q532Iai3XA7bLgcAkaiLe5kSdMPp76i//sg
+ u5ekXQfMD4bMj/z4kRb5OAEQrMQahNSYZOvN7PpXtbz7sbl/0D///ql6d/5Rrd4vtPrz8ubrh15M
+ S4Tb/UUyfY86k671hhI7O8IyECYqrNXF+fyqms8vVgPQOkWmhDU+zZZu1rLl2WK+WM7mF7Pq8jla
+ O5YUxRo+TwAAHod30WkVPYg1zKffLS3FiA2J9cEJQARnikVgjBwT2iSmR1A6m8gW6TYbcwIk58xW
+ ojHHxOPzeHI+NguN2S6v72qU37qbPyK+X33qP+h9921xcX2Sb6Tu/SCozlYemnSCH+zrV8kAhMV2
+ iL3tb4feTV87YGhySzYV2eJxI3ygmo0htRHrjbgPTmWZ4DfqmPZr4HvtLEG1hPvgNhu72diPmsDS
+ /iUEgXygWHgBIXJjuWaJNkH2TUBF4DoK4AN17HKE4cfGMyhku8xGwd8ZDaceOAI9SPKlQDRT2HPS
+ Ja7l3EKLiQKjiZAjKUg6uNxol9MZ/EI91IQpB4rAVpqsaD0qnsG73mLLEn6KBq0CxdEb7IFtoiZg
+ STW4LS9v76FFtiCxpYCD8bpawQ07yxKkZj9S3mBKFHowXFORzG0pP3JHUzAYE9sGEOpsDCjswdWg
+ Cbu+yB6LHhNA7GOiFvzQdooQU7a2BHvtkiuFwM4lXUgMNzpBkW/cfjZ+SWcVF/nxbNR111FAU9qm
+ 2RDQgydbVAEm+OHq6moKSXMERR1LAkWGOwpjx40hm6BDkwlqF8C7PYUiOMQh66CoCeh1D2STzpEx
+ pni2EU/ixSV7mrx1/nIyO4HqHNE8D9Wz/ekwpcY1PrhdfDV0ombLUW8DYRwuv4jJ+TF3yTNkEPnF
+ gAsfXOvTNrmvZAvhYnk+8onjEjqiVXX5jCaX0ByB81U1fYNwqyghDyvgsHUkSk3qGHrcPpgVuxNg
+ clL2v+W8xT2Wzrb5P/RHQJZ5IrX1gRTLlyUf3QKVJf1fboc2D4LFeHG3NduGgg88rEhR++18h3NV
+ LZZ1JSZPk38AAAD//wMAPfDJuzAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a688b9d61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:18 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1900'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_c5842603410f775eacc70e282c73f4ff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTW/jRgy9+1cQgx5tw7JdJ/ZtjfYQLII62QIFti4MeoaSuB3NzM6HHSHIfy9G
+ ylpOmgLVQRjxkY+P1JDPIwDBSmxAyBqjbJyefHpQywfc8We9uJlvF9tvDa6/bH9dVau1vBfjHGGP
+ 30jGH1FTaRunKbI1PSw9YaTMWtwsZutiNru57YDGKtI5rHJxsrSThg1P5rP5cjK7mRS3r9G1ZUlB
+ bODPEQDAc/fOOo2iJ7GB2fiHpaEQsCKxuTgBCG91tggMgUNEE8V4AKU1kUyWbpLWV0C0Vh8kaj0k
+ 7p/nq/PQLNT68PXx4evO3T087urvPz/qO/yCT+qPVXOVr6duXSeoTEZemnSFX+ybd8kAhMGmi71v
+ 77vejd87oK9SQyZm2eJ5L5ynkrUmtRebvdh5q5KM8EgnpvMGeFdbQ1AsYeftfm/2e/N7TWDo/BYC
+ T85TyLyAELgyXLJEEyG5yqMisCfy4Dyd2KYA3Y8NU8hkx8RawfeEmmMLHICeJLlcIOoxnDnWOa7h
+ 1ECDkTyjDpACKYi1t6mqbYpT+EwtlIQxeQrARuqkaNMrnsAvrcGGJdwFjUaB4uA0tsAmUuUxp+rc
+ lrf3O2iQDUhsyGNn/FSsYMvWsARZs+sptxgj+RY0l5Qlc5PLD3yiMWgMkU0FCGXSGhS2YEuoCU9t
+ lt0X3SeA0IZIDbiu7RQgxGRMDna1jTYXAkcb60yiuaojZPnanif9l7RGcZYfpr2u307kUee21awJ
+ 6MmRyaoAI/y0Xq/HEGsOoOjEkkCR5hP5vuNak4lwQp0ISuvB2TP5LNiHLmunqPLo6hbIxDoFxhDD
+ dC9exJtL9jL66PzX1ex4KlNA/TpUr/aXy5RqWzlvj+Hd0ImSDYf64AlDd/lFiNb1uXOeLoNIbwZc
+ OG8bFw/R/k0mE86Xi55PDEtoQIvi9hWNNqIegMWqGH9AeFAUkbsVcNk6EmVNaggdtg8mxfYKGF2V
+ /W85H3H3pbOp/g/9AMg8T6QOzpNi+bbkwc1TXtL/5XZpcydY9Bf3ULKpyDvP3YoUpTvMjjhTxXxZ
+ FmL0MvoHAAD//wMAuuNb5zAGAAA=
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a76995c61c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:20 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1705'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995813'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_4cf856cb481dbc5ec48b42dc88bcc0bd
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xU32/bRgx+919BHPZoG5bj1Y7fkgXZuiJt2jXo0Hkw6DtK4nq6u90PO0KQ/304
+ KbWcLAOmB+HEj/z4kTryYQQgWIk1CFljlI3Tk4uPavHb8mp5J+df7r69+33+Nbz1Sf78/k5fX4tx
+ jrC7v0jG71FTaRunKbI1PSw9YaTMWizPZufFbLaadUBjFekcVrk4WdhJw4Yn89l8MZktJ8XqKbq2
+ LCmINfwxAgB46N5Zp1F0L9bQcXWWhkLAisT66AQgvNXZIjAEDhFNFOMBlNZEMlm6SVqfANFavZWo
+ 9ZC4fx5OzkOzUOvt16Trq7Mfm8v5L8uLD9fvf6WPq/uf6s8n+Xrq1nWCymTksUkn+NG+fpEMQBhs
+ utib9qbr3filA/oqNWRili0eNsJ5KllrUhux3ohbb1WSET7RnumwBr6trSEoFnDr7WZjNhvzuSYw
+ dHgOgSfnKWReQAhcGS5ZoomQXOVREdg9eXCe9mxTgO7Hhilksl1ireDvhJpjCxyA7iW5XCDqMRw4
+ 1jmu4dRAg5E8ow6QAimItbepqm2KU3hHLZSEMXkKwEbqpGjdK57AVWuwYQlvg0ajQHFwGltgE6ny
+ mFN1bovVzS00yAYkNuSxM14Ub+CSrWEJsmbXU15ijORb0FxSlsxNLj/wnsagMUQ2FSCUSWtQ2IIt
+ oSbct1l2X3SfAEIbIjXgurZTgBCTMTnY1TbaXAjsbKwzieaqjpDla3uY9F/SGsVZfpj2uj7syaPO
+ batZE9C9I5NVAUb44fz8fAyx5gCK9iwJFGnek+87rjWZCHvUiaC0Hpw9kM+Cfeiydooqj65ugUys
+ U2AMMUw34lE8u2SPo9fOf57MjqcyBdRPQ/VkfzxOqbaV83YXXgydKNlwqLeeMHSXX4RoXZ875+ky
+ iPRswIXztnFxG+03Mplwvjjr+cSwhAa0KFZPaLQR9QCcvSnGrxBuFUXkbgUct45EWZMaQoftg0mx
+ PQFGJ2X/W85r3H3pbKr/Qz8AMs8Tqa3zpFg+L3lw85SX9H+5HdvcCRb9xd2WbCryznO3IkXptrMd
+ zlQxX5SFGD2O/gEAAP//AwABibM3MAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a823a5661c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:22 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1709'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_5efba6d5999994be9eb9cb4d81d96cef
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"messages": [{"role": "user", "content": "Do the task described in the
+ label config for the input text:\n\n Product Review: iPhone 14 Pro \n \n The
+ new iPhone 14 Pro represents a significant upgrade over previous models. The
+ build quality is exceptional, with premium materials used throughout. Key features
+ include:
\n \n \n Dynamic Island display integration \n 48MP
+ main camera \n A16 Bionic chip \n \n \n Battery
+ life is impressive, lasting a full day of heavy use. The camera system produces
+ stunning photos in both daylight and low-light conditions.
\n \n Overall,
+ while expensive at $999, this device delivers excellent value for power users
+ and photography enthusiasts.
\n "}], "model": "gpt-4o-mini", "max_tokens":
+ 4000, "seed": 47, "temperature": 0.5, "tool_choice": {"type": "function", "function":
+ {"name": "MyModel"}}, "tools": [{"type": "function", "function": {"name": "MyModel",
+ "description": "Correctly extracted `MyModel` with all the required parameters
+ with correct types", "parameters": {"properties": {"prefilled": {"description":
+ "Text for text", "title": "Prefilled", "type": "string"}}, "required": ["prefilled"],
+ "type": "object"}}}]}'
+ headers:
+ accept:
+ - application/json
+ accept-encoding:
+ - gzip, deflate
+ connection:
+ - keep-alive
+ content-length:
+ - '1275'
+ content-type:
+ - application/json
+ cookie:
+ - __cf_bm=Pqj5Q11eJiCH4RzQiuMRPWeolaF0IziDfU4h7C7hFj8-1730909784-1.0.1.1-TV2O.xie4ap7bfflBreKHw1Za0iw9iUwfpAHKGUPmVqyiLnqVCInpEr9pRzoXjDiIoFw2bfde8d5G_y8nr9HUw;
+ _cfuvid=..sAfmFMmJcpwclT6seyVH5mTZ.W3_Cgey.0djowjIU-1730907983905-0.0.1.1-604800000
+ host:
+ - api.openai.com
+ user-agent:
+ - OpenAI/Python 1.47.1
+ x-stainless-arch:
+ - x64
+ x-stainless-async:
+ - 'false'
+ x-stainless-lang:
+ - python
+ x-stainless-os:
+ - Linux
+ x-stainless-package-version:
+ - 1.47.1
+ x-stainless-raw-response:
+ - 'true'
+ x-stainless-runtime:
+ - CPython
+ x-stainless-runtime-version:
+ - 3.11.5
+ method: POST
+ uri: https://api.openai.com/v1/chat/completions
+ response:
+ body:
+ string: !!binary |
+ H4sIAAAAAAAAA4xUTXPbRgy961dgdnqUPKIsJ5JucXqoJ1UjN22StupooF2QRLrc3e6HZNbj/55Z
+ 0hFl150pD5wlHvDwAC5wPwIQrMQKhKwxysbpyZtbNf/1JmwWn/n3W4c//nBF65+Wv93efPx87cQ4
+ R9j9F5LxW9SFtI3TFNmaHpaeMFJmLV5fTpfFdLqYdUBjFekcVrk4mdtJw4Yns+lsPpm+nhSLx+ja
+ sqQgVvDHCADgvntnnUbRnVjBdPzN0lAIWJFYnZwAhLc6WwSGwCGiiWI8gNKaSCZLN0nrMyBaq3cS
+ tR4S98/92XloFmq9+4TN+7dXVx/ebdZvp7d3Hzb+ny+Xlfx4lq+nbl0nqExGnpp0hp/sq2fJAITB
+ potdt+uud+PnDuir1JCJWba43wrnqWStSW3Fais23qokI/xMB6bjCnhTW0NQzGHj7XZrtlvzS01g
+ 6PgUAk/OU8i8gBC4MlyyRBMhucqjIrAH8uA8HdimAN2PDReQyfaJtYK/E2qOLXAAupPkcoGox3Dk
+ WOe4hlMDDUbyjDpACqQg1t6mqrYpXsA7aqEkjMlTADZSJ0WrXvEEvm8NNizhJmg0ChQHp7EFNpEq
+ jzlV5zZfrDfQIBuQ2JDHzvimeAXXbA1LkDW7nvIaYyTfguaSsmRucvmBDzQGjSGyqQChTFqDwhZs
+ CTXhoc2y+6L7BBDaEKkB17WdAoSYjMnBrrbR5kJgb2OdSTRXdYQsX9vjpP+S1ijO8sNFr+v9gTzq
+ 3LaaNQHdOTJZFWCE75bL5RhizQEUHVgSKNJ8IN93XGsyEQ6oE0FpPTh7JJ8F+9Bl7RRVHl3dAplY
+ p8AYYrjYigfx5JI9jF46/3k2O57KFFA/DtWj/eE0pdpWztt9eDZ0omTDod55wtBdfhGidX3unKfL
+ INKTARfO28bFXbR/kcmEs/llzyeGJTSgRbF4RKONqAfg8lUxfoFwpygidyvgtHUkyprUEDpsH0yK
+ 7RkwOiv733Je4u5LZ1P9H/oBkHmeSO2cJ8XyacmDm6e8pP/L7dTmTrDoL+6uZFORd567FSlKt5vu
+ caqK2bwsxOhh9BUAAP//AwCLB5zWMAYAAA==
+ headers:
+ CF-Cache-Status:
+ - DYNAMIC
+ CF-RAY:
+ - 8de66a8e5ca261c0-ORD
+ Connection:
+ - keep-alive
+ Content-Encoding:
+ - gzip
+ Content-Type:
+ - application/json
+ Date:
+ - Wed, 06 Nov 2024 16:21:24 GMT
+ Server:
+ - cloudflare
+ Transfer-Encoding:
+ - chunked
+ X-Content-Type-Options:
+ - nosniff
+ access-control-expose-headers:
+ - X-Request-ID
+ alt-svc:
+ - h3=":443"; ma=86400
+ openai-organization:
+ - heartex
+ openai-processing-ms:
+ - '1834'
+ openai-version:
+ - '2020-10-01'
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains; preload
+ x-ratelimit-limit-requests:
+ - '30000'
+ x-ratelimit-limit-tokens:
+ - '150000000'
+ x-ratelimit-remaining-requests:
+ - '29999'
+ x-ratelimit-remaining-tokens:
+ - '149995814'
+ x-ratelimit-reset-requests:
+ - 2ms
+ x-ratelimit-reset-tokens:
+ - 1ms
+ x-request-id:
+ - req_e83c9bff1f4084742a5bc4921eadb9ba
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/tests/test_label_studio_skill.py b/tests/test_label_studio_skill.py
index b608b45a..72a5ae15 100644
--- a/tests/test_label_studio_skill.py
+++ b/tests/test_label_studio_skill.py
@@ -2,17 +2,23 @@
import os
import pandas as pd
from adala.agents import Agent
-
+from label_studio_sdk.label_interface import LabelInterface
+from label_studio_sdk.label_interface.objects import PredictionValue
@pytest.mark.asyncio
@pytest.mark.vcr
async def test_label_studio_skill():
- df = pd.DataFrame([
- {"title": "I can't login", "description": "I can't login to the platform"},
- {"title": "Support new file types", "description": "It would be great if we could upload files of type .docx"},
- ])
+ df = pd.DataFrame(
+ [
+ {"title": "I can't login", "description": "I can't login to the platform"},
+ {
+ "title": "Support new file types",
+ "description": "It would be great if we could upload files of type .docx",
+ },
+ ]
+ )
agent_payload = {
"runtimes": {
@@ -31,11 +37,11 @@ async def test_label_studio_skill():
{
"type": "LabelStudioSkill",
"name": "AnnotationResult",
- "input_template": '''
+ "input_template": """
Given the github issue title:\n{title}\n and the description:\n{description}\n,
classify the issue. Provide a rationale for your classification.
Evaluate the final classification on a Likert scale from 1 to 5,
- where 1 is "Completely irrelevant" and 5 is "Completely relevant".''',
+ where 1 is "Completely irrelevant" and 5 is "Completely relevant".""",
"label_config": """
@@ -52,7 +58,7 @@ async def test_label_studio_skill():
- """
+ """,
}
],
}
@@ -64,7 +70,7 @@ async def test_label_studio_skill():
assert predictions.evaluation.tolist() == [5, 5]
assert predictions.rationale.tolist() == [
"The issue clearly indicates a problem with the login functionality of the platform, which is a critical feature. Users are unable to access their accounts, suggesting a potential bug that needs to be addressed.",
- "The issue is requesting the addition of support for a new file type (.docx), which indicates a desire for new functionality in the system. This aligns with the definition of a feature request, as it seeks to enhance the capabilities of the application."
+ "The issue is requesting the addition of support for a new file type (.docx), which indicates a desire for new functionality in the system. This aligns with the definition of a feature request, as it seeks to enhance the capabilities of the application.",
]
@@ -107,7 +113,7 @@ async def test_label_studio_skill_with_ner():
{
"type": "LabelStudioSkill",
"name": "AnnotationResult",
- "input_template": 'Extract entities from the input text:\n{text}',
+ "input_template": "Extract entities from the input text:\n{text}",
"label_config": """
@@ -117,7 +123,7 @@ async def test_label_studio_skill_with_ner():
- """
+ """,
}
],
}
@@ -127,27 +133,288 @@ async def test_label_studio_skill_with_ner():
expected_predictions = [
[
- {'start': 0, 'end': 10, 'labels': ['Organization'], 'text': 'Apple Inc.'},
- {'start': 17, 'end': 58, 'labels': ['Organization'], 'text': 'American multinational technology company'}
+ {"start": 0, "end": 10, "labels": ["Organization"], "text": "Apple Inc."},
+ {
+ "start": 17,
+ "end": 58,
+ "labels": ["Organization"],
+ "text": "American multinational technology company",
+ },
],
[
- {'start': 4, 'end': 13, 'labels': ['Product'], 'text': 'iPhone 14'},
- {'start': 44, 'end': 53, 'labels': ['Organization'], 'text': 'Apple Inc'}
+ {"start": 4, "end": 13, "labels": ["Product"], "text": "iPhone 14"},
+ {"start": 44, "end": 53, "labels": ["Organization"], "text": "Apple Inc"},
],
[
- {'start': 4, 'end': 15, 'labels': ['Product'], 'text': 'MacBook Pro'},
- {'start': 88, 'end': 98, 'labels': ['Organization'], 'text': 'Apple Inc.'},
- {'start': 29, 'end': 38, 'labels': ['Product'], 'text': 'Macintosh'}
+ {"start": 4, "end": 15, "labels": ["Product"], "text": "MacBook Pro"},
+ {"start": 88, "end": 98, "labels": ["Organization"], "text": "Apple Inc."},
+ {"start": 29, "end": 38, "labels": ["Product"], "text": "Macintosh"},
],
[
- {'start': 4, 'end': 15, 'labels': ['Product'], 'text': 'Apple Watch'},
- {'start': 54, 'end': 63, 'labels': ['Organization'], 'text': 'Apple Inc'}
+ {"start": 4, "end": 15, "labels": ["Product"], "text": "Apple Watch"},
+ {"start": 54, "end": 63, "labels": ["Organization"], "text": "Apple Inc"},
],
[
- {'start': 4, 'end': 8, 'labels': ['Product'], 'text': 'iPad'},
- {'start': 76, 'end': 85, 'labels': ['Organization'], 'text': 'Apple Inc'}
- ]
+ {"start": 4, "end": 8, "labels": ["Product"], "text": "iPad"},
+ {"start": 76, "end": 85, "labels": ["Organization"], "text": "Apple Inc"},
+ ],
]
assert predictions.entities.tolist() == expected_predictions
-
\ No newline at end of file
+
+
+@pytest.mark.vcr
+@pytest.mark.asyncio
+async def test_label_studio_skill_valid_predictions():
+ """
+ Fuzz test matrix of text input tags x control tags x models
+ """
+
+ ALLOWED_OBJECT_TAGS = {"Text", "HyperText"}
+ # ALLOWED_CONTROL_TAGS = {'Choices', 'Labels', 'TextArea', 'Rating', 'Number', 'Pairwise'}
+ MODELS = {"gpt-4o-mini", "gpt-4o", "gpt-4-turbo", "gpt-3.5-turbo"}
+ RUNS_PER_MODEL = 5
+
+ sample_text = """
+
Product Review: iPhone 14 Pro
+
+ The new iPhone 14 Pro represents a significant upgrade over previous models. The build quality is exceptional, with premium materials used throughout. Key features include:
+
+
+ Dynamic Island display integration
+ 48MP main camera
+ A16 Bionic chip
+
+
+ Battery life is impressive, lasting a full day of heavy use. The camera system produces stunning photos in both daylight and low-light conditions.
+
+ Overall, while expensive at $999, this device delivers excellent value for power users and photography enthusiasts.
+ """
+
+ choices_label_configs = [
+ # test defaults
+ """
+
+
+
+
+
+
+
+
+ """,
+ # test required=false and choices=multiple
+ """
+
+
+
+
+
+
+
+
+ """,
+ # test nested choices
+ """
+
+
+
+
+
+
+
+
+
+
+
+
+ """,
+ # TODO: test value=$task_column
+ # TODO: perRegion is not supported
+ # TODO: perItem is not supported?
+ ]
+
+ labels_label_configs = [
+ # test basic NER
+ """
+
+
+
+
+
+
+
+
+ """,
+ # test alias and preselection
+ """
+
+
+
+
+
+
+
+
+ """,
+ # test multiple selection
+ """
+
+
+
+
+
+
+
+
+ """,
+ # test max usages
+ """
+
+
+
+
+
+
+
+
+ """,
+ # test granularity
+ """
+
+
+
+
+
+
+
+
+ """,
+ # TODO: test value=$task_column
+ ]
+
+ textarea_label_configs = [
+ # test basic textarea
+ """
+
+
+
+
+ """,
+ # test required
+ """
+
+
+
+
+ """,
+ # test max submissions and duplicates
+ # TODO are these meaningful without perRegion?
+ """
+
+
+
+
+ """,
+ # test default value
+ """
+
+
+
+
+ """,
+ # TODO text perRegion
+ ]
+
+ all_label_configs = (
+ choices_label_configs + labels_label_configs + textarea_label_configs
+ )
+
+ # add configs for object tags besides Text
+ for label_config in all_label_configs.copy():
+ for tag in ALLOWED_OBJECT_TAGS - {"Text"}:
+ new_config = label_config.replace("